12345678910111213141516171819202122232425262728293031 |
- /*!
- * 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
- */
- export 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"
- };
- export const ICONS = {
- chevronLeft: "chevron-left",
- chevronRight: "chevron-right",
- close: "x"
- };
- export const TEXT = {
- defaultGroupTitle: "Tips",
- defaultPaginationLabel: "Tip",
- close: "Close",
- previous: "Previous",
- next: "Next"
- };
- export const HEADING_LEVEL = 2;
|