resources-ca31b4fd.js 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. 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. const ICONS = {
  24. close: "x",
  25. menu: "ellipsis",
  26. backLeft: "chevron-left",
  27. backRight: "chevron-right"
  28. };
  29. 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. const TEXT = {
  39. back: "Back",
  40. close: "Close",
  41. open: "Open",
  42. options: "Options"
  43. };
  44. const HEADING_LEVEL = 3;
  45. export { CSS as C, HEADING_LEVEL as H, ICONS as I, SLOTS as S, TEXT as T };