devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
630 lines (628 loc) • 33 kB
TypeScript
/*!
* devextreme-vue
* Version: 25.1.5
* Build date: Wed Sep 03 2025
*
* Copyright (c) 2012 - 2025 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
*/
export { ExplicitTypes } from "devextreme/ui/menu";
import { PropType } from "vue";
import Menu, { Properties } from "devextreme/ui/menu";
import DataSource from "devextreme/data/data_source";
import { dxMenuItem, ContentReadyEvent, DisposingEvent, InitializedEvent, ItemClickEvent, ItemContextMenuEvent, ItemRenderedEvent, OptionChangedEvent, SelectionChangedEvent, SubmenuHiddenEvent, SubmenuHidingEvent, SubmenuShowingEvent, SubmenuShownEvent, SubmenuDirection } from "devextreme/ui/menu";
import { DataSourceOptions } from "devextreme/common/data";
import { Store } from "devextreme/data/store";
import { Orientation, SingleOrNone, SubmenuShowMode, HorizontalAlignment, VerticalAlignment, Direction, PositionAlignment } from "devextreme/common";
import { AnimationConfig, CollisionResolution, PositionConfig, AnimationState, AnimationType, CollisionResolutionCombination } from "devextreme/common/core/animation";
type AccessibleOptions = Pick<Properties, "accessKey" | "activeStateEnabled" | "adaptivityEnabled" | "animation" | "cssClass" | "dataSource" | "disabled" | "disabledExpr" | "displayExpr" | "elementAttr" | "focusStateEnabled" | "height" | "hideSubmenuOnMouseLeave" | "hint" | "hoverStateEnabled" | "items" | "itemsExpr" | "itemTemplate" | "onContentReady" | "onDisposing" | "onInitialized" | "onItemClick" | "onItemContextMenu" | "onItemRendered" | "onOptionChanged" | "onSelectionChanged" | "onSubmenuHidden" | "onSubmenuHiding" | "onSubmenuShowing" | "onSubmenuShown" | "orientation" | "rtlEnabled" | "selectByClick" | "selectedExpr" | "selectedItem" | "selectionMode" | "showFirstSubmenuMode" | "showSubmenuMode" | "submenuDirection" | "tabIndex" | "visible" | "width">;
interface DxMenu extends AccessibleOptions {
readonly instance?: Menu;
}
declare const DxMenu: import("@vue/runtime-core").DefineComponent<{
accessKey: StringConstructor;
activeStateEnabled: BooleanConstructor;
adaptivityEnabled: BooleanConstructor;
animation: PropType<Record<string, any>>;
cssClass: StringConstructor;
dataSource: PropType<string | Record<string, any> | DataSource<any, any> | DataSourceOptions<any, any, any, any> | Store<any, any> | dxMenuItem[] | null>;
disabled: BooleanConstructor;
disabledExpr: PropType<string | (() => void)>;
displayExpr: PropType<string | ((item: any) => string)>;
elementAttr: PropType<Record<string, any>>;
focusStateEnabled: BooleanConstructor;
height: (NumberConstructor | StringConstructor)[];
hideSubmenuOnMouseLeave: BooleanConstructor;
hint: StringConstructor;
hoverStateEnabled: BooleanConstructor;
items: PropType<dxMenuItem[]>;
itemsExpr: PropType<string | (() => void)>;
itemTemplate: {};
onContentReady: PropType<(e: ContentReadyEvent) => void>;
onDisposing: PropType<(e: DisposingEvent) => void>;
onInitialized: PropType<(e: InitializedEvent) => void>;
onItemClick: PropType<(e: ItemClickEvent) => void>;
onItemContextMenu: PropType<(e: ItemContextMenuEvent) => void>;
onItemRendered: PropType<(e: ItemRenderedEvent) => void>;
onOptionChanged: PropType<(e: OptionChangedEvent) => void>;
onSelectionChanged: PropType<(e: SelectionChangedEvent) => void>;
onSubmenuHidden: PropType<(e: SubmenuHiddenEvent) => void>;
onSubmenuHiding: PropType<(e: SubmenuHidingEvent) => void>;
onSubmenuShowing: PropType<(e: SubmenuShowingEvent) => void>;
onSubmenuShown: PropType<(e: SubmenuShownEvent) => void>;
orientation: PropType<Orientation>;
rtlEnabled: BooleanConstructor;
selectByClick: BooleanConstructor;
selectedExpr: PropType<string | (() => void)>;
selectedItem: {};
selectionMode: PropType<SingleOrNone>;
showFirstSubmenuMode: PropType<Record<string, any> | SubmenuShowMode>;
showSubmenuMode: PropType<Record<string, any> | SubmenuShowMode>;
submenuDirection: PropType<SubmenuDirection>;
tabIndex: NumberConstructor;
visible: BooleanConstructor;
width: (NumberConstructor | StringConstructor)[];
}, unknown, unknown, {
instance(): Menu;
}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:accessKey": null;
"update:activeStateEnabled": null;
"update:adaptivityEnabled": null;
"update:animation": null;
"update:cssClass": null;
"update:dataSource": null;
"update:disabled": null;
"update:disabledExpr": null;
"update:displayExpr": null;
"update:elementAttr": null;
"update:focusStateEnabled": null;
"update:height": null;
"update:hideSubmenuOnMouseLeave": null;
"update:hint": null;
"update:hoverStateEnabled": null;
"update:items": null;
"update:itemsExpr": null;
"update:itemTemplate": null;
"update:onContentReady": null;
"update:onDisposing": null;
"update:onInitialized": null;
"update:onItemClick": null;
"update:onItemContextMenu": null;
"update:onItemRendered": null;
"update:onOptionChanged": null;
"update:onSelectionChanged": null;
"update:onSubmenuHidden": null;
"update:onSubmenuHiding": null;
"update:onSubmenuShowing": null;
"update:onSubmenuShown": null;
"update:orientation": null;
"update:rtlEnabled": null;
"update:selectByClick": null;
"update:selectedExpr": null;
"update:selectedItem": null;
"update:selectionMode": null;
"update:showFirstSubmenuMode": null;
"update:showSubmenuMode": null;
"update:submenuDirection": null;
"update:tabIndex": null;
"update:visible": null;
"update:width": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
accessKey: StringConstructor;
activeStateEnabled: BooleanConstructor;
adaptivityEnabled: BooleanConstructor;
animation: PropType<Record<string, any>>;
cssClass: StringConstructor;
dataSource: PropType<string | Record<string, any> | DataSource<any, any> | DataSourceOptions<any, any, any, any> | Store<any, any> | dxMenuItem[] | null>;
disabled: BooleanConstructor;
disabledExpr: PropType<string | (() => void)>;
displayExpr: PropType<string | ((item: any) => string)>;
elementAttr: PropType<Record<string, any>>;
focusStateEnabled: BooleanConstructor;
height: (NumberConstructor | StringConstructor)[];
hideSubmenuOnMouseLeave: BooleanConstructor;
hint: StringConstructor;
hoverStateEnabled: BooleanConstructor;
items: PropType<dxMenuItem[]>;
itemsExpr: PropType<string | (() => void)>;
itemTemplate: {};
onContentReady: PropType<(e: ContentReadyEvent) => void>;
onDisposing: PropType<(e: DisposingEvent) => void>;
onInitialized: PropType<(e: InitializedEvent) => void>;
onItemClick: PropType<(e: ItemClickEvent) => void>;
onItemContextMenu: PropType<(e: ItemContextMenuEvent) => void>;
onItemRendered: PropType<(e: ItemRenderedEvent) => void>;
onOptionChanged: PropType<(e: OptionChangedEvent) => void>;
onSelectionChanged: PropType<(e: SelectionChangedEvent) => void>;
onSubmenuHidden: PropType<(e: SubmenuHiddenEvent) => void>;
onSubmenuHiding: PropType<(e: SubmenuHidingEvent) => void>;
onSubmenuShowing: PropType<(e: SubmenuShowingEvent) => void>;
onSubmenuShown: PropType<(e: SubmenuShownEvent) => void>;
orientation: PropType<Orientation>;
rtlEnabled: BooleanConstructor;
selectByClick: BooleanConstructor;
selectedExpr: PropType<string | (() => void)>;
selectedItem: {};
selectionMode: PropType<SingleOrNone>;
showFirstSubmenuMode: PropType<Record<string, any> | SubmenuShowMode>;
showSubmenuMode: PropType<Record<string, any> | SubmenuShowMode>;
submenuDirection: PropType<SubmenuDirection>;
tabIndex: NumberConstructor;
visible: BooleanConstructor;
width: (NumberConstructor | StringConstructor)[];
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:accessKey"?: ((...args: any[]) => any) | undefined;
"onUpdate:activeStateEnabled"?: ((...args: any[]) => any) | undefined;
"onUpdate:dataSource"?: ((...args: any[]) => any) | undefined;
"onUpdate:disabled"?: ((...args: any[]) => any) | undefined;
"onUpdate:elementAttr"?: ((...args: any[]) => any) | undefined;
"onUpdate:focusStateEnabled"?: ((...args: any[]) => any) | undefined;
"onUpdate:height"?: ((...args: any[]) => any) | undefined;
"onUpdate:hint"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoverStateEnabled"?: ((...args: any[]) => any) | undefined;
"onUpdate:items"?: ((...args: any[]) => any) | undefined;
"onUpdate:itemTemplate"?: ((...args: any[]) => any) | undefined;
"onUpdate:onContentReady"?: ((...args: any[]) => any) | undefined;
"onUpdate:onDisposing"?: ((...args: any[]) => any) | undefined;
"onUpdate:onInitialized"?: ((...args: any[]) => any) | undefined;
"onUpdate:onItemClick"?: ((...args: any[]) => any) | undefined;
"onUpdate:onItemContextMenu"?: ((...args: any[]) => any) | undefined;
"onUpdate:onItemRendered"?: ((...args: any[]) => any) | undefined;
"onUpdate:onOptionChanged"?: ((...args: any[]) => any) | undefined;
"onUpdate:onSelectionChanged"?: ((...args: any[]) => any) | undefined;
"onUpdate:rtlEnabled"?: ((...args: any[]) => any) | undefined;
"onUpdate:selectedItem"?: ((...args: any[]) => any) | undefined;
"onUpdate:tabIndex"?: ((...args: any[]) => any) | undefined;
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
"onUpdate:width"?: ((...args: any[]) => any) | undefined;
"onUpdate:animation"?: ((...args: any[]) => any) | undefined;
"onUpdate:cssClass"?: ((...args: any[]) => any) | undefined;
"onUpdate:orientation"?: ((...args: any[]) => any) | undefined;
"onUpdate:selectionMode"?: ((...args: any[]) => any) | undefined;
"onUpdate:selectByClick"?: ((...args: any[]) => any) | undefined;
"onUpdate:displayExpr"?: ((...args: any[]) => any) | undefined;
"onUpdate:disabledExpr"?: ((...args: any[]) => any) | undefined;
"onUpdate:itemsExpr"?: ((...args: any[]) => any) | undefined;
"onUpdate:selectedExpr"?: ((...args: any[]) => any) | undefined;
"onUpdate:showSubmenuMode"?: ((...args: any[]) => any) | undefined;
"onUpdate:submenuDirection"?: ((...args: any[]) => any) | undefined;
"onUpdate:adaptivityEnabled"?: ((...args: any[]) => any) | undefined;
"onUpdate:hideSubmenuOnMouseLeave"?: ((...args: any[]) => any) | undefined;
"onUpdate:onSubmenuHidden"?: ((...args: any[]) => any) | undefined;
"onUpdate:onSubmenuHiding"?: ((...args: any[]) => any) | undefined;
"onUpdate:onSubmenuShowing"?: ((...args: any[]) => any) | undefined;
"onUpdate:onSubmenuShown"?: ((...args: any[]) => any) | undefined;
"onUpdate:showFirstSubmenuMode"?: ((...args: any[]) => any) | undefined;
}, {
activeStateEnabled: boolean;
disabled: boolean;
focusStateEnabled: boolean;
hoverStateEnabled: boolean;
rtlEnabled: boolean;
visible: boolean;
selectByClick: boolean;
adaptivityEnabled: boolean;
hideSubmenuOnMouseLeave: boolean;
}>;
declare const DxAnimation: import("@vue/runtime-core").DefineComponent<{
hide: PropType<string | number | Record<string, any> | AnimationConfig>;
show: PropType<string | number | Record<string, any> | AnimationConfig>;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:hide": null;
"update:show": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
hide: PropType<string | number | Record<string, any> | AnimationConfig>;
show: PropType<string | number | Record<string, any> | AnimationConfig>;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:hide"?: ((...args: any[]) => any) | undefined;
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
}, {}>;
declare const DxAt: import("@vue/runtime-core").DefineComponent<{
x: PropType<HorizontalAlignment>;
y: PropType<VerticalAlignment>;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:x": null;
"update:y": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
x: PropType<HorizontalAlignment>;
y: PropType<VerticalAlignment>;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:x"?: ((...args: any[]) => any) | undefined;
"onUpdate:y"?: ((...args: any[]) => any) | undefined;
}, {}>;
declare const DxBoundaryOffset: import("@vue/runtime-core").DefineComponent<{
x: NumberConstructor;
y: NumberConstructor;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:x": null;
"update:y": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
x: NumberConstructor;
y: NumberConstructor;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:x"?: ((...args: any[]) => any) | undefined;
"onUpdate:y"?: ((...args: any[]) => any) | undefined;
}, {}>;
declare const DxCollision: import("@vue/runtime-core").DefineComponent<{
x: PropType<CollisionResolution>;
y: PropType<CollisionResolution>;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:x": null;
"update:y": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
x: PropType<CollisionResolution>;
y: PropType<CollisionResolution>;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:x"?: ((...args: any[]) => any) | undefined;
"onUpdate:y"?: ((...args: any[]) => any) | undefined;
}, {}>;
declare const DxDelay: import("@vue/runtime-core").DefineComponent<{
hide: NumberConstructor;
show: NumberConstructor;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:hide": null;
"update:show": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
hide: NumberConstructor;
show: NumberConstructor;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:hide"?: ((...args: any[]) => any) | undefined;
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
}, {}>;
declare const DxFrom: import("@vue/runtime-core").DefineComponent<{
left: NumberConstructor;
opacity: NumberConstructor;
position: PropType<Record<string, any> | PositionConfig>;
scale: NumberConstructor;
top: NumberConstructor;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:left": null;
"update:opacity": null;
"update:position": null;
"update:scale": null;
"update:top": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
left: NumberConstructor;
opacity: NumberConstructor;
position: PropType<Record<string, any> | PositionConfig>;
scale: NumberConstructor;
top: NumberConstructor;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:position"?: ((...args: any[]) => any) | undefined;
"onUpdate:left"?: ((...args: any[]) => any) | undefined;
"onUpdate:opacity"?: ((...args: any[]) => any) | undefined;
"onUpdate:scale"?: ((...args: any[]) => any) | undefined;
"onUpdate:top"?: ((...args: any[]) => any) | undefined;
}, {}>;
declare const DxHide: import("@vue/runtime-core").DefineComponent<{
complete: PropType<($element: any, config: AnimationConfig) => void>;
delay: NumberConstructor;
direction: PropType<Direction>;
duration: NumberConstructor;
easing: StringConstructor;
from: PropType<Record<string, any> | AnimationState>;
staggerDelay: NumberConstructor;
start: PropType<($element: any, config: AnimationConfig) => void>;
to: PropType<Record<string, any> | AnimationState>;
type: PropType<AnimationType>;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:complete": null;
"update:delay": null;
"update:direction": null;
"update:duration": null;
"update:easing": null;
"update:from": null;
"update:staggerDelay": null;
"update:start": null;
"update:to": null;
"update:type": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
complete: PropType<($element: any, config: AnimationConfig) => void>;
delay: NumberConstructor;
direction: PropType<Direction>;
duration: NumberConstructor;
easing: StringConstructor;
from: PropType<Record<string, any> | AnimationState>;
staggerDelay: NumberConstructor;
start: PropType<($element: any, config: AnimationConfig) => void>;
to: PropType<Record<string, any> | AnimationState>;
type: PropType<AnimationType>;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:type"?: ((...args: any[]) => any) | undefined;
"onUpdate:complete"?: ((...args: any[]) => any) | undefined;
"onUpdate:delay"?: ((...args: any[]) => any) | undefined;
"onUpdate:direction"?: ((...args: any[]) => any) | undefined;
"onUpdate:duration"?: ((...args: any[]) => any) | undefined;
"onUpdate:easing"?: ((...args: any[]) => any) | undefined;
"onUpdate:from"?: ((...args: any[]) => any) | undefined;
"onUpdate:staggerDelay"?: ((...args: any[]) => any) | undefined;
"onUpdate:start"?: ((...args: any[]) => any) | undefined;
"onUpdate:to"?: ((...args: any[]) => any) | undefined;
}, {}>;
declare const DxItem: import("@vue/runtime-core").DefineComponent<{
beginGroup: BooleanConstructor;
closeMenuOnClick: BooleanConstructor;
disabled: BooleanConstructor;
icon: StringConstructor;
items: PropType<dxMenuItem[]>;
linkAttr: PropType<Record<string, any>>;
selectable: BooleanConstructor;
selected: BooleanConstructor;
template: {};
text: StringConstructor;
url: StringConstructor;
visible: BooleanConstructor;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:beginGroup": null;
"update:closeMenuOnClick": null;
"update:disabled": null;
"update:icon": null;
"update:items": null;
"update:linkAttr": null;
"update:selectable": null;
"update:selected": null;
"update:template": null;
"update:text": null;
"update:url": null;
"update:visible": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
beginGroup: BooleanConstructor;
closeMenuOnClick: BooleanConstructor;
disabled: BooleanConstructor;
icon: StringConstructor;
items: PropType<dxMenuItem[]>;
linkAttr: PropType<Record<string, any>>;
selectable: BooleanConstructor;
selected: BooleanConstructor;
template: {};
text: StringConstructor;
url: StringConstructor;
visible: BooleanConstructor;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:disabled"?: ((...args: any[]) => any) | undefined;
"onUpdate:items"?: ((...args: any[]) => any) | undefined;
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
"onUpdate:icon"?: ((...args: any[]) => any) | undefined;
"onUpdate:template"?: ((...args: any[]) => any) | undefined;
"onUpdate:text"?: ((...args: any[]) => any) | undefined;
"onUpdate:url"?: ((...args: any[]) => any) | undefined;
"onUpdate:beginGroup"?: ((...args: any[]) => any) | undefined;
"onUpdate:closeMenuOnClick"?: ((...args: any[]) => any) | undefined;
"onUpdate:selectable"?: ((...args: any[]) => any) | undefined;
"onUpdate:selected"?: ((...args: any[]) => any) | undefined;
"onUpdate:linkAttr"?: ((...args: any[]) => any) | undefined;
}, {
disabled: boolean;
visible: boolean;
beginGroup: boolean;
closeMenuOnClick: boolean;
selectable: boolean;
selected: boolean;
}>;
declare const DxMy: import("@vue/runtime-core").DefineComponent<{
x: PropType<HorizontalAlignment>;
y: PropType<VerticalAlignment>;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:x": null;
"update:y": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
x: PropType<HorizontalAlignment>;
y: PropType<VerticalAlignment>;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:x"?: ((...args: any[]) => any) | undefined;
"onUpdate:y"?: ((...args: any[]) => any) | undefined;
}, {}>;
declare const DxOffset: import("@vue/runtime-core").DefineComponent<{
x: NumberConstructor;
y: NumberConstructor;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:x": null;
"update:y": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
x: NumberConstructor;
y: NumberConstructor;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:x"?: ((...args: any[]) => any) | undefined;
"onUpdate:y"?: ((...args: any[]) => any) | undefined;
}, {}>;
declare const DxPosition: import("@vue/runtime-core").DefineComponent<{
at: PropType<Record<string, any> | PositionAlignment>;
boundary: {};
boundaryOffset: PropType<string | Record<string, any>>;
collision: PropType<Record<string, any> | CollisionResolutionCombination>;
my: PropType<Record<string, any> | PositionAlignment>;
of: {};
offset: PropType<string | Record<string, any>>;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:at": null;
"update:boundary": null;
"update:boundaryOffset": null;
"update:collision": null;
"update:my": null;
"update:of": null;
"update:offset": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
at: PropType<Record<string, any> | PositionAlignment>;
boundary: {};
boundaryOffset: PropType<string | Record<string, any>>;
collision: PropType<Record<string, any> | CollisionResolutionCombination>;
my: PropType<Record<string, any> | PositionAlignment>;
of: {};
offset: PropType<string | Record<string, any>>;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:at"?: ((...args: any[]) => any) | undefined;
"onUpdate:boundary"?: ((...args: any[]) => any) | undefined;
"onUpdate:boundaryOffset"?: ((...args: any[]) => any) | undefined;
"onUpdate:collision"?: ((...args: any[]) => any) | undefined;
"onUpdate:my"?: ((...args: any[]) => any) | undefined;
"onUpdate:of"?: ((...args: any[]) => any) | undefined;
"onUpdate:offset"?: ((...args: any[]) => any) | undefined;
}, {}>;
declare const DxShow: import("@vue/runtime-core").DefineComponent<{
complete: PropType<($element: any, config: AnimationConfig) => void>;
delay: NumberConstructor;
direction: PropType<Direction>;
duration: NumberConstructor;
easing: StringConstructor;
from: PropType<Record<string, any> | AnimationState>;
staggerDelay: NumberConstructor;
start: PropType<($element: any, config: AnimationConfig) => void>;
to: PropType<Record<string, any> | AnimationState>;
type: PropType<AnimationType>;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:complete": null;
"update:delay": null;
"update:direction": null;
"update:duration": null;
"update:easing": null;
"update:from": null;
"update:staggerDelay": null;
"update:start": null;
"update:to": null;
"update:type": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
complete: PropType<($element: any, config: AnimationConfig) => void>;
delay: NumberConstructor;
direction: PropType<Direction>;
duration: NumberConstructor;
easing: StringConstructor;
from: PropType<Record<string, any> | AnimationState>;
staggerDelay: NumberConstructor;
start: PropType<($element: any, config: AnimationConfig) => void>;
to: PropType<Record<string, any> | AnimationState>;
type: PropType<AnimationType>;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:type"?: ((...args: any[]) => any) | undefined;
"onUpdate:complete"?: ((...args: any[]) => any) | undefined;
"onUpdate:delay"?: ((...args: any[]) => any) | undefined;
"onUpdate:direction"?: ((...args: any[]) => any) | undefined;
"onUpdate:duration"?: ((...args: any[]) => any) | undefined;
"onUpdate:easing"?: ((...args: any[]) => any) | undefined;
"onUpdate:from"?: ((...args: any[]) => any) | undefined;
"onUpdate:staggerDelay"?: ((...args: any[]) => any) | undefined;
"onUpdate:start"?: ((...args: any[]) => any) | undefined;
"onUpdate:to"?: ((...args: any[]) => any) | undefined;
}, {}>;
declare const DxShowFirstSubmenuMode: import("@vue/runtime-core").DefineComponent<{
delay: PropType<number | Record<string, any>>;
name: PropType<SubmenuShowMode>;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:delay": null;
"update:name": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
delay: PropType<number | Record<string, any>>;
name: PropType<SubmenuShowMode>;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:name"?: ((...args: any[]) => any) | undefined;
"onUpdate:delay"?: ((...args: any[]) => any) | undefined;
}, {}>;
declare const DxShowSubmenuMode: import("@vue/runtime-core").DefineComponent<{
delay: PropType<number | Record<string, any>>;
name: PropType<SubmenuShowMode>;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:delay": null;
"update:name": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
delay: PropType<number | Record<string, any>>;
name: PropType<SubmenuShowMode>;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:name"?: ((...args: any[]) => any) | undefined;
"onUpdate:delay"?: ((...args: any[]) => any) | undefined;
}, {}>;
declare const DxTo: import("@vue/runtime-core").DefineComponent<{
left: NumberConstructor;
opacity: NumberConstructor;
position: PropType<Record<string, any> | PositionConfig>;
scale: NumberConstructor;
top: NumberConstructor;
}, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {
"update:isActive": null;
"update:hoveredElement": null;
"update:left": null;
"update:opacity": null;
"update:position": null;
"update:scale": null;
"update:top": null;
}, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
left: NumberConstructor;
opacity: NumberConstructor;
position: PropType<Record<string, any> | PositionConfig>;
scale: NumberConstructor;
top: NumberConstructor;
}>> & {
"onUpdate:isActive"?: ((...args: any[]) => any) | undefined;
"onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined;
"onUpdate:position"?: ((...args: any[]) => any) | undefined;
"onUpdate:left"?: ((...args: any[]) => any) | undefined;
"onUpdate:opacity"?: ((...args: any[]) => any) | undefined;
"onUpdate:scale"?: ((...args: any[]) => any) | undefined;
"onUpdate:top"?: ((...args: any[]) => any) | undefined;
}, {}>;
export default DxMenu;
export { DxMenu, DxAnimation, DxAt, DxBoundaryOffset, DxCollision, DxDelay, DxFrom, DxHide, DxItem, DxMy, DxOffset, DxPosition, DxShow, DxShowFirstSubmenuMode, DxShowSubmenuMode, DxTo };
import type * as DxMenuTypes from "devextreme/ui/menu_types";
export { DxMenuTypes };