@smart-react-components/ui
Version:
SRC UI includes React and Styled components.
27 lines (26 loc) • 529 B
TypeScript
import { Value } from '@smart-react-components/core/types';
export declare type FormValue = Value | boolean;
export declare enum InputType {
EMAIL = "email",
PASSWORD = "password",
SEARCH = "search",
TEL = "tel",
TEXT = "text",
URL = "url"
}
export declare enum OrderPosition {
LEFT = 1,
RIGHT = 2
}
export declare enum Position {
LEFT = 1,
RIGHT = 2,
TOP = 4,
BOTTOM = 8
}
export declare enum TriggerInteraction {
NONE = 0,
CLICK = 1,
HOVER = 2,
RIGHT_CLICK = 4
}