resources3.js 878 B

123456789101112131415161718192021222324252627282930313233
  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. 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. const ICONS = {
  20. chevronLeft: "chevron-left",
  21. chevronRight: "chevron-right",
  22. close: "x"
  23. };
  24. const TEXT = {
  25. defaultGroupTitle: "Tips",
  26. defaultPaginationLabel: "Tip",
  27. close: "Close",
  28. previous: "Previous",
  29. next: "Next"
  30. };
  31. const HEADING_LEVEL = 2;
  32. export { CSS as C, HEADING_LEVEL as H, ICONS as I, TEXT as T };