devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
108 lines (96 loc) • 3.37 kB
TypeScript
/**
* DevExtreme (ui/check_box.d.ts)
* Version: 24.2.6
* Build date: Mon Mar 17 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import {
EventInfo,
NativeEventInfo,
InitializedEventInfo,
ChangedOptionInfo,
} from '../common/core/events';
import Editor, {
EditorOptions,
ValueChangedInfo,
} from './editor/editor';
/**
* The type of the contentReady event handler's argument.
*/
export type ContentReadyEvent = EventInfo<dxCheckBox>;
/**
* The type of the disposing event handler's argument.
*/
export type DisposingEvent = EventInfo<dxCheckBox>;
/**
* The type of the initialized event handler's argument.
*/
export type InitializedEvent = InitializedEventInfo<dxCheckBox>;
/**
* The type of the optionChanged event handler's argument.
*/
export type OptionChangedEvent = EventInfo<dxCheckBox> & ChangedOptionInfo;
/**
* The type of the valueChanged event handler's argument.
*/
export type ValueChangedEvent = NativeEventInfo<dxCheckBox, KeyboardEvent | MouseEvent | PointerEvent | TouchEvent | Event> & ValueChangedInfo;
/**
*
* @deprecated
* @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution.
*/
export interface dxCheckBoxOptions extends EditorOptions<dxCheckBox> {
/**
* Specifies whether the UI component changes its visual state as a result of user interaction.
*/
activeStateEnabled?: boolean;
/**
* Specifies whether users can set the CheckBox state to indeterminate.
*/
enableThreeStateBehavior?: boolean;
/**
* Specifies whether the UI component can be focused using keyboard navigation.
*/
focusStateEnabled?: boolean;
/**
* Specifies whether the UI component changes its state when a user pauses on it.
*/
hoverStateEnabled?: boolean;
/**
* Specifies the check box icon's width and height.
*/
iconSize?: number | string | undefined;
/**
* The value to be assigned to the `name` attribute of the underlying HTML element.
*/
name?: string;
/**
* Specifies the text displayed by the check box.
*/
text?: string;
/**
* Specifies the UI component state.
*/
value?: boolean | null | undefined;
}
/**
* The CheckBox is a small box, which when selected by the end user, shows that a particular feature has been enabled or a specific property has been chosen.
*/
export default class dxCheckBox extends Editor<dxCheckBoxOptions> {
/**
* Removes focus from the check box.
*/
blur(): void;
/**
* Resets the value property to the value passed as an argument.
*/
reset(value?: boolean | null | undefined): void;
}
export type Properties = dxCheckBoxOptions;
/**
* @deprecated use Properties instead
* @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution.
*/
export type Options = dxCheckBoxOptions;