1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*!
- * 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 = {
- backButton: "back-button",
- container: "container",
- header: "header",
- heading: "heading",
- summary: "summary",
- headerContent: "header-content",
- headerActions: "header-actions",
- headerActionsEnd: "header-actions--end",
- headerActionsStart: "header-actions--start",
- contentWrapper: "content-wrapper",
- contentContainer: "content-container",
- contentHeight: "content-height",
- fabContainer: "fab-container",
- footer: "footer",
- menuContainer: "menu-container",
- menuButton: "menu-button",
- menu: "menu",
- menuOpen: "menu--open"
- };
- export const ICONS = {
- close: "x",
- menu: "ellipsis",
- backLeft: "chevron-left",
- backRight: "chevron-right"
- };
- export const SLOTS = {
- headerActionsStart: "header-actions-start",
- headerActionsEnd: "header-actions-end",
- headerMenuActions: "header-menu-actions",
- headerContent: "header-content",
- fab: "fab",
- footer: "footer",
- footerActions: "footer-actions"
- };
- export const TEXT = {
- back: "Back",
- close: "Close",
- open: "Open",
- options: "Options"
- };
- export const HEADING_LEVEL = 3;
|