/*! * 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 */ 'use strict'; const CSS = { backButton: "back-button", container: "container", header: "header", heading: "heading", summary: "summary", description: "description", 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" }; const ICONS = { close: "x", menu: "ellipsis", backLeft: "chevron-left", backRight: "chevron-right" }; const SLOTS = { headerActionsStart: "header-actions-start", headerActionsEnd: "header-actions-end", headerMenuActions: "header-menu-actions", headerContent: "header-content", fab: "fab", footer: "footer", footerActions: "footer-actions" }; const TEXT = { back: "Back", close: "Close", open: "Open", options: "Options" }; const HEADING_LEVEL = 3; exports.CSS = CSS; exports.HEADING_LEVEL = HEADING_LEVEL; exports.ICONS = ICONS; exports.SLOTS = SLOTS; exports.TEXT = TEXT;