resources.js 1.2 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. backButton: "back-button",
  8. container: "container",
  9. header: "header",
  10. heading: "heading",
  11. summary: "summary",
  12. description: "description",
  13. headerContent: "header-content",
  14. headerActions: "header-actions",
  15. headerActionsEnd: "header-actions--end",
  16. headerActionsStart: "header-actions--start",
  17. contentWrapper: "content-wrapper",
  18. contentContainer: "content-container",
  19. contentHeight: "content-height",
  20. fabContainer: "fab-container",
  21. footer: "footer"
  22. };
  23. export const ICONS = {
  24. close: "x",
  25. menu: "ellipsis",
  26. backLeft: "chevron-left",
  27. backRight: "chevron-right"
  28. };
  29. export const SLOTS = {
  30. headerActionsStart: "header-actions-start",
  31. headerActionsEnd: "header-actions-end",
  32. headerMenuActions: "header-menu-actions",
  33. headerContent: "header-content",
  34. fab: "fab",
  35. footer: "footer",
  36. footerActions: "footer-actions"
  37. };
  38. export const TEXT = {
  39. back: "Back",
  40. close: "Close",
  41. open: "Open",
  42. options: "Options"
  43. };
  44. export const HEADING_LEVEL = 3;