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

  • OptionalautocompleteAttributes?: string[]

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

  • OptionaldefaultValue?: DefaultValue
  • OptionalplaceholderValue?: string
  • OptionalregexFlags?: string
  • OptionalregexMessage?: string
  • OptionalregexPattern?: string