@siberiaweb/components
Version:
56 lines (45 loc) • 1.74 kB
text/typescript
/**
* Классы CSS.
*/
export default class CSS {
/**
* Хост.
*/
public static readonly INPUT: string = "sw-input";
/**
* Встроенный ввод.
*/
public static readonly INLINE_INPUT: string = "sw-input_inline-input";
/**
* Контейнер поля ввода.
*/
public static readonly CONTROL_CONTAINER: string = "sw-input_control-container";
/**
* Контейнер значков.
*/
public static readonly ICONS_CONTAINER: string = "sw-input_icons-container";
/**
* Контейнер значков, располагающихся слева от поля ввода.
*/
public static readonly LEADING_ICONS_CONTAINER: string = "sw-input_leading-icons-container";
/**
* Контейнер значков, располагающихся справа от поля ввода.
*/
public static readonly TRAILING_ICONS_CONTAINER: string = "sw-input_trailing-icons-container";
/**
* Вспомогательный контейнер.
*/
public static readonly HELPER_CONTAINER: string = "sw-input_helper-container";
/**
* Сообщение об ошибке. Применяется к вспомогательному контейнеру.
*/
public static readonly ERROR_MESSAGE: string = "sw-input_error-message";
/**
* Наименование анимации для :-webkit-autofill.
*/
public static readonly AUTOFILL_START: string = "sw-input_autofill-start";
/**
* Наименование анимации для :not( :-webkit-autofill ).
*/
public static readonly AUTOFILL_END: string = "sw-input_autofill-end";
}