12345678910111213141516171819202122232425262728 |
- /*!
- * 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 = {
- content: "content",
- invalid: "invalid",
- toggle: "toggle",
- toggleSwitch: "toggle--switch",
- toggleSwitchContent: "toggle--switch__content",
- toggleSwitchText: "toggle--switch__text",
- sectionHeader: "section-header",
- sectionHeaderText: "section-header__text",
- statusIcon: "status-icon",
- valid: "valid"
- };
- export const TEXT = {
- collapse: "Collapse",
- expand: "Expand"
- };
- export const ICONS = {
- menuOpen: "chevron-down",
- menuClosedLeft: "chevron-left",
- menuClosedRight: "chevron-right",
- valid: "check-circle",
- invalid: "exclamation-mark-triangle"
- };
|