resources.js 791 B

12345678910111213141516171819202122232425262728
  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. export const CSS = {
  7. content: "content",
  8. invalid: "invalid",
  9. toggle: "toggle",
  10. toggleSwitch: "toggle--switch",
  11. toggleSwitchContent: "toggle--switch__content",
  12. toggleSwitchText: "toggle--switch__text",
  13. sectionHeader: "section-header",
  14. sectionHeaderText: "section-header__text",
  15. statusIcon: "status-icon",
  16. valid: "valid"
  17. };
  18. export const TEXT = {
  19. collapse: "Collapse",
  20. expand: "Expand"
  21. };
  22. export const ICONS = {
  23. menuOpen: "chevron-down",
  24. menuClosedLeft: "chevron-left",
  25. menuClosedRight: "chevron-right",
  26. valid: "check-circle",
  27. invalid: "exclamation-mark-triangle"
  28. };