| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | 
							- /*!
 
-  * 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
 
-  */
 
- 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;
 
- export { CSS as C, HEADING_LEVEL as H, ICONS as I, SLOTS as S, TEXT as T };
 
 
  |