@sinchsmb/ui-kit
Version:
UI kit for SinchSMB frontend
22 lines (20 loc) • 554 B
text/typescript
/** Supported {@link FormField} direction */
export enum FormFieldDirection {
/**
* - the label will be shown above control
* - the description and error will be shown below control
*/
Vertical = 'vertical',
/**
* - the label will be shown right control
* - the description and error will be shown below label
*/
Horizontal = 'horizontal',
}
/** Supported {@link FormMessage} types */
export enum FormMessageType {
/** Red error message */
Error = 'error',
/** Light gray info message */
Description = 'description',
}