@farris/ui-vue 1.0.0-beta.2 → 1.0.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/accordion/index.esm.js +93 -0
- package/accordion/index.umd.js +1 -0
- package/accordion/package.json +8 -0
- package/accordion/style.css +1 -0
- package/avatar/index.esm.js +94 -0
- package/avatar/index.umd.js +1 -0
- package/avatar/package.json +8 -0
- package/avatar/style.css +1 -0
- package/button/index.esm.js +206 -0
- package/button/index.umd.js +1 -0
- package/button/package.json +8 -0
- package/button-edit/index.esm.js +300 -0
- package/button-edit/index.umd.js +1 -0
- package/button-edit/package.json +8 -0
- package/checkbox/index.esm.js +97 -0
- package/checkbox/index.umd.js +1 -0
- package/checkbox/package.json +8 -0
- package/combo-list/index.esm.js +457 -0
- package/combo-list/index.umd.js +1 -0
- package/combo-list/package.json +8 -0
- package/data-grid/index.esm.js +1535 -0
- package/data-grid/index.umd.js +1 -0
- package/data-grid/package.json +8 -0
- package/data-grid/style.css +1 -0
- package/date-picker/index.esm.js +1479 -0
- package/date-picker/index.umd.js +1 -0
- package/date-picker/package.json +8 -0
- package/date-picker/style.css +1 -0
- package/{src/index.esm.js → farris.all.esm.js} +1 -2
- package/farris.all.umd.js +1 -0
- package/list-view/index.esm.js +144 -0
- package/list-view/index.umd.js +1 -0
- package/list-view/package.json +8 -0
- package/list-view/style.css +1 -0
- package/message-box/index.esm.js +499 -0
- package/message-box/index.umd.js +1 -0
- package/message-box/package.json +8 -0
- package/modal/index.esm.js +165 -0
- package/modal/index.umd.js +1 -0
- package/modal/package.json +8 -0
- package/notify/index.esm.js +187 -0
- package/notify/index.umd.js +1 -0
- package/notify/package.json +8 -0
- package/notify/style.css +1 -0
- package/package.json +6 -5
- package/pagination/index.esm.js +334 -0
- package/pagination/index.umd.js +1 -0
- package/pagination/package.json +8 -0
- package/pagination/style.css +1 -0
- package/popover/index.esm.js +83 -0
- package/popover/index.umd.js +1 -0
- package/popover/package.json +8 -0
- package/popover/style.css +1 -0
- package/radio-group/index.esm.js +79 -0
- package/radio-group/index.umd.js +1 -0
- package/radio-group/package.json +8 -0
- package/section/index.esm.js +70 -0
- package/section/index.umd.js +1 -0
- package/section/package.json +8 -0
- package/switch/index.esm.js +78 -0
- package/switch/index.umd.js +1 -0
- package/switch/package.json +8 -0
- package/tabs/index.esm.js +385 -0
- package/tabs/index.umd.js +1 -0
- package/tabs/package.json +8 -0
- package/tabs/style.css +1 -0
- package/text/index.esm.js +33 -0
- package/text/index.umd.js +1 -0
- package/text/package.json +8 -0
- package/tooltip/index.esm.js +195 -0
- package/tooltip/index.umd.js +1 -0
- package/tooltip/package.json +8 -0
- package/tooltip/style.css +1 -0
- package/types/accordion/index.d.ts +25 -0
- package/types/accordion/src/accordion.component.d.ts +70 -0
- package/types/accordion/src/accordion.props.d.ts +50 -0
- package/types/accordion/src/components/accordion-item.component.d.ts +38 -0
- package/types/accordion/src/components/accordion-item.props.d.ts +34 -0
- package/types/avatar/index.d.ts +23 -0
- package/types/avatar/src/avatar.component.d.ts +109 -0
- package/types/avatar/src/avatar.props.d.ts +96 -0
- package/types/avatar/src/composition/types.d.ts +31 -0
- package/types/avatar/src/composition/use-image.d.ts +19 -0
- package/types/button/index.d.ts +24 -0
- package/types/button/src/button-group.component.d.ts +106 -0
- package/types/button/src/button-group.props.d.ts +106 -0
- package/types/button/src/button.component.d.ts +34 -0
- package/types/button/src/button.props.d.ts +47 -0
- package/types/button/src/composition/types-group.d.ts +24 -0
- package/types/button/src/composition/types.d.ts +24 -0
- package/types/button/src/composition/use-button-group.d.ts +19 -0
- package/types/button/src/composition/use-button.d.ts +19 -0
- package/types/button-edit/index.d.ts +23 -0
- package/types/button-edit/src/button-edit.props.d.ts +135 -0
- package/types/button-edit/src/composition/types.d.ts +118 -0
- package/types/button-edit/src/composition/use-button.d.ts +19 -0
- package/types/button-edit/src/composition/use-clear.d.ts +19 -0
- package/types/button-edit/src/composition/use-text-box.d.ts +19 -0
- package/types/checkbox/index.d.ts +23 -0
- package/types/checkbox/src/checkbox-group.component.d.ts +148 -0
- package/types/checkbox/src/checkbox-group.props.d.ts +123 -0
- package/types/checkbox/src/composition/types.d.ts +46 -0
- package/types/checkbox/src/composition/use-checkbox-group.d.ts +19 -0
- package/types/combo-list/index.d.ts +25 -0
- package/types/combo-list/src/combo-list.props.d.ts +290 -0
- package/types/combo-list/src/components/option.component.d.ts +39 -0
- package/types/combo-list/src/components/options.component.d.ts +10 -0
- package/types/combo-list/src/composition/index.d.ts +18 -0
- package/types/combo-list/src/composition/use-combo-list.d.ts +30 -0
- package/types/combo-list/src/composition/use-option.d.ts +19 -0
- package/types/combo-list/src/composition/use-options.d.ts +2 -0
- package/types/combo-list/src/composition/use-panel.d.ts +8 -0
- package/types/combo-list/src/const.d.ts +40 -0
- package/types/combo-list/src/types.d.ts +186 -0
- package/types/data-grid/index.d.ts +23 -0
- package/types/data-grid/src/components/data/data-area.component.d.ts +21 -0
- package/types/data-grid/src/components/editors/date-picker.component.d.ts +2 -0
- package/types/data-grid/src/components/editors/text-area-editor.component.d.ts +2 -0
- package/types/data-grid/src/components/editors/text-editor.component.d.ts +17 -0
- package/types/data-grid/src/components/header/data-grid-header.component.d.ts +22 -0
- package/types/data-grid/src/components/pagination/data-grid-pagination.component.d.ts +5 -0
- package/types/data-grid/src/components/scrollbar/horizontal-scrollbar.component.d.ts +21 -0
- package/types/data-grid/src/components/scrollbar/vertical-scrollbar.component.d.ts +21 -0
- package/types/data-grid/src/components/sidebar/data-grid-sidebar.component.d.ts +21 -0
- package/types/data-grid/src/components/summary/data-grid-summary.component.d.ts +5 -0
- package/types/data-grid/src/composition/types.d.ts +175 -0
- package/types/data-grid/src/composition/use-column.d.ts +17 -0
- package/types/data-grid/src/composition/use-data-view.d.ts +19 -0
- package/types/data-grid/src/composition/use-edit.d.ts +18 -0
- package/types/data-grid/src/composition/use-fit-column.d.ts +20 -0
- package/types/data-grid/src/composition/use-group-column.d.ts +22 -0
- package/types/data-grid/src/composition/use-group-data.d.ts +3 -0
- package/types/data-grid/src/composition/use-positon-style.d.ts +20 -0
- package/types/data-grid/src/composition/use-resize.d.ts +20 -0
- package/types/data-grid/src/composition/use-row.d.ts +3 -0
- package/types/data-grid/src/composition/use-sidebar.d.ts +3 -0
- package/types/data-grid/src/composition/use-virtual-scroll.d.ts +20 -0
- package/types/data-grid/src/composition/use-visual-data.d.ts +19 -0
- package/types/data-grid/src/data-grid.component.d.ts +278 -0
- package/types/data-grid/src/data-grid.props.d.ts +650 -0
- package/types/date-picker/index.d.ts +28 -0
- package/types/date-picker/src/components/calendar/calendar.component.d.ts +166 -0
- package/types/date-picker/src/components/calendar/calendar.props.d.ts +94 -0
- package/types/date-picker/src/components/calendar-navbar/calendar-navbar.component.d.ts +138 -0
- package/types/date-picker/src/components/calendar-navbar/calendar-navbar.props.d.ts +81 -0
- package/types/date-picker/src/components/date-picker-container/date-picker-container.component.d.ts +626 -0
- package/types/date-picker/src/components/date-picker-container/date-picker-container.props.d.ts +306 -0
- package/types/date-picker/src/components/month/month.component.d.ts +86 -0
- package/types/date-picker/src/components/month/month.props.d.ts +57 -0
- package/types/date-picker/src/components/year/year.component.d.ts +86 -0
- package/types/date-picker/src/components/year/year.props.d.ts +57 -0
- package/types/date-picker/src/composition/types.d.ts +102 -0
- package/types/date-picker/src/composition/use-calendar.d.ts +2 -0
- package/types/date-picker/src/composition/use-compare.d.ts +2 -0
- package/types/date-picker/src/composition/use-date.d.ts +2 -0
- package/types/date-picker/src/composition/use-disable-date.d.ts +18 -0
- package/types/date-picker/src/composition/use-disable-month.d.ts +2 -0
- package/types/date-picker/src/composition/use-event.d.ts +45 -0
- package/types/date-picker/src/composition/use-mark.d.ts +2 -0
- package/types/date-picker/src/composition/use-month.d.ts +2 -0
- package/types/date-picker/src/composition/use-number.d.ts +2 -0
- package/types/date-picker/src/composition/use-year.d.ts +2 -0
- package/types/date-picker/src/date-picker.props.d.ts +168 -0
- package/types/date-picker/src/types/calendar.d.ts +30 -0
- package/types/date-picker/src/types/common.d.ts +42 -0
- package/types/date-picker/src/types/date-model.d.ts +38 -0
- package/types/date-picker/src/types/month.d.ts +48 -0
- package/types/date-picker/src/types/year.d.ts +24 -0
- package/types/index.d.ts +20 -0
- package/types/list-view/index.d.ts +23 -0
- package/types/list-view/src/components/list-view-checkbox.component.d.ts +32 -0
- package/types/list-view/src/components/list-view-checkbox.props.d.ts +31 -0
- package/types/list-view/src/list-view.props.d.ts +44 -0
- package/types/message-box/index.d.ts +24 -0
- package/types/message-box/src/composition/types.d.ts +18 -0
- package/types/message-box/src/composition/use-copy.d.ts +18 -0
- package/types/message-box/src/message-box.component.d.ts +72 -0
- package/types/message-box/src/message-box.props.d.ts +52 -0
- package/types/modal/index.d.ts +23 -0
- package/types/modal/src/modal.component.d.ts +104 -0
- package/types/modal/src/modal.props.d.ts +72 -0
- package/types/notify/index.d.ts +26 -0
- package/types/notify/src/components/toast.component.d.ts +21 -0
- package/types/notify/src/components/toast.props.d.ts +27 -0
- package/types/notify/src/notify.props.d.ts +99 -0
- package/types/number-range/index.d.ts +23 -0
- package/types/number-range/src/composition/types.d.ts +52 -0
- package/types/number-range/src/composition/use-data.d.ts +19 -0
- package/types/number-range/src/composition/use-util.d.ts +19 -0
- package/types/number-range/src/number-range.component.d.ts +247 -0
- package/types/number-range/src/number-range.props.d.ts +216 -0
- package/types/number-spinner/index.d.ts +23 -0
- package/types/number-spinner/src/composition/types.d.ts +52 -0
- package/types/number-spinner/src/composition/use-data.d.ts +19 -0
- package/types/number-spinner/src/composition/use-util.d.ts +19 -0
- package/types/number-spinner/src/number-spinner.component.d.ts +202 -0
- package/types/number-spinner/src/number-spinner.props.d.ts +181 -0
- package/types/overlay/src/overlay.component.d.ts +20 -0
- package/types/overlay/src/overlay.props.d.ts +26 -0
- package/types/pagination/index.d.ts +23 -0
- package/types/pagination/src/components/buttons/goto-buttons.component.d.ts +19 -0
- package/types/pagination/src/components/buttons/next-buttons.component.d.ts +20 -0
- package/types/pagination/src/components/buttons/previous-buttons.component.d.ts +20 -0
- package/types/pagination/src/components/pages/page-info.component.d.ts +19 -0
- package/types/pagination/src/components/pages/page-list.component.d.ts +19 -0
- package/types/pagination/src/components/pages/page-number.component.d.ts +20 -0
- package/types/pagination/src/composition/types.d.ts +24 -0
- package/types/pagination/src/composition/use-pages.d.ts +18 -0
- package/types/pagination/src/pagination.components.d.ts +41 -0
- package/types/pagination/src/pagination.props.d.ts +36 -0
- package/types/popover/index.d.ts +24 -0
- package/types/popover/src/popover.component.d.ts +26 -0
- package/types/popover/src/popover.directive.d.ts +5 -0
- package/types/popover/src/popover.props.d.ts +30 -0
- package/types/radio-group/index.d.ts +23 -0
- package/types/radio-group/src/composition/change-radio.d.ts +19 -0
- package/types/radio-group/src/composition/types.d.ts +42 -0
- package/types/radio-group/src/radio-group.component.d.ts +91 -0
- package/types/radio-group/src/radio-group.props.d.ts +87 -0
- package/types/section/index.d.ts +23 -0
- package/types/section/src/section.component.d.ts +187 -0
- package/types/section/src/section.props.d.ts +117 -0
- package/types/switch/index.d.ts +23 -0
- package/types/switch/src/switch.component.d.ts +66 -0
- package/types/switch/src/switch.props.d.ts +52 -0
- package/types/tabs/index.d.ts +25 -0
- package/types/tabs/src/components/tab-page.component.d.ts +101 -0
- package/types/tabs/src/components/tab-page.props.d.ts +63 -0
- package/types/tabs/src/composition/types.d.ts +35 -0
- package/types/tabs/src/composition/use-tabs.d.ts +18 -0
- package/types/tabs/src/tabs.component.d.ts +149 -0
- package/types/tabs/src/tabs.props.d.ts +86 -0
- package/types/text/index.d.ts +23 -0
- package/types/text/src/text.component.d.ts +14 -0
- package/types/text/src/text.props.d.ts +26 -0
- package/types/tooltip/index.d.ts +24 -0
- package/types/tooltip/src/composition/types.d.ts +45 -0
- package/types/tooltip/src/composition/use-adjust-placement.d.ts +20 -0
- package/types/tooltip/src/composition/use-adjust-position.d.ts +6 -0
- package/types/tooltip/src/composition/use-calculate-position.d.ts +21 -0
- package/types/tooltip/src/composition/use-relative.d.ts +19 -0
- package/types/tooltip/src/composition/use-tooltip-position.d.ts +22 -0
- package/types/tooltip/src/tooltip.component.d.ts +56 -0
- package/types/tooltip/src/tooltip.props.d.ts +45 -0
- package/src/index.umd.js +0 -1
- /package/{src/style.css → style.css} +0 -0
package/types/date-picker/src/components/date-picker-container/date-picker-container.component.d.ts
ADDED
|
@@ -0,0 +1,626 @@
|
|
|
1
|
+
import { DateObject } from "../../types/common";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
top: {
|
|
4
|
+
type: NumberConstructor;
|
|
5
|
+
default: number;
|
|
6
|
+
};
|
|
7
|
+
left: {
|
|
8
|
+
type: NumberConstructor;
|
|
9
|
+
default: number;
|
|
10
|
+
};
|
|
11
|
+
position: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
enablePeriod: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
dateFormat: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
dates: {
|
|
24
|
+
type: {
|
|
25
|
+
(arrayLength: number): import("../../..").CalendarWeekItem[];
|
|
26
|
+
(...items: import("../../..").CalendarWeekItem[]): import("../../..").CalendarWeekItem[];
|
|
27
|
+
new (arrayLength: number): import("../../..").CalendarWeekItem[];
|
|
28
|
+
new (...items: import("../../..").CalendarWeekItem[]): import("../../..").CalendarWeekItem[];
|
|
29
|
+
isArray(arg: any): arg is any[];
|
|
30
|
+
readonly prototype: any[];
|
|
31
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
32
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
33
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
34
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
35
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
36
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
37
|
+
};
|
|
38
|
+
default: never[];
|
|
39
|
+
};
|
|
40
|
+
daysInWeek: {
|
|
41
|
+
type: {
|
|
42
|
+
(arrayLength: number): string[];
|
|
43
|
+
(...items: string[]): string[];
|
|
44
|
+
new (arrayLength: number): string[];
|
|
45
|
+
new (...items: string[]): string[];
|
|
46
|
+
isArray(arg: any): arg is any[];
|
|
47
|
+
readonly prototype: any[];
|
|
48
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
49
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
50
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
51
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
52
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
53
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
54
|
+
};
|
|
55
|
+
default: string[];
|
|
56
|
+
};
|
|
57
|
+
disableDates: {
|
|
58
|
+
Type: {
|
|
59
|
+
(arrayLength: number): DateObject[];
|
|
60
|
+
(...items: DateObject[]): DateObject[];
|
|
61
|
+
new (arrayLength: number): DateObject[];
|
|
62
|
+
new (...items: DateObject[]): DateObject[];
|
|
63
|
+
isArray(arg: any): arg is any[];
|
|
64
|
+
readonly prototype: any[];
|
|
65
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
66
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
67
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
68
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
69
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
70
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
71
|
+
};
|
|
72
|
+
default: never[];
|
|
73
|
+
};
|
|
74
|
+
disablePeriod: {
|
|
75
|
+
Type: {
|
|
76
|
+
(arrayLength: number): import("../../types/common").Period[];
|
|
77
|
+
(...items: import("../../types/common").Period[]): import("../../types/common").Period[];
|
|
78
|
+
new (arrayLength: number): import("../../types/common").Period[];
|
|
79
|
+
new (...items: import("../../types/common").Period[]): import("../../types/common").Period[];
|
|
80
|
+
isArray(arg: any): arg is any[];
|
|
81
|
+
readonly prototype: any[];
|
|
82
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
83
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
84
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
85
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
86
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
87
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
88
|
+
};
|
|
89
|
+
default: never[];
|
|
90
|
+
};
|
|
91
|
+
disableSince: {
|
|
92
|
+
Type: ObjectConstructor;
|
|
93
|
+
default: {
|
|
94
|
+
year: number;
|
|
95
|
+
month: number;
|
|
96
|
+
day: number;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
disableWeekdays: {
|
|
100
|
+
Type: {
|
|
101
|
+
(arrayLength: number): string[];
|
|
102
|
+
(...items: string[]): string[];
|
|
103
|
+
new (arrayLength: number): string[];
|
|
104
|
+
new (...items: string[]): string[];
|
|
105
|
+
isArray(arg: any): arg is any[];
|
|
106
|
+
readonly prototype: any[];
|
|
107
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
108
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
109
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
110
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
111
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
112
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
113
|
+
};
|
|
114
|
+
default: never[];
|
|
115
|
+
};
|
|
116
|
+
disableWeekends: {
|
|
117
|
+
Type: BooleanConstructor;
|
|
118
|
+
default: boolean;
|
|
119
|
+
};
|
|
120
|
+
disableUntil: {
|
|
121
|
+
Type: ObjectConstructor;
|
|
122
|
+
default: {
|
|
123
|
+
year: number;
|
|
124
|
+
month: number;
|
|
125
|
+
day: number;
|
|
126
|
+
};
|
|
127
|
+
};
|
|
128
|
+
enableKeyboadNavigate: {
|
|
129
|
+
type: BooleanConstructor;
|
|
130
|
+
default: boolean;
|
|
131
|
+
};
|
|
132
|
+
enableMarkCurrent: {
|
|
133
|
+
type: BooleanConstructor;
|
|
134
|
+
default: boolean;
|
|
135
|
+
};
|
|
136
|
+
firstDayOfTheWeek: {
|
|
137
|
+
type: StringConstructor;
|
|
138
|
+
default: string;
|
|
139
|
+
};
|
|
140
|
+
highlightDates: {
|
|
141
|
+
Type: {
|
|
142
|
+
(arrayLength: number): DateObject[];
|
|
143
|
+
(...items: DateObject[]): DateObject[];
|
|
144
|
+
new (arrayLength: number): DateObject[];
|
|
145
|
+
new (...items: DateObject[]): DateObject[];
|
|
146
|
+
isArray(arg: any): arg is any[];
|
|
147
|
+
readonly prototype: any[];
|
|
148
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
149
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
150
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
151
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
152
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
153
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
154
|
+
};
|
|
155
|
+
default: never[];
|
|
156
|
+
};
|
|
157
|
+
highlightSaturday: {
|
|
158
|
+
Type: BooleanConstructor;
|
|
159
|
+
default: boolean;
|
|
160
|
+
};
|
|
161
|
+
highlightSunday: {
|
|
162
|
+
Type: BooleanConstructor;
|
|
163
|
+
default: boolean;
|
|
164
|
+
};
|
|
165
|
+
maxYear: {
|
|
166
|
+
Type: NumberConstructor;
|
|
167
|
+
default: number;
|
|
168
|
+
};
|
|
169
|
+
minYear: {
|
|
170
|
+
Type: NumberConstructor;
|
|
171
|
+
default: number;
|
|
172
|
+
};
|
|
173
|
+
months: {
|
|
174
|
+
type: {
|
|
175
|
+
(arrayLength: number): import("../../types/month").MonthViewItem[][];
|
|
176
|
+
(...items: import("../../types/month").MonthViewItem[][]): import("../../types/month").MonthViewItem[][];
|
|
177
|
+
new (arrayLength: number): import("../../types/month").MonthViewItem[][];
|
|
178
|
+
new (...items: import("../../types/month").MonthViewItem[][]): import("../../types/month").MonthViewItem[][];
|
|
179
|
+
isArray(arg: any): arg is any[];
|
|
180
|
+
readonly prototype: any[];
|
|
181
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
182
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
183
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
184
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
185
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
186
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
187
|
+
};
|
|
188
|
+
default: never[][];
|
|
189
|
+
};
|
|
190
|
+
nameOfMonths: {
|
|
191
|
+
Type: ObjectConstructor;
|
|
192
|
+
default: {
|
|
193
|
+
1: string;
|
|
194
|
+
2: string;
|
|
195
|
+
3: string;
|
|
196
|
+
4: string;
|
|
197
|
+
5: string;
|
|
198
|
+
6: string;
|
|
199
|
+
7: string;
|
|
200
|
+
8: string;
|
|
201
|
+
9: string;
|
|
202
|
+
10: string;
|
|
203
|
+
11: string;
|
|
204
|
+
12: string;
|
|
205
|
+
};
|
|
206
|
+
};
|
|
207
|
+
secondaryDates: {
|
|
208
|
+
type: {
|
|
209
|
+
(arrayLength: number): import("../../..").CalendarWeekItem[];
|
|
210
|
+
(...items: import("../../..").CalendarWeekItem[]): import("../../..").CalendarWeekItem[];
|
|
211
|
+
new (arrayLength: number): import("../../..").CalendarWeekItem[];
|
|
212
|
+
new (...items: import("../../..").CalendarWeekItem[]): import("../../..").CalendarWeekItem[];
|
|
213
|
+
isArray(arg: any): arg is any[];
|
|
214
|
+
readonly prototype: any[];
|
|
215
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
216
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
217
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
218
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
219
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
220
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
221
|
+
};
|
|
222
|
+
default: never[];
|
|
223
|
+
};
|
|
224
|
+
secondaryMonths: {
|
|
225
|
+
type: {
|
|
226
|
+
(arrayLength: number): import("../../types/month").MonthViewItem[][];
|
|
227
|
+
(...items: import("../../types/month").MonthViewItem[][]): import("../../types/month").MonthViewItem[][];
|
|
228
|
+
new (arrayLength: number): import("../../types/month").MonthViewItem[][];
|
|
229
|
+
new (...items: import("../../types/month").MonthViewItem[][]): import("../../types/month").MonthViewItem[][];
|
|
230
|
+
isArray(arg: any): arg is any[];
|
|
231
|
+
readonly prototype: any[];
|
|
232
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
233
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
234
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
235
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
236
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
237
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
238
|
+
};
|
|
239
|
+
default: never[][];
|
|
240
|
+
};
|
|
241
|
+
selectedDate: {
|
|
242
|
+
type: ObjectConstructor;
|
|
243
|
+
default: null;
|
|
244
|
+
};
|
|
245
|
+
selectedMonth: {
|
|
246
|
+
type: ObjectConstructor;
|
|
247
|
+
default: null;
|
|
248
|
+
};
|
|
249
|
+
selectedPeriod: {
|
|
250
|
+
type: ObjectConstructor;
|
|
251
|
+
default: null;
|
|
252
|
+
};
|
|
253
|
+
selectedWeek: {
|
|
254
|
+
type: ObjectConstructor;
|
|
255
|
+
default: null;
|
|
256
|
+
};
|
|
257
|
+
selectMode: {
|
|
258
|
+
type: import("vue").PropType<import("../../types/common").SelectMode>;
|
|
259
|
+
default: string;
|
|
260
|
+
};
|
|
261
|
+
showWeekNumber: {
|
|
262
|
+
type: BooleanConstructor;
|
|
263
|
+
default: boolean;
|
|
264
|
+
};
|
|
265
|
+
weekTitle: {
|
|
266
|
+
type: StringConstructor;
|
|
267
|
+
default: string;
|
|
268
|
+
};
|
|
269
|
+
years: {
|
|
270
|
+
Type: {
|
|
271
|
+
(arrayLength: number): import("../../..").YearViewItem[][];
|
|
272
|
+
(...items: import("../../..").YearViewItem[][]): import("../../..").YearViewItem[][];
|
|
273
|
+
new (arrayLength: number): import("../../..").YearViewItem[][];
|
|
274
|
+
new (...items: import("../../..").YearViewItem[][]): import("../../..").YearViewItem[][];
|
|
275
|
+
isArray(arg: any): arg is any[];
|
|
276
|
+
readonly prototype: any[];
|
|
277
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
278
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
279
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
280
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
281
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
282
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
283
|
+
};
|
|
284
|
+
default: never[][];
|
|
285
|
+
};
|
|
286
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, "datePicked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
287
|
+
top: {
|
|
288
|
+
type: NumberConstructor;
|
|
289
|
+
default: number;
|
|
290
|
+
};
|
|
291
|
+
left: {
|
|
292
|
+
type: NumberConstructor;
|
|
293
|
+
default: number;
|
|
294
|
+
};
|
|
295
|
+
position: {
|
|
296
|
+
type: StringConstructor;
|
|
297
|
+
default: string;
|
|
298
|
+
};
|
|
299
|
+
enablePeriod: {
|
|
300
|
+
type: BooleanConstructor;
|
|
301
|
+
default: boolean;
|
|
302
|
+
};
|
|
303
|
+
dateFormat: {
|
|
304
|
+
type: StringConstructor;
|
|
305
|
+
default: string;
|
|
306
|
+
};
|
|
307
|
+
dates: {
|
|
308
|
+
type: {
|
|
309
|
+
(arrayLength: number): import("../../..").CalendarWeekItem[];
|
|
310
|
+
(...items: import("../../..").CalendarWeekItem[]): import("../../..").CalendarWeekItem[];
|
|
311
|
+
new (arrayLength: number): import("../../..").CalendarWeekItem[];
|
|
312
|
+
new (...items: import("../../..").CalendarWeekItem[]): import("../../..").CalendarWeekItem[];
|
|
313
|
+
isArray(arg: any): arg is any[];
|
|
314
|
+
readonly prototype: any[];
|
|
315
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
316
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
317
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
318
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
319
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
320
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
321
|
+
};
|
|
322
|
+
default: never[];
|
|
323
|
+
};
|
|
324
|
+
daysInWeek: {
|
|
325
|
+
type: {
|
|
326
|
+
(arrayLength: number): string[];
|
|
327
|
+
(...items: string[]): string[];
|
|
328
|
+
new (arrayLength: number): string[];
|
|
329
|
+
new (...items: string[]): string[];
|
|
330
|
+
isArray(arg: any): arg is any[];
|
|
331
|
+
readonly prototype: any[];
|
|
332
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
333
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
334
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
335
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
336
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
337
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
338
|
+
};
|
|
339
|
+
default: string[];
|
|
340
|
+
};
|
|
341
|
+
disableDates: {
|
|
342
|
+
Type: {
|
|
343
|
+
(arrayLength: number): DateObject[];
|
|
344
|
+
(...items: DateObject[]): DateObject[];
|
|
345
|
+
new (arrayLength: number): DateObject[];
|
|
346
|
+
new (...items: DateObject[]): DateObject[];
|
|
347
|
+
isArray(arg: any): arg is any[];
|
|
348
|
+
readonly prototype: any[];
|
|
349
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
350
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
351
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
352
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
353
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
354
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
355
|
+
};
|
|
356
|
+
default: never[];
|
|
357
|
+
};
|
|
358
|
+
disablePeriod: {
|
|
359
|
+
Type: {
|
|
360
|
+
(arrayLength: number): import("../../types/common").Period[];
|
|
361
|
+
(...items: import("../../types/common").Period[]): import("../../types/common").Period[];
|
|
362
|
+
new (arrayLength: number): import("../../types/common").Period[];
|
|
363
|
+
new (...items: import("../../types/common").Period[]): import("../../types/common").Period[];
|
|
364
|
+
isArray(arg: any): arg is any[];
|
|
365
|
+
readonly prototype: any[];
|
|
366
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
367
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
368
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
369
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
370
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
371
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
372
|
+
};
|
|
373
|
+
default: never[];
|
|
374
|
+
};
|
|
375
|
+
disableSince: {
|
|
376
|
+
Type: ObjectConstructor;
|
|
377
|
+
default: {
|
|
378
|
+
year: number;
|
|
379
|
+
month: number;
|
|
380
|
+
day: number;
|
|
381
|
+
};
|
|
382
|
+
};
|
|
383
|
+
disableWeekdays: {
|
|
384
|
+
Type: {
|
|
385
|
+
(arrayLength: number): string[];
|
|
386
|
+
(...items: string[]): string[];
|
|
387
|
+
new (arrayLength: number): string[];
|
|
388
|
+
new (...items: string[]): string[];
|
|
389
|
+
isArray(arg: any): arg is any[];
|
|
390
|
+
readonly prototype: any[];
|
|
391
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
392
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
393
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
394
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
395
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
396
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
397
|
+
};
|
|
398
|
+
default: never[];
|
|
399
|
+
};
|
|
400
|
+
disableWeekends: {
|
|
401
|
+
Type: BooleanConstructor;
|
|
402
|
+
default: boolean;
|
|
403
|
+
};
|
|
404
|
+
disableUntil: {
|
|
405
|
+
Type: ObjectConstructor;
|
|
406
|
+
default: {
|
|
407
|
+
year: number;
|
|
408
|
+
month: number;
|
|
409
|
+
day: number;
|
|
410
|
+
};
|
|
411
|
+
};
|
|
412
|
+
enableKeyboadNavigate: {
|
|
413
|
+
type: BooleanConstructor;
|
|
414
|
+
default: boolean;
|
|
415
|
+
};
|
|
416
|
+
enableMarkCurrent: {
|
|
417
|
+
type: BooleanConstructor;
|
|
418
|
+
default: boolean;
|
|
419
|
+
};
|
|
420
|
+
firstDayOfTheWeek: {
|
|
421
|
+
type: StringConstructor;
|
|
422
|
+
default: string;
|
|
423
|
+
};
|
|
424
|
+
highlightDates: {
|
|
425
|
+
Type: {
|
|
426
|
+
(arrayLength: number): DateObject[];
|
|
427
|
+
(...items: DateObject[]): DateObject[];
|
|
428
|
+
new (arrayLength: number): DateObject[];
|
|
429
|
+
new (...items: DateObject[]): DateObject[];
|
|
430
|
+
isArray(arg: any): arg is any[];
|
|
431
|
+
readonly prototype: any[];
|
|
432
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
433
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
434
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
435
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
436
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
437
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
438
|
+
};
|
|
439
|
+
default: never[];
|
|
440
|
+
};
|
|
441
|
+
highlightSaturday: {
|
|
442
|
+
Type: BooleanConstructor;
|
|
443
|
+
default: boolean;
|
|
444
|
+
};
|
|
445
|
+
highlightSunday: {
|
|
446
|
+
Type: BooleanConstructor;
|
|
447
|
+
default: boolean;
|
|
448
|
+
};
|
|
449
|
+
maxYear: {
|
|
450
|
+
Type: NumberConstructor;
|
|
451
|
+
default: number;
|
|
452
|
+
};
|
|
453
|
+
minYear: {
|
|
454
|
+
Type: NumberConstructor;
|
|
455
|
+
default: number;
|
|
456
|
+
};
|
|
457
|
+
months: {
|
|
458
|
+
type: {
|
|
459
|
+
(arrayLength: number): import("../../types/month").MonthViewItem[][];
|
|
460
|
+
(...items: import("../../types/month").MonthViewItem[][]): import("../../types/month").MonthViewItem[][];
|
|
461
|
+
new (arrayLength: number): import("../../types/month").MonthViewItem[][];
|
|
462
|
+
new (...items: import("../../types/month").MonthViewItem[][]): import("../../types/month").MonthViewItem[][];
|
|
463
|
+
isArray(arg: any): arg is any[];
|
|
464
|
+
readonly prototype: any[];
|
|
465
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
466
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
467
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
468
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
469
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
470
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
471
|
+
};
|
|
472
|
+
default: never[][];
|
|
473
|
+
};
|
|
474
|
+
nameOfMonths: {
|
|
475
|
+
Type: ObjectConstructor;
|
|
476
|
+
default: {
|
|
477
|
+
1: string;
|
|
478
|
+
2: string;
|
|
479
|
+
3: string;
|
|
480
|
+
4: string;
|
|
481
|
+
5: string;
|
|
482
|
+
6: string;
|
|
483
|
+
7: string;
|
|
484
|
+
8: string;
|
|
485
|
+
9: string;
|
|
486
|
+
10: string;
|
|
487
|
+
11: string;
|
|
488
|
+
12: string;
|
|
489
|
+
};
|
|
490
|
+
};
|
|
491
|
+
secondaryDates: {
|
|
492
|
+
type: {
|
|
493
|
+
(arrayLength: number): import("../../..").CalendarWeekItem[];
|
|
494
|
+
(...items: import("../../..").CalendarWeekItem[]): import("../../..").CalendarWeekItem[];
|
|
495
|
+
new (arrayLength: number): import("../../..").CalendarWeekItem[];
|
|
496
|
+
new (...items: import("../../..").CalendarWeekItem[]): import("../../..").CalendarWeekItem[];
|
|
497
|
+
isArray(arg: any): arg is any[];
|
|
498
|
+
readonly prototype: any[];
|
|
499
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
500
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
501
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
502
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
503
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
504
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
505
|
+
};
|
|
506
|
+
default: never[];
|
|
507
|
+
};
|
|
508
|
+
secondaryMonths: {
|
|
509
|
+
type: {
|
|
510
|
+
(arrayLength: number): import("../../types/month").MonthViewItem[][];
|
|
511
|
+
(...items: import("../../types/month").MonthViewItem[][]): import("../../types/month").MonthViewItem[][];
|
|
512
|
+
new (arrayLength: number): import("../../types/month").MonthViewItem[][];
|
|
513
|
+
new (...items: import("../../types/month").MonthViewItem[][]): import("../../types/month").MonthViewItem[][];
|
|
514
|
+
isArray(arg: any): arg is any[];
|
|
515
|
+
readonly prototype: any[];
|
|
516
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
517
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
518
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
519
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
520
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
521
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
522
|
+
};
|
|
523
|
+
default: never[][];
|
|
524
|
+
};
|
|
525
|
+
selectedDate: {
|
|
526
|
+
type: ObjectConstructor;
|
|
527
|
+
default: null;
|
|
528
|
+
};
|
|
529
|
+
selectedMonth: {
|
|
530
|
+
type: ObjectConstructor;
|
|
531
|
+
default: null;
|
|
532
|
+
};
|
|
533
|
+
selectedPeriod: {
|
|
534
|
+
type: ObjectConstructor;
|
|
535
|
+
default: null;
|
|
536
|
+
};
|
|
537
|
+
selectedWeek: {
|
|
538
|
+
type: ObjectConstructor;
|
|
539
|
+
default: null;
|
|
540
|
+
};
|
|
541
|
+
selectMode: {
|
|
542
|
+
type: import("vue").PropType<import("../../types/common").SelectMode>;
|
|
543
|
+
default: string;
|
|
544
|
+
};
|
|
545
|
+
showWeekNumber: {
|
|
546
|
+
type: BooleanConstructor;
|
|
547
|
+
default: boolean;
|
|
548
|
+
};
|
|
549
|
+
weekTitle: {
|
|
550
|
+
type: StringConstructor;
|
|
551
|
+
default: string;
|
|
552
|
+
};
|
|
553
|
+
years: {
|
|
554
|
+
Type: {
|
|
555
|
+
(arrayLength: number): import("../../..").YearViewItem[][];
|
|
556
|
+
(...items: import("../../..").YearViewItem[][]): import("../../..").YearViewItem[][];
|
|
557
|
+
new (arrayLength: number): import("../../..").YearViewItem[][];
|
|
558
|
+
new (...items: import("../../..").YearViewItem[][]): import("../../..").YearViewItem[][];
|
|
559
|
+
isArray(arg: any): arg is any[];
|
|
560
|
+
readonly prototype: any[];
|
|
561
|
+
from<T>(arrayLike: ArrayLike<T>): T[];
|
|
562
|
+
from<T_1, U>(arrayLike: ArrayLike<T_1>, mapfn: (v: T_1, k: number) => U, thisArg?: any): U[];
|
|
563
|
+
from<T_2>(iterable: Iterable<T_2> | ArrayLike<T_2>): T_2[];
|
|
564
|
+
from<T_3, U_1>(iterable: Iterable<T_3> | ArrayLike<T_3>, mapfn: (v: T_3, k: number) => U_1, thisArg?: any): U_1[];
|
|
565
|
+
of<T_4>(...items: T_4[]): T_4[];
|
|
566
|
+
readonly [Symbol.species]: ArrayConstructor;
|
|
567
|
+
};
|
|
568
|
+
default: never[][];
|
|
569
|
+
};
|
|
570
|
+
}>>, {
|
|
571
|
+
top: number;
|
|
572
|
+
left: number;
|
|
573
|
+
position: string;
|
|
574
|
+
dates: import("../../..").CalendarWeekItem[];
|
|
575
|
+
daysInWeek: string[];
|
|
576
|
+
enableKeyboadNavigate: boolean;
|
|
577
|
+
enableMarkCurrent: boolean;
|
|
578
|
+
enablePeriod: boolean;
|
|
579
|
+
firstDayOfTheWeek: string;
|
|
580
|
+
selectedPeriod: Record<string, any>;
|
|
581
|
+
selectedWeek: Record<string, any>;
|
|
582
|
+
selectMode: import("../../types/common").SelectMode;
|
|
583
|
+
showWeekNumber: boolean;
|
|
584
|
+
weekTitle: string;
|
|
585
|
+
dateFormat: string;
|
|
586
|
+
years: never[][];
|
|
587
|
+
disableDates: never[];
|
|
588
|
+
disablePeriod: never[];
|
|
589
|
+
disableSince: {
|
|
590
|
+
year: number;
|
|
591
|
+
month: number;
|
|
592
|
+
day: number;
|
|
593
|
+
};
|
|
594
|
+
disableWeekdays: never[];
|
|
595
|
+
disableWeekends: boolean;
|
|
596
|
+
disableUntil: {
|
|
597
|
+
year: number;
|
|
598
|
+
month: number;
|
|
599
|
+
day: number;
|
|
600
|
+
};
|
|
601
|
+
highlightDates: never[];
|
|
602
|
+
highlightSaturday: boolean;
|
|
603
|
+
highlightSunday: boolean;
|
|
604
|
+
maxYear: number;
|
|
605
|
+
minYear: number;
|
|
606
|
+
months: import("../../types/month").MonthViewItem[][];
|
|
607
|
+
nameOfMonths: {
|
|
608
|
+
1: string;
|
|
609
|
+
2: string;
|
|
610
|
+
3: string;
|
|
611
|
+
4: string;
|
|
612
|
+
5: string;
|
|
613
|
+
6: string;
|
|
614
|
+
7: string;
|
|
615
|
+
8: string;
|
|
616
|
+
9: string;
|
|
617
|
+
10: string;
|
|
618
|
+
11: string;
|
|
619
|
+
12: string;
|
|
620
|
+
};
|
|
621
|
+
secondaryDates: import("../../..").CalendarWeekItem[];
|
|
622
|
+
secondaryMonths: import("../../types/month").MonthViewItem[][];
|
|
623
|
+
selectedDate: Record<string, any>;
|
|
624
|
+
selectedMonth: Record<string, any>;
|
|
625
|
+
}>;
|
|
626
|
+
export default _default;
|