Interface InputTextProps

interface InputTextProps {
    autocomplete?: string;
    containerStyle?: string;
    dataField?: string;
    defaultValue?: string;
    inputStyle?: string;
    labelStyle?: string;
    labelTitle?: string;
    pattern?: string;
    placeholder?: string;
    required?: boolean;
    type?: string;
    updateFormValue?: (value: string) => void;
}

Properties

autocomplete?: string
containerStyle?: string
dataField?: string
defaultValue?: string
inputStyle?: string
labelStyle?: string
labelTitle?: string
pattern?: string
placeholder?: string
required?: boolean
type?: string
updateFormValue?: (value: string) => void