resources.js 1.2 KB

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