1234567891011121314151617181920212223242526272829 |
- /*!
- * 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.82
- */
- export const CSS = {
- title: "title",
- header: "header",
- footer: "footer",
- scrim: "scrim",
- back: "back",
- close: "close",
- secondary: "secondary",
- primary: "primary",
- overflowHidden: "overflow-hidden"
- };
- export const ICONS = {
- close: "x"
- };
- export const SLOTS = {
- content: "content",
- header: "header",
- back: "back",
- secondary: "secondary",
- primary: "primary"
- };
- export const TEXT = {
- close: "Close"
- };
|