vira - v25.2.0
    Preparing search index...

    Type Alias SharedTextInputElementInputs

    Inputs shared between the multiple input elements.

    type SharedTextInputElementInputs = {
        allowedInputs?: string | RegExp;
        blockedInputs?: string | RegExp;
        disableBrowserHelps?: boolean;
        disabled?: boolean;
        fitText?: boolean;
        placeholder?: string;
        value: string;
    }
    Index

    Properties

    allowedInputs?: string | RegExp

    Only 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.

    blockedInputs?: string | RegExp

    Any letters in the given string or matches to the given RegExp will be blocked.

    disableBrowserHelps?: boolean

    Disable all browser helps like spellchecking, autocomplete, etc.

    disabled?: boolean

    Set to true to trigger disabled styles and to block all user input.

    fitText?: boolean

    Set this to true to make the whole element size to only fit the input text.

    placeholder?: string

    Shown when no other text is present. Input restrictions do not apply to this property.

    value: string