123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*!
- * 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 = {
- article: "article",
- content: "content",
- headerContainer: "header-container",
- icon: "icon",
- statusIcon: "status-icon",
- toggle: "toggle",
- toggleIcon: "toggle-icon",
- title: "title",
- heading: "heading",
- header: "header",
- button: "button",
- summary: "summary",
- controlContainer: "control-container",
- valid: "valid",
- invalid: "invalid",
- loading: "loading"
- };
- export const TEXT = {
- collapse: "Collapse",
- expand: "Expand",
- loading: "Loading",
- options: "Options"
- };
- export const SLOTS = {
- icon: "icon",
- control: "control",
- headerMenuActions: "header-menu-actions"
- };
- export const ICONS = {
- opened: "chevron-up",
- closed: "chevron-down",
- valid: "check-circle",
- invalid: "exclamation-mark-triangle",
- refresh: "refresh"
- };
- export const HEADING_LEVEL = 4;
|