UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

181 lines (152 loc) 5.32 kB
/** * DevExtreme (ui/color_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 { UserDefinedElement, DxElement, } from '../core/element'; import { EventInfo, NativeEventInfo, InitializedEventInfo, ChangedOptionInfo, } from '../common/core/events'; import { template, ApplyValueMode, } from '../common'; import dxDropDownEditor, { dxDropDownEditorOptions, DropDownButtonTemplateDataModel, } from './drop_down_editor/ui.drop_down_editor'; import { ValueChangedInfo, } from './editor/editor'; import { Properties as PopupProperties, } from './popup'; /** * The type of the change event handler&apos;s argument. */ export type ChangeEvent = NativeEventInfo<dxColorBox, Event>; /** * The type of the closed event handler&apos;s argument. */ export type ClosedEvent = EventInfo<dxColorBox>; /** * The type of the copy event handler&apos;s argument. */ export type CopyEvent = NativeEventInfo<dxColorBox, ClipboardEvent>; /** * The type of the cut event handler&apos;s argument. */ export type CutEvent = NativeEventInfo<dxColorBox, ClipboardEvent>; /** * The type of the disposing event handler&apos;s argument. */ export type DisposingEvent = EventInfo<dxColorBox>; /** * The type of the enterKey event handler&apos;s argument. */ export type EnterKeyEvent = NativeEventInfo<dxColorBox, KeyboardEvent>; /** * The type of the focusIn event handler&apos;s argument. */ export type FocusInEvent = NativeEventInfo<dxColorBox, FocusEvent>; /** * The type of the focusOut event handler&apos;s argument. */ export type FocusOutEvent = NativeEventInfo<dxColorBox, FocusEvent>; /** * The type of the initialized event handler&apos;s argument. */ export type InitializedEvent = InitializedEventInfo<dxColorBox>; /** * The type of the input event handler&apos;s argument. */ export type InputEvent = NativeEventInfo<dxColorBox, UIEvent & { target: HTMLInputElement }>; /** * The type of the keyDown event handler&apos;s argument. */ export type KeyDownEvent = NativeEventInfo<dxColorBox, KeyboardEvent>; export type KeyPressEvent = NativeEventInfo<dxColorBox, KeyboardEvent>; /** * The type of the keyUp event handler&apos;s argument. */ export type KeyUpEvent = NativeEventInfo<dxColorBox, KeyboardEvent>; /** * The type of the opened event handler&apos;s argument. */ export type OpenedEvent = EventInfo<dxColorBox>; /** * The type of the optionChanged event handler&apos;s argument. */ export type OptionChangedEvent = EventInfo<dxColorBox> & ChangedOptionInfo; /** * The type of the paste event handler&apos;s argument. */ export type PasteEvent = NativeEventInfo<dxColorBox, ClipboardEvent>; /** * The type of the valueChanged event handler&apos;s argument. */ export type ValueChangedEvent = NativeEventInfo<dxColorBox, KeyboardEvent | MouseEvent | PointerEvent | UIEvent | Event> & ValueChangedInfo; export type DropDownButtonTemplateData = DropDownButtonTemplateDataModel; /** * * @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 dxColorBoxOptions extends dxDropDownEditorOptions<dxColorBox> { /** * Specifies the text displayed on the button that applies changes and closes the drop-down editor. */ applyButtonText?: string; /** * Specifies the way an end user applies the selected value. */ applyValueMode?: ApplyValueMode; /** * Specifies the text displayed on the button that cancels changes and closes the drop-down editor. */ cancelButtonText?: string; /** * Specifies whether or not the UI component value includes the alpha channel component. */ editAlphaChannel?: boolean; /** * Specifies a custom template for the input field. Must contain the TextBox UI component. */ fieldTemplate?: template | ((value: string, fieldElement: DxElement) => string | UserDefinedElement); /** * Specifies the size of a step by which a handle is moved using a keyboard shortcut. */ keyStep?: number; /** * Specifies the currently selected value. */ value?: string; /** * Configures the drop-down field which holds the content. */ dropDownOptions?: PopupProperties; } /** * The ColorBox is a UI component that allows an end user to enter a color or pick it out from the drop-down editor. */ export default class dxColorBox extends dxDropDownEditor<dxColorBoxOptions> { /** * Resets the value property to the value passed as an argument. */ reset(value?: string | null): void; } export type Properties = dxColorBoxOptions; /** * @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 = dxColorBoxOptions;