devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
52 lines (50 loc) • 1.9 kB
TypeScript
/*!
* devextreme-vue
* Version: 19.2.6
* Build date: Thu Jan 30 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file in the root of the project for details.
*
* https://github.com/DevExpress/devextreme-vue
*/
import * as VueType from "vue";
import ButtonGroup, { IOptions } from "devextreme/ui/button_group";
declare type AccessibleOptions = Pick<IOptions, "accessKey" | "activeStateEnabled" | "buttonTemplate" | "disabled" | "elementAttr" | "focusStateEnabled" | "height" | "hint" | "hoverStateEnabled" | "items" | "keyExpr" | "onContentReady" | "onDisposing" | "onInitialized" | "onItemClick" | "onOptionChanged" | "onSelectionChanged" | "rtlEnabled" | "selectedItemKeys" | "selectedItems" | "selectionMode" | "stylingMode" | "tabIndex" | "visible" | "width">;
interface DxButtonGroup extends AccessibleOptions {
readonly instance?: ButtonGroup;
}
declare const DxButtonGroup: VueType.VueConstructor<{
instance: ButtonGroup;
} & {
accessKey: string;
activeStateEnabled: boolean;
buttonTemplate: unknown;
disabled: boolean;
elementAttr: any;
focusStateEnabled: boolean;
height: string | number | Function;
hint: string;
hoverStateEnabled: boolean;
items: unknown[];
keyExpr: TimerHandler;
onContentReady: Function;
onDisposing: Function;
onInitialized: Function;
onItemClick: Function;
onOptionChanged: Function;
onSelectionChanged: Function;
rtlEnabled: boolean;
selectedItemKeys: unknown[];
selectedItems: unknown[];
selectionMode: string;
stylingMode: string;
tabIndex: number;
visible: boolean;
width: string | number | Function;
} & VueType.default>;
declare const DxItem: any;
export default DxButtonGroup;
export { DxButtonGroup, DxItem };