UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

91 lines (68 loc) 3.43 kB
/** * DevExtreme (ui/text_box.d.ts) * Version: 21.2.4 * Build date: Mon Dec 06 2021 * * Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import { EventInfo, NativeEventInfo, InitializedEventInfo, ChangedOptionInfo, } from '../events/index'; import { ValueChangedInfo, } from './editor/editor'; import dxTextEditor, { dxTextEditorOptions, } from './text_box/ui.text_editor.base'; export type ChangeEvent = NativeEventInfo<dxTextBox, Event>; export type ContentReadyEvent = EventInfo<dxTextBox>; export type CopyEvent = NativeEventInfo<dxTextBox, ClipboardEvent>; export type CutEvent = NativeEventInfo<dxTextBox, ClipboardEvent>; export type DisposingEvent = EventInfo<dxTextBox>; export type EnterKeyEvent = NativeEventInfo<dxTextBox, KeyboardEvent>; export type FocusInEvent = NativeEventInfo<dxTextBox, FocusEvent>; export type FocusOutEvent = NativeEventInfo<dxTextBox, FocusEvent>; export type InitializedEvent = InitializedEventInfo<dxTextBox>; export type InputEvent = NativeEventInfo<dxTextBox, UIEvent>; export type KeyDownEvent = NativeEventInfo<dxTextBox, KeyboardEvent>; export type KeyPressEvent = NativeEventInfo<dxTextBox, KeyboardEvent>; export type KeyUpEvent = NativeEventInfo<dxTextBox, KeyboardEvent>; export type OptionChangedEvent = EventInfo<dxTextBox> & ChangedOptionInfo; export type PasteEvent = NativeEventInfo<dxTextBox, ClipboardEvent>; export type ValueChangedEvent = NativeEventInfo<dxTextBox, KeyboardEvent | MouseEvent | PointerEvent | TouchEvent | Event> & ValueChangedInfo; /** * @deprecated use Properties instead * @deprecated Attention! This type is for internal purposes only. If you used it previously, please describe your scenario in the following GitHub Issue, and we will suggest a public alternative: {@link https://github.com/DevExpress/DevExtreme/issues/17885|Internal Types}. */ export interface dxTextBoxOptions<TComponent> extends dxTextEditorOptions<TComponent> { /** * Specifies the maximum number of characters you can enter into the textbox. */ maxLength?: string | number; /** * The &apos;mode&apos; attribute value of the actual HTML input element representing the text box. */ mode?: 'email' | 'password' | 'search' | 'tel' | 'text' | 'url'; /** * Specifies a value the UI component displays. */ value?: string; } /** * The TextBox is a UI component that enables a user to enter and edit a single line of text. */ export default class dxTextBox<TProperties = Properties> extends dxTextEditor<TProperties> { } /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please describe your scenario in the following GitHub Issue, and we will suggest a public alternative: {@link https://github.com/DevExpress/DevExtreme/issues/17885|Internal Types}. */ interface TextBoxInstance extends dxTextBox<Properties> { } export type Properties = dxTextBoxOptions<TextBoxInstance>; /** * @deprecated use Properties instead * @deprecated Attention! This type is for internal purposes only. If you used it previously, please describe your scenario in the following GitHub Issue, and we will suggest a public alternative: {@link https://github.com/DevExpress/DevExtreme/issues/17885|Internal Types}. */ export type Options = Properties;