PromucFlow_constructor/app/client/src/constants/PropertyControlConstants.tsx
Nikhil Nandagopal 5f6aeb55f8 added new control types
removed alert from widget list
added property config values
added input validator
2019-09-19 16:59:24 +05:30

18 lines
329 B
TypeScript

export type ControlType =
| "INPUT_TEXT"
| "ICON_PICKER"
| "SEGMENT_CONTROL"
| "SWITCH"
| "CHECKBOX"
| "DATE_PICKER"
| "DROP_DOWN"
| "COLOR_PICKER"
| "TIMEZONE_PICKER"
| "ACTION_SELECTOR"
| "RECORD_ACTION_SELECTOR"
| "OPTION_INPUT"
| "IMAGE_PICKER"
| "SHAPE_PICKER"
| "VALIDATION_INPUT"
| "ZOOM";