The props for the CompleteField component.
Interface for specifying the props of a complete field.
OptionalautoFocus?: booleanSpecifies whether the field should be automatically focused.
Optionaldescription?: stringRetrieves the "description" property from a given object and its nested properties if available.
Optionaldisabled?: booleanRepresents the "disabled" property of a field.
OptionalgroupRef?: (element?: null | HTMLDivElement) => voidRepresents a reference to a group within a field.
OptionalinputAutocomplete?: "new-password" | "on" | "off" | "false"Represents the optional prop "inputAutocomplete" for a field.
OptionalinputFormatter?: (input: string) => stringRepresents the input formatter property of a field within a specific data type.
OptionalinputFormatterAllowed?: RegExp | (char: string, idx: number) => booleanDetermines whether input formatting is allowed for a given field.
OptionalinputFormatterReplace?: (char: string) => null | stringReplaces the input formatter of a field with a new one.
OptionalinputFormatterSymbol?: stringRepresents the input formatter symbol for a specific field.
OptionalinputFormatterTemplate?: stringRepresents a template for formatting input data.
OptionalinputMode?: "search" | "text" | "email" | "tel" | "url" | "none" | "numeric" | "decimal"Represents the input mode of a field in the data object payload.
OptionalinputPattern?: stringRepresents the input pattern of a field.
OptionalinputRef?: (element?: null | HTMLInputElement) => voidRepresents the input reference of a field.
OptionalinputType?: Represents the input type of a field.
OptionalkeepRaw?: booleanRepresents the value of the keepRaw property, which indicates whether to keep the raw data in a field.
OptionallabelShrink?: booleanReduces the size of the label for a given field.
Optionaloutlined?: booleanReturns the value of the outlined property from the provided object.
Optionalplaceholder?: stringRetrieves the placeholder property of a given field.
Optionalreadonly?: booleanRetrieves the "readonly" property from the provided field object.
Optionaltip?: Represents the "tip" property of an object.
OptionaltipSelect?: (Represents a variable that holds the value of the "tipSelect" property.
Optionaltitle?: stringType definition for the "title" property picked from the "IField" object type, where "IField" is a generic object with properties "Data" and "Payload". The resulting type is determined by the "PickProp" utility, which selects the specific property from the provided object type.
Optionalvalidation?: IValidationValidation factory config
Represents a private interface for a complete field.
The rendered CompleteField component.
A wrapper component for the Complete component.