12345678910111213141516171819202122232425 |
- /*!
- * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
- * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
- * v1.0.0-beta.97
- */
- import { HEADING_LEVEL as PARENT_HEADING_LEVEL } from "../tip-manager/resources";
- export const CSS = {
- container: "container",
- header: "header",
- heading: "heading",
- close: "close",
- imageFrame: "image-frame",
- content: "content",
- info: "info"
- };
- export const ICONS = {
- close: "x"
- };
- export const SLOTS = {
- thumbnail: "thumbnail"
- };
- export const TEXT = {
- close: "Close"
- };
- export const HEADING_LEVEL = (PARENT_HEADING_LEVEL + 1);
|