resources.js 928 B

1234567891011121314151617181920212223242526272829303132333435
  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. loader: "loader",
  8. clearButton: "clear-button",
  9. editingEnabled: "editing-enabled",
  10. inlineChild: "inline-child",
  11. inputIcon: "icon",
  12. prefix: "prefix",
  13. suffix: "suffix",
  14. numberButtonWrapper: "number-button-wrapper",
  15. buttonItemHorizontal: "number-button-item--horizontal",
  16. wrapper: "element-wrapper",
  17. inputWrapper: "wrapper",
  18. actionWrapper: "action-wrapper",
  19. resizeIconWrapper: "resize-icon-wrapper",
  20. numberButtonItem: "number-button-item"
  21. };
  22. export const INPUT_TYPE_ICONS = {
  23. tel: "phone",
  24. password: "lock",
  25. email: "email-address",
  26. date: "calendar",
  27. time: "clock",
  28. search: "search"
  29. };
  30. export const SLOTS = {
  31. action: "action"
  32. };
  33. export const TEXT = {
  34. clear: "Clear value"
  35. };