interface CheckboxChangeEventTarget {
    autoFocus?: boolean;
    checked: boolean;
    children?: ReactNode;
    className?: string;
    data-qaid?: string;
    defaultChecked?: boolean;
    disabled?: boolean;
    id?: string;
    indeterminate?: boolean;
    intent?: DEFAULT | SECONDARY;
    name?: string;
    onBlur?: FocusEventHandler<HTMLElement>;
    onChange?: ((e: CheckboxChangeEvent) => void);
    onClick?: MouseEventHandler<HTMLElement>;
    onFocus?: FocusEventHandler<HTMLElement>;
    onKeyDown?: KeyboardEventHandler<HTMLElement>;
    onKeyPress?: KeyboardEventHandler<HTMLElement>;
    onKeyUp?: KeyboardEventHandler<HTMLElement>;
    onMouseEnter?: MouseEventHandler<HTMLElement>;
    onMouseLeave?: MouseEventHandler<HTMLElement>;
    prefixCls?: string;
    readOnly?: boolean;
    style?: CSSProperties;
    tabIndex?: number;
    type?: string;
    value?: any;
}

Hierarchy (view full)

Properties

autoFocus?: boolean
checked: boolean
children?: ReactNode
className?: string

Возможность стилизации компонента через css-классы будет прекращена.

@universe-platform/uikit 2.0.0

data-qaid?: string
defaultChecked?: boolean

Возвращаемое значение всегда равно undefined.

@universe-platform/uikit 2.0.0

disabled?: boolean
id?: string
indeterminate?: boolean
intent?: DEFAULT | SECONDARY
name?: string
onBlur?: FocusEventHandler<HTMLElement>
onChange?: ((e: CheckboxChangeEvent) => void)
onClick?: MouseEventHandler<HTMLElement>
onFocus?: FocusEventHandler<HTMLElement>
onKeyDown?: KeyboardEventHandler<HTMLElement>
onKeyPress?: KeyboardEventHandler<HTMLElement>
onKeyUp?: KeyboardEventHandler<HTMLElement>
onMouseEnter?: MouseEventHandler<HTMLElement>
onMouseLeave?: MouseEventHandler<HTMLElement>
prefixCls?: string

Возвращаемое значение всегда равно undefined.

@universe-platform/uikit 2.0.0

readOnly?: boolean

Возможность стилизации компонента через css-стили будет прекращена.

@universe-platform/uikit 2.0.0

tabIndex?: number
type?: string

Возвращаемое значение всегда равно undefined.

@universe-platform/uikit 2.0.0

value?: any

Возвращаемое значение всегда равно undefined.

@universe-platform/uikit 2.0.0