1234567891011121314151617181920212223242526272829303132333435 |
- /*!
- * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
- * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
- * v1.0.0-beta.82
- */
- export const CSS = {
- loader: "loader",
- clearButton: "clear-button",
- editingEnabled: "editing-enabled",
- inlineChild: "inline-child",
- inputIcon: "icon",
- prefix: "prefix",
- suffix: "suffix",
- numberButtonWrapper: "number-button-wrapper",
- buttonItemHorizontal: "number-button-item--horizontal",
- wrapper: "element-wrapper",
- inputWrapper: "wrapper",
- actionWrapper: "action-wrapper",
- resizeIconWrapper: "resize-icon-wrapper",
- numberButtonItem: "number-button-item"
- };
- export const INPUT_TYPE_ICONS = {
- tel: "phone",
- password: "lock",
- email: "email-address",
- date: "calendar",
- time: "clock",
- search: "search"
- };
- export const SLOTS = {
- action: "action"
- };
- export const TEXT = {
- clear: "Clear value"
- };
|