resources.js 623 B

1234567891011121314151617181920212223242526272829
  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. title: "title",
  8. header: "header",
  9. footer: "footer",
  10. scrim: "scrim",
  11. back: "back",
  12. close: "close",
  13. secondary: "secondary",
  14. primary: "primary",
  15. overflowHidden: "overflow-hidden"
  16. };
  17. export const ICONS = {
  18. close: "x"
  19. };
  20. export const SLOTS = {
  21. content: "content",
  22. header: "header",
  23. back: "back",
  24. secondary: "secondary",
  25. primary: "primary"
  26. };
  27. export const TEXT = {
  28. close: "Close"
  29. };