label | String | '' | The label text for the text field. |
supportingText | String | '' | Helper text displayed below the text field. |
type | String | 'text' | The input type (inherited from Input). |
value | String | '' | The current value of the text field (inherited from Input). |
placeholder | String | '' | The placeholder text when the field is empty (inherited from Input). |
required | Boolean | false | Whether the text field is required (inherited from Input). |
readOnly | Boolean | false | Whether the text field is read-only (inherited from Input). |
multiple | Boolean | false | Whether the text field accepts multiple values (inherited from Input). |
min | String | '' | Minimum value for number/date inputs (inherited from Input). |
max | String | '' | Maximum value for number/date inputs (inherited from Input). |
step | String | '' | Step value for number inputs (inherited from Input). |
minLength | Number | -1 | Minimum length for text inputs (inherited from Input). |
maxLength | Number | -1 | Maximum length for text inputs (inherited from Input). |
pattern | String | '' | Regular expression pattern for validation (inherited from Input). |
autocomplete | String | '' | Autocomplete behavior hint (inherited from Input). |
focused | Boolean | false | Whether the text field is focused (inherited from Input). |
disabled | Boolean | false | Whether the text field is disabled (inherited from FormAssociated). |