turbodombuilder - v0.9.22
    Preparing search index...

    Type Alias TurboInputProperties<InputTag, ViewType, DataType, ModelType, EmitterType>

    TurboInputProperties: Omit<
        TurboRichElementProperties<
            InputTag,
            ViewType,
            DataType,
            ModelType,
            EmitterType,
        >,
        "element"
        | "elementTag",
    > & {
        inputTag?: InputTag;
        input?: TurboProperties<InputTag> | ValidElement<InputTag>;
        label?: string;
        locked?: boolean;
        dynamicVerticalResize?: boolean;
        inputRegexCheck?: RegExp | string;
        blurRegexCheck?: RegExp | string;
        selectTextOnFocus?: boolean;
    }

    Type Parameters