resources.js 1011 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.82
  5. */
  6. export const CSS = {
  7. article: "article",
  8. content: "content",
  9. headerContainer: "header-container",
  10. icon: "icon",
  11. statusIcon: "status-icon",
  12. toggle: "toggle",
  13. toggleIcon: "toggle-icon",
  14. title: "title",
  15. heading: "heading",
  16. header: "header",
  17. button: "button",
  18. summary: "summary",
  19. controlContainer: "control-container",
  20. valid: "valid",
  21. invalid: "invalid",
  22. loading: "loading"
  23. };
  24. export const TEXT = {
  25. collapse: "Collapse",
  26. expand: "Expand",
  27. loading: "Loading",
  28. options: "Options"
  29. };
  30. export const SLOTS = {
  31. icon: "icon",
  32. control: "control",
  33. headerMenuActions: "header-menu-actions"
  34. };
  35. export const ICONS = {
  36. opened: "chevron-up",
  37. closed: "chevron-down",
  38. valid: "check-circle",
  39. invalid: "exclamation-mark-triangle",
  40. refresh: "refresh"
  41. };
  42. export const HEADING_LEVEL = 4;