devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
60 lines (58 loc) • 2.21 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 Calendar, { IOptions } from "devextreme/ui/calendar";
declare type AccessibleOptions = Pick<IOptions, "accessKey" | "activeStateEnabled" | "cellTemplate" | "dateSerializationFormat" | "disabled" | "disabledDates" | "elementAttr" | "firstDayOfWeek" | "focusStateEnabled" | "height" | "hint" | "hoverStateEnabled" | "isValid" | "max" | "maxZoomLevel" | "min" | "minZoomLevel" | "name" | "onDisposing" | "onInitialized" | "onOptionChanged" | "onValueChanged" | "readOnly" | "rtlEnabled" | "showTodayButton" | "tabIndex" | "validationError" | "validationErrors" | "validationMessageMode" | "validationStatus" | "value" | "visible" | "width" | "zoomLevel">;
interface DxCalendar extends AccessibleOptions {
readonly instance?: Calendar;
}
declare const DxCalendar: VueType.VueConstructor<{
instance: Calendar;
} & {
accessKey: string;
activeStateEnabled: boolean;
cellTemplate: unknown;
dateSerializationFormat: string;
disabled: boolean;
disabledDates: Function | unknown[];
elementAttr: any;
firstDayOfWeek: number;
focusStateEnabled: boolean;
height: string | number | Function;
hint: string;
hoverStateEnabled: boolean;
isValid: boolean;
max: unknown;
maxZoomLevel: string;
min: unknown;
minZoomLevel: string;
name: string;
onDisposing: Function;
onInitialized: Function;
onOptionChanged: Function;
onValueChanged: Function;
readOnly: boolean;
rtlEnabled: boolean;
showTodayButton: boolean;
tabIndex: number;
validationError: any;
validationErrors: unknown[];
validationMessageMode: string;
validationStatus: string;
value: unknown;
visible: boolean;
width: string | number | Function;
zoomLevel: string;
} & VueType.default>;
export default DxCalendar;
export { DxCalendar };