Interface ComponentOverrides

interface ComponentOverrides {
    Button?: (new (props) => PickMatching<ButtonAbstract, any>);
    Checkbox?: (new (props) => PickMatching<CheckboxAbstract, any>);
    FormItemList?: (new (props) => PickMatching<FormItemListAbstract, any>);
    RadioGroup?: (new (props) => PickMatching<RadioGroupAbstract, any>);
    Select?: (new (props) => PickMatching<SelectAbstract, any>);
    Switch?: (new (props) => PickMatching<SwitchAbstract, any>);
    TextArea?: (new (props) => PickMatching<TextAreaAbstract, any>);
    TextInput?: (new (props) => PickMatching<TextInputAbstract, any>);
}

Properties

Button?: (new (props) => PickMatching<ButtonAbstract, any>)

Type declaration

Checkbox?: (new (props) => PickMatching<CheckboxAbstract, any>)

Type declaration

    • new (props): PickMatching<CheckboxAbstract, any>
    • Parameters

      • props: CheckboxProps

      Returns PickMatching<CheckboxAbstract, any>

FormItemList?: (new (props) => PickMatching<FormItemListAbstract, any>)

Type declaration

    • new (props): PickMatching<FormItemListAbstract, any>
    • Parameters

      • props: FormItemListProps

      Returns PickMatching<FormItemListAbstract, any>

RadioGroup?: (new (props) => PickMatching<RadioGroupAbstract, any>)

Type declaration

Select?: (new (props) => PickMatching<SelectAbstract, any>)

Type declaration

Switch?: (new (props) => PickMatching<SwitchAbstract, any>)

Type declaration

    • new (props): PickMatching<SwitchAbstract, any>
    • Parameters

      • props: SwitchProps

      Returns PickMatching<SwitchAbstract, any>

TextArea?: (new (props) => PickMatching<TextAreaAbstract, any>)

Type declaration

TextInput?: (new (props) => PickMatching<TextInputAbstract, any>)

Type declaration