resources.js 640 B

12345678910111213141516171819202122232425
  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. import { HEADING_LEVEL as PARENT_HEADING_LEVEL } from "../tip-manager/resources";
  7. export const CSS = {
  8. container: "container",
  9. header: "header",
  10. heading: "heading",
  11. close: "close",
  12. imageFrame: "image-frame",
  13. content: "content",
  14. info: "info"
  15. };
  16. export const ICONS = {
  17. close: "x"
  18. };
  19. export const SLOTS = {
  20. thumbnail: "thumbnail"
  21. };
  22. export const TEXT = {
  23. close: "Close"
  24. };
  25. export const HEADING_LEVEL = (PARENT_HEADING_LEVEL + 1);