UNPKG

devextreme-vue

Version:

DevExtreme UI and Visualization Components for Vue

999 lines (998 loc) • 121 kB
/*! * devextreme-vue * Version: 25.2.7 * Build date: Tue May 05 2026 * * Copyright (c) 2012 - 2026 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 */ import { PropType } from "vue"; import Scheduler, { Properties } from "devextreme/ui/scheduler"; import DataSource from "devextreme/data/data_source"; import dxScheduler from "devextreme/ui/scheduler"; import dxSortable from "devextreme/ui/sortable"; import dxDraggable from "devextreme/ui/draggable"; import { AllDayPanelMode, ViewType, dxSchedulerAppointment, CellAppointmentsLimit, AppointmentAddedEvent, AppointmentAddingEvent, AppointmentClickEvent, AppointmentContextMenuEvent, AppointmentDblClickEvent, AppointmentDeletedEvent, AppointmentDeletingEvent, AppointmentFormOpeningEvent, AppointmentRenderedEvent, AppointmentTooltipShowingEvent, AppointmentUpdatedEvent, AppointmentUpdatingEvent, CellClickEvent, CellContextMenuEvent, ContentReadyEvent, DisposingEvent, InitializedEvent, OptionChangedEvent, RecurrenceEditMode, dxSchedulerScrolling, AppointmentFormIconsShowMode, SchedulerPredefinedToolbarItem, DateNavigatorItemProperties, SchedulerPredefinedDateNavigatorItem } from "devextreme/ui/scheduler"; import { DataSourceOptions } from "devextreme/common/data"; import { Store } from "devextreme/data/store"; import { FirstDayOfWeek, ValidationRuleType, HorizontalAlignment, VerticalAlignment, ButtonStyle, ComparisonOperator, ToolbarItemLocation, ToolbarItemComponent, SingleMultipleOrNone, ScrollMode, TabsIconPosition, TabsStyle, Position, Orientation } from "devextreme/common"; import { event } from "devextreme/events/events.types"; import { dxButtonOptions, ClickEvent, ContentReadyEvent as ButtonContentReadyEvent, DisposingEvent as ButtonDisposingEvent, InitializedEvent as ButtonInitializedEvent, OptionChangedEvent as ButtonOptionChangedEvent } from "devextreme/ui/button"; import { FormItemType, dxFormSimpleItem, dxFormGroupItem, dxFormTabbedItem, dxFormEmptyItem, dxFormButtonItem, LabelLocation, FormLabelMode, ContentReadyEvent as FormContentReadyEvent, DisposingEvent as FormDisposingEvent, EditorEnterKeyEvent, FieldDataChangedEvent, InitializedEvent as FormInitializedEvent, OptionChangedEvent as FormOptionChangedEvent, SmartPastedEvent, SmartPastingEvent, FormItemComponent } from "devextreme/ui/form"; import { AIIntegration } from "devextreme/common/ai-integration"; import { dxTabPanelOptions, ContentReadyEvent as TabPanelContentReadyEvent, DisposingEvent as TabPanelDisposingEvent, InitializedEvent as TabPanelInitializedEvent, ItemClickEvent as TabPanelItemClickEvent, ItemContextMenuEvent, ItemHoldEvent, ItemRenderedEvent, OptionChangedEvent as TabPanelOptionChangedEvent, SelectionChangedEvent as TabPanelSelectionChangedEvent, SelectionChangingEvent, TitleClickEvent, TitleHoldEvent, TitleRenderedEvent } from "devextreme/ui/tab_panel"; import { LocateInMenuMode, ShowTextMode } from "devextreme/ui/toolbar"; import { dxButtonGroupOptions, dxButtonGroupItem, ContentReadyEvent as ButtonGroupContentReadyEvent, DisposingEvent as ButtonGroupDisposingEvent, InitializedEvent as ButtonGroupInitializedEvent, ItemClickEvent, OptionChangedEvent as ButtonGroupOptionChangedEvent, SelectionChangedEvent } from "devextreme/ui/button_group"; import * as CommonTypes from "devextreme/common"; type AccessibleOptions = Pick<Properties, "accessKey" | "adaptivityEnabled" | "allDayExpr" | "allDayPanelMode" | "appointmentCollectorTemplate" | "appointmentDragging" | "appointmentTemplate" | "appointmentTooltipTemplate" | "cellDuration" | "crossScrollingEnabled" | "currentDate" | "currentView" | "customizeDateNavigatorText" | "dataCellTemplate" | "dataSource" | "dateCellTemplate" | "dateSerializationFormat" | "descriptionExpr" | "disabled" | "editing" | "elementAttr" | "endDateExpr" | "endDateTimeZoneExpr" | "endDayHour" | "firstDayOfWeek" | "focusStateEnabled" | "groupByDate" | "groups" | "height" | "hint" | "indicatorUpdateInterval" | "max" | "maxAppointmentsPerCell" | "min" | "noDataText" | "offset" | "onAppointmentAdded" | "onAppointmentAdding" | "onAppointmentClick" | "onAppointmentContextMenu" | "onAppointmentDblClick" | "onAppointmentDeleted" | "onAppointmentDeleting" | "onAppointmentFormOpening" | "onAppointmentRendered" | "onAppointmentTooltipShowing" | "onAppointmentUpdated" | "onAppointmentUpdating" | "onCellClick" | "onCellContextMenu" | "onContentReady" | "onDisposing" | "onInitialized" | "onOptionChanged" | "recurrenceEditMode" | "recurrenceExceptionExpr" | "recurrenceRuleExpr" | "remoteFiltering" | "resourceCellTemplate" | "resources" | "rtlEnabled" | "scrolling" | "selectedCellData" | "shadeUntilCurrentTime" | "showAllDayPanel" | "showCurrentTimeIndicator" | "startDateExpr" | "startDateTimeZoneExpr" | "startDayHour" | "tabIndex" | "textExpr" | "timeCellTemplate" | "timeZone" | "toolbar" | "useDropDownViewSwitcher" | "views" | "visible" | "width">; interface DxScheduler extends AccessibleOptions { readonly instance?: Scheduler; } declare const DxScheduler: import("vue").DefineComponent<{ accessKey: StringConstructor; adaptivityEnabled: BooleanConstructor; allDayExpr: StringConstructor; allDayPanelMode: PropType<AllDayPanelMode>; appointmentCollectorTemplate: {}; appointmentDragging: PropType<Record<string, any>>; appointmentTemplate: {}; appointmentTooltipTemplate: {}; cellDuration: NumberConstructor; crossScrollingEnabled: BooleanConstructor; currentDate: (DateConstructor | NumberConstructor | StringConstructor)[]; currentView: PropType<string>; customizeDateNavigatorText: PropType<(info: { endDate: Date; startDate: Date; text: string; }) => string>; dataCellTemplate: {}; dataSource: PropType<string | Record<string, any> | DataSource<any, any> | DataSourceOptions<any, any, any, any> | Store<any, any> | dxSchedulerAppointment[] | null>; dateCellTemplate: {}; dateSerializationFormat: StringConstructor; descriptionExpr: StringConstructor; disabled: BooleanConstructor; editing: PropType<boolean | Record<string, any>>; elementAttr: PropType<Record<string, any>>; endDateExpr: StringConstructor; endDateTimeZoneExpr: StringConstructor; endDayHour: NumberConstructor; firstDayOfWeek: PropType<FirstDayOfWeek>; focusStateEnabled: BooleanConstructor; groupByDate: BooleanConstructor; groups: PropType<string[]>; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; indicatorUpdateInterval: NumberConstructor; max: (DateConstructor | NumberConstructor | StringConstructor)[]; maxAppointmentsPerCell: PropType<number | CellAppointmentsLimit>; min: (DateConstructor | NumberConstructor | StringConstructor)[]; noDataText: StringConstructor; offset: NumberConstructor; onAppointmentAdded: PropType<(e: AppointmentAddedEvent) => void>; onAppointmentAdding: PropType<(e: AppointmentAddingEvent) => void>; onAppointmentClick: PropType<(e: AppointmentClickEvent) => void>; onAppointmentContextMenu: PropType<(e: AppointmentContextMenuEvent) => void>; onAppointmentDblClick: PropType<(e: AppointmentDblClickEvent) => void>; onAppointmentDeleted: PropType<(e: AppointmentDeletedEvent) => void>; onAppointmentDeleting: PropType<(e: AppointmentDeletingEvent) => void>; onAppointmentFormOpening: PropType<(e: AppointmentFormOpeningEvent) => void>; onAppointmentRendered: PropType<(e: AppointmentRenderedEvent) => void>; onAppointmentTooltipShowing: PropType<(e: AppointmentTooltipShowingEvent) => void>; onAppointmentUpdated: PropType<(e: AppointmentUpdatedEvent) => void>; onAppointmentUpdating: PropType<(e: AppointmentUpdatingEvent) => void>; onCellClick: PropType<(e: CellClickEvent) => void>; onCellContextMenu: PropType<(e: CellContextMenuEvent) => void>; onContentReady: PropType<(e: ContentReadyEvent) => void>; onDisposing: PropType<(e: DisposingEvent) => void>; onInitialized: PropType<(e: InitializedEvent) => void>; onOptionChanged: PropType<(e: OptionChangedEvent) => void>; recurrenceEditMode: PropType<RecurrenceEditMode>; recurrenceExceptionExpr: StringConstructor; recurrenceRuleExpr: StringConstructor; remoteFiltering: BooleanConstructor; resourceCellTemplate: {}; resources: PropType<Record<string, any>[]>; rtlEnabled: BooleanConstructor; scrolling: PropType<dxSchedulerScrolling>; selectedCellData: PropType<any[]>; shadeUntilCurrentTime: BooleanConstructor; showAllDayPanel: BooleanConstructor; showCurrentTimeIndicator: BooleanConstructor; startDateExpr: StringConstructor; startDateTimeZoneExpr: StringConstructor; startDayHour: NumberConstructor; tabIndex: NumberConstructor; textExpr: StringConstructor; timeCellTemplate: {}; timeZone: StringConstructor; toolbar: PropType<Record<string, any> | DxSchedulerTypes.Toolbar>; useDropDownViewSwitcher: BooleanConstructor; views: PropType<(string | Record<string, any>)[]>; visible: BooleanConstructor; width: (NumberConstructor | StringConstructor)[]; }, unknown, unknown, { instance(): Scheduler; }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:accessKey": null; "update:adaptivityEnabled": null; "update:allDayExpr": null; "update:allDayPanelMode": null; "update:appointmentCollectorTemplate": null; "update:appointmentDragging": null; "update:appointmentTemplate": null; "update:appointmentTooltipTemplate": null; "update:cellDuration": null; "update:crossScrollingEnabled": null; "update:currentDate": null; "update:currentView": null; "update:customizeDateNavigatorText": null; "update:dataCellTemplate": null; "update:dataSource": null; "update:dateCellTemplate": null; "update:dateSerializationFormat": null; "update:descriptionExpr": null; "update:disabled": null; "update:editing": null; "update:elementAttr": null; "update:endDateExpr": null; "update:endDateTimeZoneExpr": null; "update:endDayHour": null; "update:firstDayOfWeek": null; "update:focusStateEnabled": null; "update:groupByDate": null; "update:groups": null; "update:height": null; "update:hint": null; "update:indicatorUpdateInterval": null; "update:max": null; "update:maxAppointmentsPerCell": null; "update:min": null; "update:noDataText": null; "update:offset": null; "update:onAppointmentAdded": null; "update:onAppointmentAdding": null; "update:onAppointmentClick": null; "update:onAppointmentContextMenu": null; "update:onAppointmentDblClick": null; "update:onAppointmentDeleted": null; "update:onAppointmentDeleting": null; "update:onAppointmentFormOpening": null; "update:onAppointmentRendered": null; "update:onAppointmentTooltipShowing": null; "update:onAppointmentUpdated": null; "update:onAppointmentUpdating": null; "update:onCellClick": null; "update:onCellContextMenu": null; "update:onContentReady": null; "update:onDisposing": null; "update:onInitialized": null; "update:onOptionChanged": null; "update:recurrenceEditMode": null; "update:recurrenceExceptionExpr": null; "update:recurrenceRuleExpr": null; "update:remoteFiltering": null; "update:resourceCellTemplate": null; "update:resources": null; "update:rtlEnabled": null; "update:scrolling": null; "update:selectedCellData": null; "update:shadeUntilCurrentTime": null; "update:showAllDayPanel": null; "update:showCurrentTimeIndicator": null; "update:startDateExpr": null; "update:startDateTimeZoneExpr": null; "update:startDayHour": null; "update:tabIndex": null; "update:textExpr": null; "update:timeCellTemplate": null; "update:timeZone": null; "update:toolbar": null; "update:useDropDownViewSwitcher": null; "update:views": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ accessKey: StringConstructor; adaptivityEnabled: BooleanConstructor; allDayExpr: StringConstructor; allDayPanelMode: PropType<AllDayPanelMode>; appointmentCollectorTemplate: {}; appointmentDragging: PropType<Record<string, any>>; appointmentTemplate: {}; appointmentTooltipTemplate: {}; cellDuration: NumberConstructor; crossScrollingEnabled: BooleanConstructor; currentDate: (DateConstructor | NumberConstructor | StringConstructor)[]; currentView: PropType<string>; customizeDateNavigatorText: PropType<(info: { endDate: Date; startDate: Date; text: string; }) => string>; dataCellTemplate: {}; dataSource: PropType<string | Record<string, any> | DataSource<any, any> | DataSourceOptions<any, any, any, any> | Store<any, any> | dxSchedulerAppointment[] | null>; dateCellTemplate: {}; dateSerializationFormat: StringConstructor; descriptionExpr: StringConstructor; disabled: BooleanConstructor; editing: PropType<boolean | Record<string, any>>; elementAttr: PropType<Record<string, any>>; endDateExpr: StringConstructor; endDateTimeZoneExpr: StringConstructor; endDayHour: NumberConstructor; firstDayOfWeek: PropType<FirstDayOfWeek>; focusStateEnabled: BooleanConstructor; groupByDate: BooleanConstructor; groups: PropType<string[]>; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; indicatorUpdateInterval: NumberConstructor; max: (DateConstructor | NumberConstructor | StringConstructor)[]; maxAppointmentsPerCell: PropType<number | CellAppointmentsLimit>; min: (DateConstructor | NumberConstructor | StringConstructor)[]; noDataText: StringConstructor; offset: NumberConstructor; onAppointmentAdded: PropType<(e: AppointmentAddedEvent) => void>; onAppointmentAdding: PropType<(e: AppointmentAddingEvent) => void>; onAppointmentClick: PropType<(e: AppointmentClickEvent) => void>; onAppointmentContextMenu: PropType<(e: AppointmentContextMenuEvent) => void>; onAppointmentDblClick: PropType<(e: AppointmentDblClickEvent) => void>; onAppointmentDeleted: PropType<(e: AppointmentDeletedEvent) => void>; onAppointmentDeleting: PropType<(e: AppointmentDeletingEvent) => void>; onAppointmentFormOpening: PropType<(e: AppointmentFormOpeningEvent) => void>; onAppointmentRendered: PropType<(e: AppointmentRenderedEvent) => void>; onAppointmentTooltipShowing: PropType<(e: AppointmentTooltipShowingEvent) => void>; onAppointmentUpdated: PropType<(e: AppointmentUpdatedEvent) => void>; onAppointmentUpdating: PropType<(e: AppointmentUpdatingEvent) => void>; onCellClick: PropType<(e: CellClickEvent) => void>; onCellContextMenu: PropType<(e: CellContextMenuEvent) => void>; onContentReady: PropType<(e: ContentReadyEvent) => void>; onDisposing: PropType<(e: DisposingEvent) => void>; onInitialized: PropType<(e: InitializedEvent) => void>; onOptionChanged: PropType<(e: OptionChangedEvent) => void>; recurrenceEditMode: PropType<RecurrenceEditMode>; recurrenceExceptionExpr: StringConstructor; recurrenceRuleExpr: StringConstructor; remoteFiltering: BooleanConstructor; resourceCellTemplate: {}; resources: PropType<Record<string, any>[]>; rtlEnabled: BooleanConstructor; scrolling: PropType<dxSchedulerScrolling>; selectedCellData: PropType<any[]>; shadeUntilCurrentTime: BooleanConstructor; showAllDayPanel: BooleanConstructor; showCurrentTimeIndicator: BooleanConstructor; startDateExpr: StringConstructor; startDateTimeZoneExpr: StringConstructor; startDayHour: NumberConstructor; tabIndex: NumberConstructor; textExpr: StringConstructor; timeCellTemplate: {}; timeZone: StringConstructor; toolbar: PropType<Record<string, any> | DxSchedulerTypes.Toolbar>; useDropDownViewSwitcher: BooleanConstructor; views: PropType<(string | Record<string, any>)[]>; visible: BooleanConstructor; width: (NumberConstructor | StringConstructor)[]; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:disabled"?: ((...args: any[]) => any) | undefined; "onUpdate:elementAttr"?: ((...args: any[]) => any) | undefined; "onUpdate:onDisposing"?: ((...args: any[]) => any) | undefined; "onUpdate:onInitialized"?: ((...args: any[]) => any) | undefined; "onUpdate:onOptionChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:rtlEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:dataSource"?: ((...args: any[]) => any) | undefined; "onUpdate:offset"?: ((...args: any[]) => any) | undefined; "onUpdate:max"?: ((...args: any[]) => any) | undefined; "onUpdate:min"?: ((...args: any[]) => any) | undefined; "onUpdate:onContentReady"?: ((...args: any[]) => any) | undefined; "onUpdate:accessKey"?: ((...args: any[]) => any) | undefined; "onUpdate:focusStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:hint"?: ((...args: any[]) => any) | undefined; "onUpdate:noDataText"?: ((...args: any[]) => any) | undefined; "onUpdate:tabIndex"?: ((...args: any[]) => any) | undefined; "onUpdate:dateSerializationFormat"?: ((...args: any[]) => any) | undefined; "onUpdate:editing"?: ((...args: any[]) => any) | undefined; "onUpdate:onCellClick"?: ((...args: any[]) => any) | undefined; "onUpdate:scrolling"?: ((...args: any[]) => any) | undefined; "onUpdate:toolbar"?: ((...args: any[]) => any) | undefined; "onUpdate:adaptivityEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:allDayExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:allDayPanelMode"?: ((...args: any[]) => any) | undefined; "onUpdate:appointmentCollectorTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:appointmentDragging"?: ((...args: any[]) => any) | undefined; "onUpdate:appointmentTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:appointmentTooltipTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:cellDuration"?: ((...args: any[]) => any) | undefined; "onUpdate:crossScrollingEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:currentDate"?: ((...args: any[]) => any) | undefined; "onUpdate:currentView"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeDateNavigatorText"?: ((...args: any[]) => any) | undefined; "onUpdate:dataCellTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:dateCellTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:descriptionExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:endDateExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:endDateTimeZoneExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:endDayHour"?: ((...args: any[]) => any) | undefined; "onUpdate:firstDayOfWeek"?: ((...args: any[]) => any) | undefined; "onUpdate:groupByDate"?: ((...args: any[]) => any) | undefined; "onUpdate:groups"?: ((...args: any[]) => any) | undefined; "onUpdate:indicatorUpdateInterval"?: ((...args: any[]) => any) | undefined; "onUpdate:maxAppointmentsPerCell"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentAdded"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentAdding"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentClick"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentContextMenu"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentDblClick"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentDeleted"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentDeleting"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentFormOpening"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentRendered"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentTooltipShowing"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentUpdated"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentUpdating"?: ((...args: any[]) => any) | undefined; "onUpdate:onCellContextMenu"?: ((...args: any[]) => any) | undefined; "onUpdate:recurrenceEditMode"?: ((...args: any[]) => any) | undefined; "onUpdate:recurrenceExceptionExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:recurrenceRuleExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:remoteFiltering"?: ((...args: any[]) => any) | undefined; "onUpdate:resourceCellTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:resources"?: ((...args: any[]) => any) | undefined; "onUpdate:selectedCellData"?: ((...args: any[]) => any) | undefined; "onUpdate:shadeUntilCurrentTime"?: ((...args: any[]) => any) | undefined; "onUpdate:showAllDayPanel"?: ((...args: any[]) => any) | undefined; "onUpdate:showCurrentTimeIndicator"?: ((...args: any[]) => any) | undefined; "onUpdate:startDateExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:startDateTimeZoneExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:startDayHour"?: ((...args: any[]) => any) | undefined; "onUpdate:textExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:timeCellTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:timeZone"?: ((...args: any[]) => any) | undefined; "onUpdate:useDropDownViewSwitcher"?: ((...args: any[]) => any) | undefined; "onUpdate:views"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; rtlEnabled: boolean; visible: boolean; focusStateEnabled: boolean; adaptivityEnabled: boolean; crossScrollingEnabled: boolean; groupByDate: boolean; remoteFiltering: boolean; shadeUntilCurrentTime: boolean; showAllDayPanel: boolean; showCurrentTimeIndicator: boolean; useDropDownViewSwitcher: boolean; }>; declare const DxAIOptions: import("vue").DefineComponent<{ disabled: BooleanConstructor; instruction: StringConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:disabled": null; "update:instruction": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ disabled: BooleanConstructor; instruction: StringConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:disabled"?: ((...args: any[]) => any) | undefined; "onUpdate:instruction"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; }>; declare const DxAppointmentDragging: import("vue").DefineComponent<{ autoScroll: BooleanConstructor; data: {}; group: StringConstructor; onAdd: PropType<(e: { component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; }) => void>; onDragEnd: PropType<(e: { cancel: boolean; component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; toItemData: any; }) => void>; onDragMove: PropType<(e: { cancel: boolean; component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; }) => void>; onDragStart: PropType<(e: { cancel: boolean; component: dxScheduler; event: event; fromData: any; itemData: any; itemElement: any; }) => void>; onRemove: PropType<(e: { component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; }) => void>; scrollSensitivity: NumberConstructor; scrollSpeed: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:autoScroll": null; "update:data": null; "update:group": null; "update:onAdd": null; "update:onDragEnd": null; "update:onDragMove": null; "update:onDragStart": null; "update:onRemove": null; "update:scrollSensitivity": null; "update:scrollSpeed": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ autoScroll: BooleanConstructor; data: {}; group: StringConstructor; onAdd: PropType<(e: { component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; }) => void>; onDragEnd: PropType<(e: { cancel: boolean; component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; toItemData: any; }) => void>; onDragMove: PropType<(e: { cancel: boolean; component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; }) => void>; onDragStart: PropType<(e: { cancel: boolean; component: dxScheduler; event: event; fromData: any; itemData: any; itemElement: any; }) => void>; onRemove: PropType<(e: { component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; }) => void>; scrollSensitivity: NumberConstructor; scrollSpeed: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:data"?: ((...args: any[]) => any) | undefined; "onUpdate:group"?: ((...args: any[]) => any) | undefined; "onUpdate:autoScroll"?: ((...args: any[]) => any) | undefined; "onUpdate:onAdd"?: ((...args: any[]) => any) | undefined; "onUpdate:onDragEnd"?: ((...args: any[]) => any) | undefined; "onUpdate:onDragMove"?: ((...args: any[]) => any) | undefined; "onUpdate:onDragStart"?: ((...args: any[]) => any) | undefined; "onUpdate:onRemove"?: ((...args: any[]) => any) | undefined; "onUpdate:scrollSensitivity"?: ((...args: any[]) => any) | undefined; "onUpdate:scrollSpeed"?: ((...args: any[]) => any) | undefined; }, { autoScroll: boolean; }>; declare const DxAsyncRule: import("vue").DefineComponent<{ ignoreEmptyValue: BooleanConstructor; message: StringConstructor; reevaluate: BooleanConstructor; type: PropType<ValidationRuleType>; validationCallback: PropType<(options: { column: Record<string, any>; data: Record<string, any>; formItem: Record<string, any>; rule: Record<string, any>; validator: Record<string, any>; value: any; }) => any>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:ignoreEmptyValue": null; "update:message": null; "update:reevaluate": null; "update:type": null; "update:validationCallback": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ ignoreEmptyValue: BooleanConstructor; message: StringConstructor; reevaluate: BooleanConstructor; type: PropType<ValidationRuleType>; validationCallback: PropType<(options: { column: Record<string, any>; data: Record<string, any>; formItem: Record<string, any>; rule: Record<string, any>; validator: Record<string, any>; value: any; }) => any>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:ignoreEmptyValue"?: ((...args: any[]) => any) | undefined; "onUpdate:message"?: ((...args: any[]) => any) | undefined; "onUpdate:reevaluate"?: ((...args: any[]) => any) | undefined; "onUpdate:validationCallback"?: ((...args: any[]) => any) | undefined; }, { ignoreEmptyValue: boolean; reevaluate: boolean; }>; declare const DxButtonItem: import("vue").DefineComponent<{ buttonOptions: PropType<Record<string, any> | dxButtonOptions>; colSpan: NumberConstructor; cssClass: StringConstructor; horizontalAlignment: PropType<HorizontalAlignment>; itemType: PropType<FormItemType>; name: PropType<string>; verticalAlignment: PropType<VerticalAlignment>; visible: BooleanConstructor; visibleIndex: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:buttonOptions": null; "update:colSpan": null; "update:cssClass": null; "update:horizontalAlignment": null; "update:itemType": null; "update:name": null; "update:verticalAlignment": null; "update:visible": null; "update:visibleIndex": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ buttonOptions: PropType<Record<string, any> | dxButtonOptions>; colSpan: NumberConstructor; cssClass: StringConstructor; horizontalAlignment: PropType<HorizontalAlignment>; itemType: PropType<FormItemType>; name: PropType<string>; verticalAlignment: PropType<VerticalAlignment>; visible: BooleanConstructor; visibleIndex: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:cssClass"?: ((...args: any[]) => any) | undefined; "onUpdate:buttonOptions"?: ((...args: any[]) => any) | undefined; "onUpdate:colSpan"?: ((...args: any[]) => any) | undefined; "onUpdate:itemType"?: ((...args: any[]) => any) | undefined; "onUpdate:visibleIndex"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxButtonOptions: import("vue").DefineComponent<{ accessKey: StringConstructor; activeStateEnabled: BooleanConstructor; disabled: BooleanConstructor; elementAttr: PropType<Record<string, any>>; focusStateEnabled: BooleanConstructor; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; icon: StringConstructor; onClick: PropType<(e: ClickEvent) => void>; onContentReady: PropType<(e: ButtonContentReadyEvent) => void>; onDisposing: PropType<(e: ButtonDisposingEvent) => void>; onInitialized: PropType<(e: ButtonInitializedEvent) => void>; onOptionChanged: PropType<(e: ButtonOptionChangedEvent) => void>; rtlEnabled: BooleanConstructor; stylingMode: PropType<ButtonStyle>; tabIndex: NumberConstructor; template: {}; text: StringConstructor; type: PropType<string>; useSubmitBehavior: BooleanConstructor; validationGroup: StringConstructor; visible: BooleanConstructor; width: (NumberConstructor | StringConstructor)[]; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:accessKey": null; "update:activeStateEnabled": null; "update:disabled": null; "update:elementAttr": null; "update:focusStateEnabled": null; "update:height": null; "update:hint": null; "update:hoverStateEnabled": null; "update:icon": null; "update:onClick": null; "update:onContentReady": null; "update:onDisposing": null; "update:onInitialized": null; "update:onOptionChanged": null; "update:rtlEnabled": null; "update:stylingMode": null; "update:tabIndex": null; "update:template": null; "update:text": null; "update:type": null; "update:useSubmitBehavior": null; "update:validationGroup": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ accessKey: StringConstructor; activeStateEnabled: BooleanConstructor; disabled: BooleanConstructor; elementAttr: PropType<Record<string, any>>; focusStateEnabled: BooleanConstructor; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; icon: StringConstructor; onClick: PropType<(e: ClickEvent) => void>; onContentReady: PropType<(e: ButtonContentReadyEvent) => void>; onDisposing: PropType<(e: ButtonDisposingEvent) => void>; onInitialized: PropType<(e: ButtonInitializedEvent) => void>; onOptionChanged: PropType<(e: ButtonOptionChangedEvent) => void>; rtlEnabled: BooleanConstructor; stylingMode: PropType<ButtonStyle>; tabIndex: NumberConstructor; template: {}; text: StringConstructor; type: PropType<string>; useSubmitBehavior: BooleanConstructor; validationGroup: StringConstructor; visible: BooleanConstructor; width: (NumberConstructor | StringConstructor)[]; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:disabled"?: ((...args: any[]) => any) | undefined; "onUpdate:elementAttr"?: ((...args: any[]) => any) | undefined; "onUpdate:onClick"?: ((...args: any[]) => any) | undefined; "onUpdate:onDisposing"?: ((...args: any[]) => any) | undefined; "onUpdate:onInitialized"?: ((...args: any[]) => any) | undefined; "onUpdate:onOptionChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:rtlEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:template"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:validationGroup"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:onContentReady"?: ((...args: any[]) => any) | undefined; "onUpdate:accessKey"?: ((...args: any[]) => any) | undefined; "onUpdate:activeStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:focusStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:hint"?: ((...args: any[]) => any) | undefined; "onUpdate:tabIndex"?: ((...args: any[]) => any) | undefined; "onUpdate:icon"?: ((...args: any[]) => any) | undefined; "onUpdate:stylingMode"?: ((...args: any[]) => any) | undefined; "onUpdate:useSubmitBehavior"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; rtlEnabled: boolean; visible: boolean; hoverStateEnabled: boolean; activeStateEnabled: boolean; focusStateEnabled: boolean; useSubmitBehavior: boolean; }>; declare const DxColCountByScreen: import("vue").DefineComponent<{ lg: NumberConstructor; md: NumberConstructor; sm: NumberConstructor; xs: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:lg": null; "update:md": null; "update:sm": null; "update:xs": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ lg: NumberConstructor; md: NumberConstructor; sm: NumberConstructor; xs: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:lg"?: ((...args: any[]) => any) | undefined; "onUpdate:md"?: ((...args: any[]) => any) | undefined; "onUpdate:sm"?: ((...args: any[]) => any) | undefined; "onUpdate:xs"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxCompareRule: import("vue").DefineComponent<{ comparisonTarget: PropType<() => any>; comparisonType: PropType<ComparisonOperator>; ignoreEmptyValue: BooleanConstructor; message: StringConstructor; type: PropType<ValidationRuleType>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:comparisonTarget": null; "update:comparisonType": null; "update:ignoreEmptyValue": null; "update:message": null; "update:type": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ comparisonTarget: PropType<() => any>; comparisonType: PropType<ComparisonOperator>; ignoreEmptyValue: BooleanConstructor; message: StringConstructor; type: PropType<ValidationRuleType>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:ignoreEmptyValue"?: ((...args: any[]) => any) | undefined; "onUpdate:message"?: ((...args: any[]) => any) | undefined; "onUpdate:comparisonTarget"?: ((...args: any[]) => any) | undefined; "onUpdate:comparisonType"?: ((...args: any[]) => any) | undefined; }, { ignoreEmptyValue: boolean; }>; declare const DxCustomRule: import("vue").DefineComponent<{ ignoreEmptyValue: BooleanConstructor; message: StringConstructor; reevaluate: BooleanConstructor; type: PropType<ValidationRuleType>; validationCallback: PropType<(options: { column: Record<string, any>; data: Record<string, any>; formItem: Record<string, any>; rule: Record<string, any>; validator: Record<string, any>; value: any; }) => boolean>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:ignoreEmptyValue": null; "update:message": null; "update:reevaluate": null; "update:type": null; "update:validationCallback": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ ignoreEmptyValue: BooleanConstructor; message: StringConstructor; reevaluate: BooleanConstructor; type: PropType<ValidationRuleType>; validationCallback: PropType<(options: { column: Record<string, any>; data: Record<string, any>; formItem: Record<string, any>; rule: Record<string, any>; validator: Record<string, any>; value: any; }) => boolean>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:ignoreEmptyValue"?: ((...args: any[]) => any) | undefined; "onUpdate:message"?: ((...args: any[]) => any) | undefined; "onUpdate:reevaluate"?: ((...args: any[]) => any) | undefined; "onUpdate:validationCallback"?: ((...args: any[]) => any) | undefined; }, { ignoreEmptyValue: boolean; reevaluate: boolean; }>; declare const DxEditing: import("vue").DefineComponent<{ allowAdding: BooleanConstructor; allowDeleting: BooleanConstructor; allowDragging: BooleanConstructor; allowResizing: BooleanConstructor; allowTimeZoneEditing: BooleanConstructor; allowUpdating: BooleanConstructor; form: {}; popup: PropType<Record<string, any>>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:allowAdding": null; "update:allowDeleting": null; "update:allowDragging": null; "update:allowResizing": null; "update:allowTimeZoneEditing": null; "update:allowUpdating": null; "update:form": null; "update:popup": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ allowAdding: BooleanConstructor; allowDeleting: BooleanConstructor; allowDragging: BooleanConstructor; allowResizing: BooleanConstructor; allowTimeZoneEditing: BooleanConstructor; allowUpdating: BooleanConstructor; form: {}; popup: PropType<Record<string, any>>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:allowDragging"?: ((...args: any[]) => any) | undefined; "onUpdate:popup"?: ((...args: any[]) => any) | undefined; "onUpdate:allowResizing"?: ((...args: any[]) => any) | undefined; "onUpdate:allowAdding"?: ((...args: any[]) => any) | undefined; "onUpdate:allowDeleting"?: ((...args: any[]) => any) | undefined; "onUpdate:allowUpdating"?: ((...args: any[]) => any) | undefined; "onUpdate:form"?: ((...args: any[]) => any) | undefined; "onUpdate:allowTimeZoneEditing"?: ((...args: any[]) => any) | undefined; }, { allowDragging: boolean; allowResizing: boolean; allowAdding: boolean; allowDeleting: boolean; allowUpdating: boolean; allowTimeZoneEditing: boolean; }>; declare const DxEmailRule: import("vue").DefineComponent<{ ignoreEmptyValue: BooleanConstructor; message: StringConstructor; type: PropType<ValidationRuleType>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:ignoreEmptyValue": null; "update:message": null; "update:type": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ ignoreEmptyValue: BooleanConstructor; message: StringConstructor; type: PropType<ValidationRuleType>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:ignoreEmptyValue"?: ((...args: any[]) => any) | undefined; "onUpdate:message"?: ((...args: any[]) => any) | undefined; }, { ignoreEmptyValue: boolean; }>; declare const DxEmptyItem: import("vue").DefineComponent<{ colSpan: NumberConstructor; cssClass: StringConstructor; itemType: PropType<FormItemType>; name: StringConstructor; visible: BooleanConstructor; visibleIndex: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:colSpan": null; "update:cssClass": null; "update:itemType": null; "update:name": null; "update:visible": null; "update:visibleIndex": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{ colSpan: NumberConstructor; cssClass: StringConstructor; itemType: PropType<FormItemType>; name: StringConstructor; visible: BooleanConstructor; visibleIndex: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:cssClass"?: ((...args: any[]) => any) | undefined; "onUpdate:colSpan"?: ((...args: any[]) => any) | undefined; "onUpdate:itemType"?: ((...args: any[]) => any) | undefined; "onUpdate:visibleIndex"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxForm: import("vue").DefineComponent<{ accessKey: StringConstructor; activeStateEnabled: BooleanConstructor; aiIntegration: PropType<AIIntegration>; alignItemLabels: BooleanConstructor; alignItemLabelsInAllGroups: BooleanConstructor; colCount: PropType<number | "auto">; colCountByScreen: PropType<Record<string, any>>; customizeItem: PropType<(item: dxFormSimpleItem | dxFormGroupItem | dxFormTabbedItem | dxFormEmptyItem | dxFormButtonItem) => void>; disabled: BooleanConstructor; elementAttr: PropType<Record<string, any>>; focusStateEnabled: BooleanConstructor; formData: {}; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; iconsShowMode: PropType<AppointmentFormIconsShowMode>; isDirty: BooleanConstructor; items: PropType<(dxFormSimpleItem | dxFormGroupItem | dxFormTabbedItem | dxFormEmptyItem | dxFormButtonItem)[]>; labelLocation: PropType<LabelLocation>; labelMode: PropType<FormLabelMode>; minColWidth: NumberConstructor; onContentReady: PropType<(e: FormContentReadyEvent) => void>; onDisposing: PropType<(e: FormDisposingEvent) => void>; onEditorEnterKey: PropType<(e: EditorEnterKeyEvent) => void>; onFieldDataChanged: PropType<(e: FieldDataChangedEvent) => void>; onInitialized: PropType<(e: FormInitializedEvent) => void>; onOptionChanged: PropType<(e: FormOptionChangedEvent) => void>; onSmartPasted: PropType<(e: SmartPastedEvent) => void>; onSmartPasting: PropType<(e: SmartPastingEvent) => void>; optionalMark: StringConstructor; readOnly: BooleanConstructor; requiredMark: StringConstructor; requiredMessage: StringConstructor; rtlEnabled: BooleanConstructor; screenByWidth: PropType<() => void>; scrollingEnabled: BooleanConstructor; showColonAfterLabel: BooleanConstructor; showOptionalMark: BooleanConstructor; showRequiredMark: BooleanConstructor; showValidationSummary: BooleanConstructor; tabIndex: NumberConstructor; validationGroup: StringConstructor; visible: BooleanConstructor; width: (NumberConstructor | StringConstructor)[]; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsM