resources.js 1.1 KB

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