devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
148 lines (141 loc) • 4.31 kB
TypeScript
/**
* DevExtreme (ui/button.d.ts)
* Version: 19.2.6
* Build date: Thu Jan 30 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import '../jquery_augmentation';
import {
dxElement
} from '../core/element';
import {
template
} from '../core/templates/template';
import {
event
} from '../events';
import Widget, {
WidgetOptions
} from './widget/ui.widget';
/** Warning! This type is used for internal purposes. Do not import it directly. */
export interface dxButtonOptions extends WidgetOptions<dxButton> {
/**
* @docid dxButtonOptions.activeStateEnabled
* @type boolean
* @default true
* @prevFileNamespace DevExpress.ui
* @public
*/
activeStateEnabled?: boolean;
/**
* @docid dxButtonOptions.focusStateEnabled
* @type boolean
* @default true [for](desktop)
* @prevFileNamespace DevExpress.ui
* @public
*/
focusStateEnabled?: boolean;
/**
* @docid dxButtonOptions.hoverStateEnabled
* @type boolean
* @default true
* @prevFileNamespace DevExpress.ui
* @public
*/
hoverStateEnabled?: boolean;
/**
* @docid dxButtonOptions.icon
* @type string
* @default ""
* @prevFileNamespace DevExpress.ui
* @public
*/
icon?: string;
/**
* @docid dxButtonOptions.onClick
* @type function(e)
* @extends Action
* @type_function_param1 e:object
* @type_function_param1_field4 jQueryEvent:jQuery.Event:deprecated(event)
* @type_function_param1_field5 event:event
* @type_function_param1_field6 validationGroup:object
* @action
* @prevFileNamespace DevExpress.ui
* @public
*/
onClick?: ((e: { component?: dxButton, element?: dxElement, model?: any, jQueryEvent?: JQueryEventObject, event?: event, validationGroup?: any }) => any);
/**
* @docid dxButtonOptions.stylingMode
* @type Enums.ButtonStylingMode
* @default 'contained'
* @prevFileNamespace DevExpress.ui
* @public
*/
stylingMode?: 'text' | 'outlined' | 'contained';
/**
* @docid dxButtonOptions.template
* @type template|function
* @default "content"
* @type_function_param1 buttonData:object
* @type_function_param1_field1 text:string
* @type_function_param1_field2 icon:string
* @type_function_param2 contentElement:dxElement
* @type_function_return string|Node|jQuery
* @prevFileNamespace DevExpress.ui
* @public
*/
template?: template | ((buttonData: { text?: string, icon?: string }, contentElement: dxElement) => string | Element | JQuery);
/**
* @docid dxButtonOptions.text
* @type string
* @default ""
* @prevFileNamespace DevExpress.ui
* @public
*/
text?: string;
/**
* @docid dxButtonOptions.type
* @type Enums.ButtonType
* @default 'normal'
* @prevFileNamespace DevExpress.ui
* @public
*/
type?: 'back' | 'danger' | 'default' | 'normal' | 'success';
/**
* @docid dxButtonOptions.useSubmitBehavior
* @type boolean
* @default false
* @prevFileNamespace DevExpress.ui
* @public
*/
useSubmitBehavior?: boolean;
/**
* @docid dxButtonOptions.validationGroup
* @type string
* @default undefined
* @prevFileNamespace DevExpress.ui
* @public
*/
validationGroup?: string;
}
/** The Button widget is a simple button that performs specified commands when a user clicks it. */
export default class dxButton extends Widget {
constructor(element: Element, options?: dxButtonOptions)
constructor(element: JQuery, options?: dxButtonOptions)
}
declare global {
interface JQuery {
dxButton(): JQuery;
dxButton(options: "instance"): dxButton;
dxButton(options: string): any;
dxButton(options: string, ...params: any[]): any;
dxButton(options: dxButtonOptions): JQuery;
}
}
/** Warning! This type is used for internal purposes. Do not import it directly. */
export type Options = dxButtonOptions;
/** @deprecated use Options instead */
/** Warning! This type is used for internal purposes. Do not import it directly. */
export type IOptions = dxButtonOptions;