/** 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',
}
