UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

109 lines (104 loc) 3.39 kB
/** * DevExtreme (ui/multi_view.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 DataSource, { DataSourceOptions } from '../data/data_source'; import CollectionWidget, { CollectionWidgetItem, CollectionWidgetOptions } from './collection/ui.collection_widget.base'; /** Warning! This type is used for internal purposes. Do not import it directly. */ export interface dxMultiViewOptions<T = dxMultiView> extends CollectionWidgetOptions<T> { /** * @docid dxMultiViewOptions.animationEnabled * @type boolean * @default true * @prevFileNamespace DevExpress.ui * @public */ animationEnabled?: boolean; /** * @docid dxMultiViewOptions.dataSource * @type string|Array<string,dxMultiViewItem,object>|DataSource|DataSourceOptions * @default null * @prevFileNamespace DevExpress.ui * @public */ dataSource?: string | Array<string | dxMultiViewItem | any> | DataSource | DataSourceOptions; /** * @docid dxMultiViewOptions.deferRendering * @type boolean * @default true * @prevFileNamespace DevExpress.ui * @public */ deferRendering?: boolean; /** * @docid dxMultiViewOptions.focusStateEnabled * @type boolean * @default true [for](desktop) * @prevFileNamespace DevExpress.ui * @public */ focusStateEnabled?: boolean; /** * @docid dxMultiViewOptions.items * @type Array<string, dxMultiViewItem, object> * @fires dxMultiViewOptions.onOptionChanged * @prevFileNamespace DevExpress.ui * @public */ items?: Array<string | dxMultiViewItem | any>; /** * @docid dxMultiViewOptions.loop * @type boolean * @default false * @prevFileNamespace DevExpress.ui * @public */ loop?: boolean; /** * @docid dxMultiViewOptions.selectedIndex * @type number * @default 0 * @prevFileNamespace DevExpress.ui * @public */ selectedIndex?: number; /** * @docid dxMultiViewOptions.swipeEnabled * @type boolean * @default true * @prevFileNamespace DevExpress.ui * @public */ swipeEnabled?: boolean; } /** The MultiView is a widget that contains several views. An end user navigates through the views by swiping them in the horizontal direction. */ export default class dxMultiView extends CollectionWidget { constructor(element: Element, options?: dxMultiViewOptions) constructor(element: JQuery, options?: dxMultiViewOptions) } /** Warning! This type is used for internal purposes. Do not import it directly. */ export interface dxMultiViewItem extends CollectionWidgetItem { } declare global { interface JQuery { dxMultiView(): JQuery; dxMultiView(options: "instance"): dxMultiView; dxMultiView(options: string): any; dxMultiView(options: string, ...params: any[]): any; dxMultiView(options: dxMultiViewOptions): JQuery; } } /** Warning! This type is used for internal purposes. Do not import it directly. */ export type Options = dxMultiViewOptions; /** @deprecated use Options instead */ /** Warning! This type is used for internal purposes. Do not import it directly. */ export type IOptions = dxMultiViewOptions;