Skip to main content

Password

The Password (password) component is a text box where characters inside the box are hidden from the user. It has similar properties to the Text component, including configuration options for being readonly, disabled, required, and supporting placeholder, helper text, and default value.

Examples

A simple password field with basic validation
Password will be used for account security

Form Data:
{}

Field Properties

Properties used by this field (inside meta field in schema)

NameDescriptionType
displayNameThe label shown above the password fieldstring
displayTypeThe type of the field to be displayedstring
placeholderThe hint shown in the password fieldstring
readOnlyA readonly field is not editable and value cannot be changedboolean
isDisabledA disabled field is not editable and value cannot be changedboolean
requiredIndicates whether the field is mandatoryboolean
patternA regex pattern that the field value must matchstring
minMinimum length for the passwordnumber
maxMaximum length for the passwordnumber
descriptionHelper text or additional description shown below the password fieldstring
valueThe default value of the fieldstring
overrideDynamicSupportTo override the default behavior of showing static and dynamic optionsboolean