Optional
allowedInputs?: string | RegExpOnly letters in the given string or matches to the given RegExp will be allowed. blockedInputs takes precedence over this input.
For example: if allowedInputs is set to "abcd" and blockedInputs is set to "d", only "a", "b", or "c" letters will be allowed.
Optional
blockedInputs?: string | RegExpAny letters in the given string or matches to the given RegExp will be blocked.
Optional
disableBrowserHelps?: booleanDisable all browser helps like spellchecking, autocomplete, etc.
Optional
disabled?: booleanSet to true to trigger disabled styles and to block all user input.
Optional
fitText?: booleanSet this to true to make the whole element size to only fit the input text.
Optional
placeholder?: stringShown when no other text is present. Input restrictions do not apply to this property.
Inputs shared between the multiple input elements.