resources.js 841 B

12345678910111213141516171819202122232425262728293031
  1. /*!
  2. * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
  3. * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
  4. * v1.0.0-beta.97
  5. */
  6. export const CSS = {
  7. header: "header",
  8. heading: "heading",
  9. close: "close",
  10. container: "container",
  11. tipContainer: "tip-container",
  12. tipContainerAdvancing: "tip-container--advancing",
  13. tipContainerRetreating: "tip-container--retreating",
  14. pagination: "pagination",
  15. pagePosition: "page-position",
  16. pageNext: "page-next",
  17. pagePrevious: "page-previous"
  18. };
  19. export const ICONS = {
  20. chevronLeft: "chevron-left",
  21. chevronRight: "chevron-right",
  22. close: "x"
  23. };
  24. export const TEXT = {
  25. defaultGroupTitle: "Tips",
  26. defaultPaginationLabel: "Tip",
  27. close: "Close",
  28. previous: "Previous",
  29. next: "Next"
  30. };
  31. export const HEADING_LEVEL = 2;