resources-abee76d7.js 1.3 KB

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