1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*!
- * 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
- */
- export const CSS = {
- container: "container",
- content: "content",
- contentSpaced: "content--spaced",
- headerContainer: "header-container",
- icon: "icon",
- statusIcon: "status-icon",
- toggle: "toggle",
- toggleIcon: "toggle-icon",
- title: "title",
- heading: "heading",
- header: "header",
- button: "button",
- summary: "summary",
- description: "description",
- 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;
|