123456789101112131415161718192021222324252627282930313233 |
- /*!
- * 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 = {
- header: "header",
- heading: "heading",
- close: "close",
- container: "container",
- tipContainer: "tip-container",
- tipContainerAdvancing: "tip-container--advancing",
- tipContainerRetreating: "tip-container--retreating",
- pagination: "pagination",
- pagePosition: "page-position",
- pageNext: "page-next",
- pagePrevious: "page-previous"
- };
- const ICONS = {
- chevronLeft: "chevron-left",
- chevronRight: "chevron-right",
- close: "x"
- };
- const TEXT = {
- defaultGroupTitle: "Tips",
- defaultPaginationLabel: "Tip",
- close: "Close",
- previous: "Previous",
- next: "Next"
- };
- const HEADING_LEVEL = 2;
- export { CSS as C, HEADING_LEVEL as H, ICONS as I, TEXT as T };
|