Юниверс MDM SDK UI
v6.15.0

Интерфейс RadioComponentType

Интерфейс компонента радиоэлемента, включающий группу и кнопку.

interface RadioComponentType {
    new RadioComponentType(
        props: RadioProps & RadioExtraProps & RefAttributes<HTMLElement>,
        context?: any,
    ): Component<
        RadioProps & RadioExtraProps & RefAttributes<HTMLElement>,
        any,
    >;
    Button: RadioButtonComponentType;
    childContextTypes?: ValidationMap<any>;
    contextType?: Context<any>;
    contextTypes?: ValidationMap<any>;
    defaultProps?: Partial<
        RadioProps & RadioExtraProps & RefAttributes<HTMLElement>,
    >;
    displayName?: string;
    getDerivedStateFromError?: GetDerivedStateFromError<
        RadioProps & RadioExtraProps & RefAttributes<HTMLElement>,
        any,
    >;
    getDerivedStateFromProps?: GetDerivedStateFromProps<
        RadioProps & RadioExtraProps & RefAttributes<HTMLElement>,
        any,
    >;
    Group: RadioRadioGroupComponentType;
    propTypes?: WeakValidationMap<
        RadioProps & RadioExtraProps & RefAttributes<HTMLElement>,
    >;
}

Иерархия (Просмотр сводки)

Индекс

Конструкторы

Свойства

Компонент кнопки радиоэлемента.

childContextTypes?: ValidationMap<any>
contextType?: Context<any>
contextTypes?: ValidationMap<any>
defaultProps?: Partial<
    RadioProps & RadioExtraProps & RefAttributes<HTMLElement>,
>
displayName?: string
getDerivedStateFromError?: GetDerivedStateFromError<
    RadioProps & RadioExtraProps & RefAttributes<HTMLElement>,
    any,
>
getDerivedStateFromProps?: GetDerivedStateFromProps<
    RadioProps & RadioExtraProps & RefAttributes<HTMLElement>,
    any,
>

Компонент группы радиоэлементов.

propTypes?: WeakValidationMap<
    RadioProps & RadioExtraProps & RefAttributes<HTMLElement>,
>