devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
175 lines (152 loc) • 6.35 kB
TypeScript
/**
* DevExtreme (ui/multi_view.d.ts)
* Version: 25.1.3
* Build date: Wed Jun 25 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import { DataSourceLike } from '../data/data_source';
import {
EventInfo,
NativeEventInfo,
InitializedEventInfo,
ChangedOptionInfo,
ItemInfo,
} from '../common/core/events';
import CollectionWidget, {
CollectionWidgetItem,
CollectionWidgetOptions,
SelectionChangeInfo,
} from './collection/ui.collection_widget.base';
/**
* @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 ItemLike = string | Item | any;
/**
* The type of the contentReady event handler's argument.
*/
export type ContentReadyEvent<TItem extends ItemLike = any, TKey = any> = EventInfo<dxMultiView<TItem, TKey>>;
/**
* The type of the disposing event handler's argument.
*/
export type DisposingEvent<TItem extends ItemLike = any, TKey = any> = EventInfo<dxMultiView<TItem, TKey>>;
/**
* The type of the initialized event handler's argument.
*/
export type InitializedEvent<TItem extends ItemLike = any, TKey = any> = InitializedEventInfo<dxMultiView<TItem, TKey>>;
/**
* The type of the itemClick event handler's argument.
*/
export type ItemClickEvent<TItem extends ItemLike = any, TKey = any> = NativeEventInfo<dxMultiView<TItem, TKey>, KeyboardEvent | MouseEvent | PointerEvent> & ItemInfo<TItem>;
/**
* The type of the itemContextMenu event handler's argument.
*/
export type ItemContextMenuEvent<TItem extends ItemLike = any, TKey = any> = NativeEventInfo<dxMultiView<TItem, TKey>, MouseEvent | PointerEvent | TouchEvent> & ItemInfo<TItem>;
/**
* The type of the itemHold event handler's argument.
*/
export type ItemHoldEvent<TItem extends ItemLike = any, TKey = any> = NativeEventInfo<dxMultiView<TItem, TKey>, MouseEvent | PointerEvent | TouchEvent> & ItemInfo<TItem>;
/**
* The type of the itemRendered event handler's argument.
*/
export type ItemRenderedEvent<TItem extends ItemLike = any, TKey = any> = EventInfo<dxMultiView<TItem, TKey>> & ItemInfo<TItem>;
/**
* The type of the optionChanged event handler's argument.
*/
export type OptionChangedEvent<TItem extends ItemLike = any, TKey = any> = EventInfo<dxMultiView<TItem, TKey>> & ChangedOptionInfo;
/**
* The type of the selectionChanged event handler's argument.
*/
export type SelectionChangedEvent<TItem extends ItemLike = any, TKey = any> = EventInfo<dxMultiView<TItem, TKey>> & SelectionChangeInfo<TItem>;
/**
*
* @deprecated
*/
export interface dxMultiViewOptions<
TItem extends ItemLike = any,
TKey = any,
> extends dxMultiViewBaseOptions<dxMultiView<TItem, TKey>, TItem, TKey> {}
/**
*
* @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 dxMultiViewBaseOptions<
TComponent extends dxMultiView<TItem, TKey> = dxMultiView<any, any>,
TItem extends ItemLike = any,
TKey = any,
> extends CollectionWidgetOptions<TComponent, TItem, TKey> {
/**
* Specifies whether or not to animate the displayed item change.
*/
animationEnabled?: boolean;
/**
* Binds the UI component to data.
*/
dataSource?: DataSourceLike<TItem, TKey> | null;
/**
* Specifies whether to render the view's content when it is displayed. If false, the content is rendered immediately.
*/
deferRendering?: boolean;
/**
* Specifies whether the UI component can be focused using keyboard navigation.
*/
focusStateEnabled?: boolean;
/**
* An array of items displayed by the UI component.
*/
items?: Array<TItem>;
/**
* A Boolean value specifying whether or not to scroll back to the first item after the last item is swiped.
*/
loop?: boolean;
/**
* The index of the currently displayed item.
*/
selectedIndex?: number;
/**
* A Boolean value specifying whether or not to allow users to change the selected index by swiping.
*/
swipeEnabled?: boolean;
}
/**
* The MultiView is a UI component that contains several views. An end user navigates through the views by swiping them in the horizontal direction.
*/
export default class dxMultiView<
TItem extends ItemLike = any,
TKey = any,
> extends CollectionWidget<Properties<TItem, TKey>, TItem, TKey> { }
export type Item = dxMultiViewItem;
/**
* @deprecated Use Item 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 interface dxMultiViewItem extends CollectionWidgetItem {}
export type ExplicitTypes<
TItem extends ItemLike,
TKey,
> = {
Properties: Properties<TItem, TKey>;
ContentReadyEvent: ContentReadyEvent<TItem, TKey>;
DisposingEvent: DisposingEvent<TItem, TKey>;
InitializedEvent: InitializedEvent<TItem, TKey>;
ItemClickEvent: ItemClickEvent<TItem, TKey>;
ItemContextMenuEvent: ItemContextMenuEvent<TItem, TKey>;
ItemHoldEvent: ItemHoldEvent<TItem, TKey>;
ItemRenderedEvent: ItemRenderedEvent<TItem, TKey>;
OptionChangedEvent: OptionChangedEvent<TItem, TKey>;
SelectionChangedEvent: SelectionChangedEvent<TItem, TKey>;
};
export type Properties<
TItem extends ItemLike = any,
TKey = any,
> = dxMultiViewOptions<TItem, TKey>;
/**
* @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<
TItem extends ItemLike = any,
TKey = any,
> = Properties<TItem, TKey>;