@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
47 lines (46 loc) • 1.25 kB
JavaScript
/*!
* All material copyright ESRI, All Rights Reserved, unless otherwise specified.
* See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
*/
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;