Optional autocapitalizeOptional autocompleteSpecifies what if any permission the browser has to provide for automated assistance in filling out form field values, as well as guidance to the browser as to the type of information expected in the field. Refer to this page for additional information.
Optional blurOptional changeOptional childrenOptional classOptional defaultThe initial value of the component.
Optional disabledThe disabled state of the component
Optional focusOptional idOptional inputOptional inputHints at the type of data that might be entered by the user while editing the element or its contents. This allows a browser to display an appropriate virtual keyboard. MDN documentation
Optional invalidControl the validity of the control.
Optional labelThe label for the control.
Optional maxThe maximum number of characters (UTF-16 code units) that the user can enter. If this value isn't specified, the user can enter an unlimited number of characters.
Optional minThe minimum number of characters (UTF-16 code units) required that the user should enter.
Optional nameThe name attribute of the control.
Optional outlinedWhether the control will have outlined appearance.
Optional placeholderThe placeholder attribute of the control.
Optional readMakes the control a readonly field.
Optional requiredMakes the control a required field in a form context.
Optional resizeControls whether the control can be resized.
When auto is set, the control will try to expand and fit its content.
Optional rowsThe number of visible text lines for the control. If it is specified, it must be a positive integer. If it is not specified, the default value is 2.
Optional spellcheckControls whether the element may be checked for spelling errors.
Optional styleOptional validateEnables validation rules to be evaluated without restricting user input. This applies to the maxLength property
when it is defined.
Optional valueThe value of the component
Optional wrapIndicates how the control should wrap the value for form submission. Refer to this page on MDN for explanation of the available values.
Controls whether and how text input is automatically capitalized as it is entered/edited by the user. MDN documentation.