Type alias FormElementWithInput<DefaultValue>

FormElementWithInput<DefaultValue>: {
    autocompleteAttributes?: string[];
    defaultValue?: DefaultValue;
    placeholderValue?: string;
    regexFlags?: string;
    regexMessage?: string;
    regexPattern?: string;
} & LookupFormElement & FormElementRequired & FormElementReadOnly

Type Parameters

  • DefaultValue

Type declaration

  • Optional autocompleteAttributes?: string[]

    Custom autocomplete attributes that will be added to the element during rendering

  • Optional defaultValue?: DefaultValue
  • Optional placeholderValue?: string
  • Optional regexFlags?: string
  • Optional regexMessage?: string
  • Optional regexPattern?: string