vuetify 3.3.13 → 3.3.14
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/dist/json/attributes.json +70 -66
- package/dist/json/importMap-labs.json +4 -4
- package/dist/json/importMap.json +12 -12
- package/dist/json/tags.json +5 -4
- package/dist/json/web-types.json +180 -140
- package/dist/vuetify-labs.css +363 -304
- package/dist/vuetify-labs.d.ts +384 -236
- package/dist/vuetify-labs.esm.js +410 -297
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +409 -296
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +291 -232
- package/dist/vuetify.d.ts +232 -76
- package/dist/vuetify.esm.js +210 -160
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +209 -159
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +838 -827
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.mts +6 -6
- package/lib/components/VAutocomplete/VAutocomplete.mjs +12 -2
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VBadge/VBadge.css +1 -1
- package/lib/components/VBadge/_variables.scss +1 -1
- package/lib/components/VCheckbox/VCheckbox.mjs +2 -2
- package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
- package/lib/components/VCheckbox/VCheckboxBtn.mjs +14 -11
- package/lib/components/VCheckbox/VCheckboxBtn.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPickerEdit.css +4 -2
- package/lib/components/VColorPicker/VColorPickerPreview.css +11 -6
- package/lib/components/VCombobox/VCombobox.mjs +11 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VField/VField.css +22 -7
- package/lib/components/VField/VField.sass +8 -1
- package/lib/components/VField/_variables.scss +1 -0
- package/lib/components/VGrid/VGrid.css +153 -142
- package/lib/components/VProgressLinear/VProgressLinear.css +3 -2
- package/lib/components/VRadioGroup/VRadioGroup.mjs +2 -2
- package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
- package/lib/components/VRangeSlider/index.d.mts +114 -33
- package/lib/components/VSelect/VSelect.mjs +12 -2
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs +2 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSlider/VSlider.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.css +8 -4
- package/lib/components/VSlider/VSliderTrack.css +22 -12
- package/lib/components/VSlider/index.d.mts +114 -33
- package/lib/components/VSwitch/VSwitch.mjs +9 -9
- package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
- package/lib/components/VTimeline/VTimeline.css +19 -10
- package/lib/components/VTimeline/VTimeline.sass +5 -0
- package/lib/components/VToolbar/VToolbar.css +4 -2
- package/lib/components/index.d.mts +228 -72
- package/lib/composables/color.mjs +6 -1
- package/lib/composables/color.mjs.map +1 -1
- package/lib/composables/defaults.mjs +9 -9
- package/lib/composables/defaults.mjs.map +1 -1
- package/lib/composables/theme.mjs +2 -5
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +4 -4
- package/lib/labs/VDateInput/index.d.mts +2 -2
- package/lib/labs/VDatePicker/VDateCard.mjs +3 -0
- package/lib/labs/VDatePicker/VDateCard.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePicker.mjs +51 -21
- package/lib/labs/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePickerControls.css +1 -1
- package/lib/labs/VDatePicker/VDatePickerControls.mjs +53 -35
- package/lib/labs/VDatePicker/VDatePickerControls.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePickerMonth.mjs +37 -28
- package/lib/labs/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePickerYears.mjs +19 -17
- package/lib/labs/VDatePicker/VDatePickerYears.mjs.map +1 -1
- package/lib/labs/VDatePicker/index.d.mts +148 -156
- package/lib/labs/VDateRangePicker/VDateRangeCard.mjs +3 -0
- package/lib/labs/VDateRangePicker/VDateRangeCard.mjs.map +1 -1
- package/lib/labs/VDateRangePicker/index.d.mts +59 -52
- package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs.map +1 -1
- package/lib/labs/VSkeletonLoader/index.d.mts +8 -8
- package/lib/labs/components.d.mts +156 -164
- package/lib/locale/no.mjs +1 -1
- package/lib/locale/no.mjs.map +1 -1
- package/lib/styles/tools/_rtl.sass +4 -2
- package/lib/util/colorUtils.mjs +6 -0
- package/lib/util/colorUtils.mjs.map +1 -1
- package/lib/util/helpers.mjs +10 -4
- package/lib/util/helpers.mjs.map +1 -1
- package/lib/util/injectSelf.mjs +2 -1
- package/lib/util/injectSelf.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -232,8 +232,8 @@ declare const VDateCard: {
|
|
|
232
232
|
leaveAbsolute: boolean;
|
|
233
233
|
} | undefined;
|
|
234
234
|
inputMode?: "calendar" | "keyboard" | undefined;
|
|
235
|
+
disabled?: boolean | string[] | undefined;
|
|
235
236
|
multiple?: boolean | undefined;
|
|
236
|
-
range?: string | boolean | undefined;
|
|
237
237
|
modelValue?: any[] | undefined;
|
|
238
238
|
collapseIcon?: string | undefined;
|
|
239
239
|
expandIcon?: string | undefined;
|
|
@@ -246,7 +246,7 @@ declare const VDateCard: {
|
|
|
246
246
|
showWeek?: boolean | undefined;
|
|
247
247
|
cancelText?: string | undefined;
|
|
248
248
|
okText?: string | undefined;
|
|
249
|
-
max?: number | undefined;
|
|
249
|
+
max?: string | number | Date | undefined;
|
|
250
250
|
key?: string | number | symbol | undefined;
|
|
251
251
|
height?: string | number | undefined;
|
|
252
252
|
color?: string | undefined;
|
|
@@ -264,7 +264,7 @@ declare const VDateCard: {
|
|
|
264
264
|
image?: (() => vue.VNodeChild) | undefined;
|
|
265
265
|
item?: (() => vue.VNodeChild) | undefined;
|
|
266
266
|
};
|
|
267
|
-
min?: number | undefined;
|
|
267
|
+
min?: string | number | Date | undefined;
|
|
268
268
|
format?: string | undefined;
|
|
269
269
|
ref?: vue.VNodeRef | undefined;
|
|
270
270
|
ref_for?: boolean | undefined;
|
|
@@ -379,7 +379,7 @@ declare const VDateCard: {
|
|
|
379
379
|
}>;
|
|
380
380
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
381
381
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
382
|
-
$emit: ((event: "cancel") => void) & ((event: "update:modelValue", value: any) => void) & ((event: "update:inputMode", value: any) => void) & ((event: "update:
|
|
382
|
+
$emit: ((event: "cancel") => void) & ((event: "update:modelValue", value: any) => void) & ((event: "update:inputMode", value: any) => void) & ((event: "update:viewMode", mode: "month" | "year") => void) & ((event: "update:displayDate", value: any) => void) & ((event: "save") => void);
|
|
383
383
|
$el: any;
|
|
384
384
|
$options: vue.ComponentOptionsBase<{
|
|
385
385
|
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
@@ -593,8 +593,8 @@ declare const VDateCard: {
|
|
|
593
593
|
leaveAbsolute: boolean;
|
|
594
594
|
};
|
|
595
595
|
inputMode: "calendar" | "keyboard";
|
|
596
|
+
disabled: boolean | string[];
|
|
596
597
|
multiple: boolean;
|
|
597
|
-
range: string | boolean;
|
|
598
598
|
modelValue: any[];
|
|
599
599
|
collapseIcon: string;
|
|
600
600
|
expandIcon: string;
|
|
@@ -608,10 +608,10 @@ declare const VDateCard: {
|
|
|
608
608
|
cancelText: string;
|
|
609
609
|
okText: string;
|
|
610
610
|
} & {
|
|
611
|
-
max?: number | undefined;
|
|
611
|
+
max?: string | number | Date | undefined;
|
|
612
612
|
height?: string | number | undefined;
|
|
613
613
|
color?: string | undefined;
|
|
614
|
-
min?: number | undefined;
|
|
614
|
+
min?: string | number | Date | undefined;
|
|
615
615
|
format?: string | undefined;
|
|
616
616
|
side?: string | undefined;
|
|
617
617
|
displayDate?: any;
|
|
@@ -878,8 +878,8 @@ declare const VDateCard: {
|
|
|
878
878
|
leaveAbsolute: boolean;
|
|
879
879
|
};
|
|
880
880
|
inputMode: "calendar" | "keyboard";
|
|
881
|
+
disabled: boolean | string[];
|
|
881
882
|
multiple: boolean;
|
|
882
|
-
range: string | boolean;
|
|
883
883
|
modelValue: any[];
|
|
884
884
|
collapseIcon: string;
|
|
885
885
|
expandIcon: string;
|
|
@@ -1155,8 +1155,8 @@ declare const VDateCard: {
|
|
|
1155
1155
|
leaveAbsolute: boolean;
|
|
1156
1156
|
};
|
|
1157
1157
|
inputMode: "calendar" | "keyboard";
|
|
1158
|
+
disabled: boolean | string[];
|
|
1158
1159
|
multiple: boolean;
|
|
1159
|
-
range: string | boolean;
|
|
1160
1160
|
modelValue: any[];
|
|
1161
1161
|
collapseIcon: string;
|
|
1162
1162
|
expandIcon: string;
|
|
@@ -1170,10 +1170,10 @@ declare const VDateCard: {
|
|
|
1170
1170
|
cancelText: string;
|
|
1171
1171
|
okText: string;
|
|
1172
1172
|
} & {
|
|
1173
|
-
max?: number | undefined;
|
|
1173
|
+
max?: string | number | Date | undefined;
|
|
1174
1174
|
height?: string | number | undefined;
|
|
1175
1175
|
color?: string | undefined;
|
|
1176
|
-
min?: number | undefined;
|
|
1176
|
+
min?: string | number | Date | undefined;
|
|
1177
1177
|
format?: string | undefined;
|
|
1178
1178
|
side?: string | undefined;
|
|
1179
1179
|
displayDate?: any;
|
|
@@ -1437,8 +1437,8 @@ declare const VDateCard: {
|
|
|
1437
1437
|
leaveAbsolute: boolean;
|
|
1438
1438
|
};
|
|
1439
1439
|
inputMode: "calendar" | "keyboard";
|
|
1440
|
+
disabled: boolean | string[];
|
|
1440
1441
|
multiple: boolean;
|
|
1441
|
-
range: string | boolean;
|
|
1442
1442
|
modelValue: any[];
|
|
1443
1443
|
collapseIcon: string;
|
|
1444
1444
|
expandIcon: string;
|
|
@@ -1452,10 +1452,10 @@ declare const VDateCard: {
|
|
|
1452
1452
|
cancelText: string;
|
|
1453
1453
|
okText: string;
|
|
1454
1454
|
} & {
|
|
1455
|
-
max?: number | undefined;
|
|
1455
|
+
max?: string | number | Date | undefined;
|
|
1456
1456
|
height?: string | number | undefined;
|
|
1457
1457
|
color?: string | undefined;
|
|
1458
|
-
min?: number | undefined;
|
|
1458
|
+
min?: string | number | Date | undefined;
|
|
1459
1459
|
format?: string | undefined;
|
|
1460
1460
|
side?: string | undefined;
|
|
1461
1461
|
displayDate?: any;
|
|
@@ -1722,8 +1722,8 @@ declare const VDateCard: {
|
|
|
1722
1722
|
leaveAbsolute: boolean;
|
|
1723
1723
|
};
|
|
1724
1724
|
inputMode: "calendar" | "keyboard";
|
|
1725
|
+
disabled: boolean | string[];
|
|
1725
1726
|
multiple: boolean;
|
|
1726
|
-
range: string | boolean;
|
|
1727
1727
|
modelValue: any[];
|
|
1728
1728
|
collapseIcon: string;
|
|
1729
1729
|
expandIcon: string;
|
|
@@ -2197,10 +2197,10 @@ declare const VDateCard: {
|
|
|
2197
2197
|
};
|
|
2198
2198
|
};
|
|
2199
2199
|
color: StringConstructor;
|
|
2200
|
-
min: NumberConstructor;
|
|
2201
|
-
max: NumberConstructor;
|
|
2202
2200
|
height: (StringConstructor | NumberConstructor)[];
|
|
2203
2201
|
displayDate: null;
|
|
2202
|
+
min: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
2203
|
+
max: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
2204
2204
|
format: StringConstructor;
|
|
2205
2205
|
modelValue: {
|
|
2206
2206
|
type: PropType<any[]>;
|
|
@@ -2214,9 +2214,9 @@ declare const VDateCard: {
|
|
|
2214
2214
|
side: {
|
|
2215
2215
|
type: StringConstructor;
|
|
2216
2216
|
};
|
|
2217
|
-
|
|
2218
|
-
type: PropType<
|
|
2219
|
-
default:
|
|
2217
|
+
disabled: {
|
|
2218
|
+
type: PropType<boolean | string[]>;
|
|
2219
|
+
default: boolean;
|
|
2220
2220
|
};
|
|
2221
2221
|
nextIcon: {
|
|
2222
2222
|
type: StringConstructor[];
|
|
@@ -2234,10 +2234,9 @@ declare const VDateCard: {
|
|
|
2234
2234
|
type: StringConstructor[];
|
|
2235
2235
|
default: string;
|
|
2236
2236
|
};
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
validator: (v: any) => boolean;
|
|
2237
|
+
viewMode: {
|
|
2238
|
+
type: PropType<"month" | "year">;
|
|
2239
|
+
default: string;
|
|
2241
2240
|
};
|
|
2242
2241
|
cancelText: {
|
|
2243
2242
|
type: StringConstructor;
|
|
@@ -2682,10 +2681,10 @@ declare const VDateCard: {
|
|
|
2682
2681
|
};
|
|
2683
2682
|
};
|
|
2684
2683
|
color: StringConstructor;
|
|
2685
|
-
min: NumberConstructor;
|
|
2686
|
-
max: NumberConstructor;
|
|
2687
2684
|
height: (StringConstructor | NumberConstructor)[];
|
|
2688
2685
|
displayDate: null;
|
|
2686
|
+
min: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
2687
|
+
max: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
2689
2688
|
format: StringConstructor;
|
|
2690
2689
|
modelValue: {
|
|
2691
2690
|
type: PropType<any[]>;
|
|
@@ -2699,9 +2698,9 @@ declare const VDateCard: {
|
|
|
2699
2698
|
side: {
|
|
2700
2699
|
type: StringConstructor;
|
|
2701
2700
|
};
|
|
2702
|
-
|
|
2703
|
-
type: PropType<
|
|
2704
|
-
default:
|
|
2701
|
+
disabled: {
|
|
2702
|
+
type: PropType<boolean | string[]>;
|
|
2703
|
+
default: boolean;
|
|
2705
2704
|
};
|
|
2706
2705
|
nextIcon: {
|
|
2707
2706
|
type: StringConstructor[];
|
|
@@ -2719,10 +2718,9 @@ declare const VDateCard: {
|
|
|
2719
2718
|
type: StringConstructor[];
|
|
2720
2719
|
default: string;
|
|
2721
2720
|
};
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
validator: (v: any) => boolean;
|
|
2721
|
+
viewMode: {
|
|
2722
|
+
type: PropType<"month" | "year">;
|
|
2723
|
+
default: string;
|
|
2726
2724
|
};
|
|
2727
2725
|
cancelText: {
|
|
2728
2726
|
type: StringConstructor;
|
|
@@ -2749,9 +2747,9 @@ declare const VDatePicker: {
|
|
|
2749
2747
|
style?: vue.StyleValue | undefined;
|
|
2750
2748
|
title?: string | undefined;
|
|
2751
2749
|
inputMode?: "calendar" | "keyboard" | undefined;
|
|
2750
|
+
disabled?: boolean | string[] | undefined;
|
|
2752
2751
|
multiple?: boolean | undefined;
|
|
2753
2752
|
landscape?: boolean | undefined;
|
|
2754
|
-
range?: string | boolean | undefined;
|
|
2755
2753
|
tag?: string | undefined;
|
|
2756
2754
|
rounded?: string | number | boolean | undefined;
|
|
2757
2755
|
modelValue?: any[] | undefined;
|
|
@@ -2764,13 +2762,13 @@ declare const VDatePicker: {
|
|
|
2764
2762
|
showAdjacentMonths?: boolean | undefined;
|
|
2765
2763
|
hideWeekdays?: boolean | undefined;
|
|
2766
2764
|
showWeek?: boolean | undefined;
|
|
2767
|
-
cancelText?: string | undefined;
|
|
2768
|
-
okText?: string | undefined;
|
|
2769
2765
|
calendarIcon?: string | undefined;
|
|
2770
2766
|
keyboardIcon?: string | undefined;
|
|
2767
|
+
cancelText?: string | undefined;
|
|
2768
|
+
okText?: string | undefined;
|
|
2771
2769
|
inputText?: string | undefined;
|
|
2772
2770
|
inputPlaceholder?: string | undefined;
|
|
2773
|
-
max?: number | undefined;
|
|
2771
|
+
max?: string | number | Date | undefined;
|
|
2774
2772
|
key?: string | number | symbol | undefined;
|
|
2775
2773
|
location?: Anchor | undefined;
|
|
2776
2774
|
height?: string | number | undefined;
|
|
@@ -2790,7 +2788,7 @@ declare const VDatePicker: {
|
|
|
2790
2788
|
'onClick:append': () => void;
|
|
2791
2789
|
}) => vue.VNodeChild) | undefined;
|
|
2792
2790
|
};
|
|
2793
|
-
min?: number | undefined;
|
|
2791
|
+
min?: string | number | Date | undefined;
|
|
2794
2792
|
elevation?: string | number | undefined;
|
|
2795
2793
|
format?: string | undefined;
|
|
2796
2794
|
ref?: vue.VNodeRef | undefined;
|
|
@@ -2875,16 +2873,16 @@ declare const VDatePicker: {
|
|
|
2875
2873
|
}>;
|
|
2876
2874
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
2877
2875
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
2878
|
-
$emit: ((event: "update:modelValue", date: readonly any[]) => void) & ((event: "update:focused", focused: boolean) => void) & ((event: "update:inputMode", inputMode: "calendar" | "keyboard") => void) & ((event: "update:
|
|
2876
|
+
$emit: ((event: "update:modelValue", date: readonly any[]) => void) & ((event: "update:focused", focused: boolean) => void) & ((event: "update:inputMode", inputMode: "calendar" | "keyboard") => void) & ((event: "update:viewMode", viewMode: "month" | "year") => void) & ((event: "update:displayDate", date: any) => void) & ((event: "click:cancel") => void) & ((event: "click:save") => void);
|
|
2879
2877
|
$el: any;
|
|
2880
2878
|
$options: vue.ComponentOptionsBase<{
|
|
2881
2879
|
header: string;
|
|
2882
2880
|
style: vue.StyleValue;
|
|
2883
2881
|
title: string;
|
|
2884
2882
|
inputMode: "calendar" | "keyboard";
|
|
2883
|
+
disabled: boolean | string[];
|
|
2885
2884
|
multiple: boolean;
|
|
2886
2885
|
landscape: boolean;
|
|
2887
|
-
range: string | boolean;
|
|
2888
2886
|
tag: string;
|
|
2889
2887
|
modelValue: any[];
|
|
2890
2888
|
collapseIcon: string;
|
|
@@ -2896,14 +2894,14 @@ declare const VDatePicker: {
|
|
|
2896
2894
|
showAdjacentMonths: boolean;
|
|
2897
2895
|
hideWeekdays: boolean;
|
|
2898
2896
|
showWeek: boolean;
|
|
2899
|
-
cancelText: string;
|
|
2900
|
-
okText: string;
|
|
2901
2897
|
calendarIcon: string;
|
|
2902
2898
|
keyboardIcon: string;
|
|
2899
|
+
cancelText: string;
|
|
2900
|
+
okText: string;
|
|
2903
2901
|
inputText: string;
|
|
2904
2902
|
inputPlaceholder: string;
|
|
2905
2903
|
} & {
|
|
2906
|
-
max?: number | undefined;
|
|
2904
|
+
max?: string | number | Date | undefined;
|
|
2907
2905
|
location?: Anchor | undefined;
|
|
2908
2906
|
height?: string | number | undefined;
|
|
2909
2907
|
width?: string | number | undefined;
|
|
@@ -2915,7 +2913,7 @@ declare const VDatePicker: {
|
|
|
2915
2913
|
minWidth?: string | number | undefined;
|
|
2916
2914
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
2917
2915
|
class?: any;
|
|
2918
|
-
min?: number | undefined;
|
|
2916
|
+
min?: string | number | Date | undefined;
|
|
2919
2917
|
elevation?: string | number | undefined;
|
|
2920
2918
|
format?: string | undefined;
|
|
2921
2919
|
side?: string | undefined;
|
|
@@ -2965,9 +2963,9 @@ declare const VDatePicker: {
|
|
|
2965
2963
|
style: vue.StyleValue;
|
|
2966
2964
|
title: string;
|
|
2967
2965
|
inputMode: "calendar" | "keyboard";
|
|
2966
|
+
disabled: boolean | string[];
|
|
2968
2967
|
multiple: boolean;
|
|
2969
2968
|
landscape: boolean;
|
|
2970
|
-
range: string | boolean;
|
|
2971
2969
|
tag: string;
|
|
2972
2970
|
rounded: string | number | boolean;
|
|
2973
2971
|
modelValue: any[];
|
|
@@ -2980,10 +2978,10 @@ declare const VDatePicker: {
|
|
|
2980
2978
|
showAdjacentMonths: boolean;
|
|
2981
2979
|
hideWeekdays: boolean;
|
|
2982
2980
|
showWeek: boolean;
|
|
2983
|
-
cancelText: string;
|
|
2984
|
-
okText: string;
|
|
2985
2981
|
calendarIcon: string;
|
|
2986
2982
|
keyboardIcon: string;
|
|
2983
|
+
cancelText: string;
|
|
2984
|
+
okText: string;
|
|
2987
2985
|
inputText: string;
|
|
2988
2986
|
inputPlaceholder: string;
|
|
2989
2987
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -3019,9 +3017,9 @@ declare const VDatePicker: {
|
|
|
3019
3017
|
style: vue.StyleValue;
|
|
3020
3018
|
title: string;
|
|
3021
3019
|
inputMode: "calendar" | "keyboard";
|
|
3020
|
+
disabled: boolean | string[];
|
|
3022
3021
|
multiple: boolean;
|
|
3023
3022
|
landscape: boolean;
|
|
3024
|
-
range: string | boolean;
|
|
3025
3023
|
tag: string;
|
|
3026
3024
|
modelValue: any[];
|
|
3027
3025
|
collapseIcon: string;
|
|
@@ -3033,14 +3031,14 @@ declare const VDatePicker: {
|
|
|
3033
3031
|
showAdjacentMonths: boolean;
|
|
3034
3032
|
hideWeekdays: boolean;
|
|
3035
3033
|
showWeek: boolean;
|
|
3036
|
-
cancelText: string;
|
|
3037
|
-
okText: string;
|
|
3038
3034
|
calendarIcon: string;
|
|
3039
3035
|
keyboardIcon: string;
|
|
3036
|
+
cancelText: string;
|
|
3037
|
+
okText: string;
|
|
3040
3038
|
inputText: string;
|
|
3041
3039
|
inputPlaceholder: string;
|
|
3042
3040
|
} & {
|
|
3043
|
-
max?: number | undefined;
|
|
3041
|
+
max?: string | number | Date | undefined;
|
|
3044
3042
|
location?: Anchor | undefined;
|
|
3045
3043
|
height?: string | number | undefined;
|
|
3046
3044
|
width?: string | number | undefined;
|
|
@@ -3052,7 +3050,7 @@ declare const VDatePicker: {
|
|
|
3052
3050
|
minWidth?: string | number | undefined;
|
|
3053
3051
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
3054
3052
|
class?: any;
|
|
3055
|
-
min?: number | undefined;
|
|
3053
|
+
min?: string | number | Date | undefined;
|
|
3056
3054
|
elevation?: string | number | undefined;
|
|
3057
3055
|
format?: string | undefined;
|
|
3058
3056
|
side?: string | undefined;
|
|
@@ -3098,9 +3096,9 @@ declare const VDatePicker: {
|
|
|
3098
3096
|
style: vue.StyleValue;
|
|
3099
3097
|
title: string;
|
|
3100
3098
|
inputMode: "calendar" | "keyboard";
|
|
3099
|
+
disabled: boolean | string[];
|
|
3101
3100
|
multiple: boolean;
|
|
3102
3101
|
landscape: boolean;
|
|
3103
|
-
range: string | boolean;
|
|
3104
3102
|
tag: string;
|
|
3105
3103
|
modelValue: any[];
|
|
3106
3104
|
collapseIcon: string;
|
|
@@ -3112,14 +3110,14 @@ declare const VDatePicker: {
|
|
|
3112
3110
|
showAdjacentMonths: boolean;
|
|
3113
3111
|
hideWeekdays: boolean;
|
|
3114
3112
|
showWeek: boolean;
|
|
3115
|
-
cancelText: string;
|
|
3116
|
-
okText: string;
|
|
3117
3113
|
calendarIcon: string;
|
|
3118
3114
|
keyboardIcon: string;
|
|
3115
|
+
cancelText: string;
|
|
3116
|
+
okText: string;
|
|
3119
3117
|
inputText: string;
|
|
3120
3118
|
inputPlaceholder: string;
|
|
3121
3119
|
} & {
|
|
3122
|
-
max?: number | undefined;
|
|
3120
|
+
max?: string | number | Date | undefined;
|
|
3123
3121
|
location?: Anchor | undefined;
|
|
3124
3122
|
height?: string | number | undefined;
|
|
3125
3123
|
width?: string | number | undefined;
|
|
@@ -3131,7 +3129,7 @@ declare const VDatePicker: {
|
|
|
3131
3129
|
minWidth?: string | number | undefined;
|
|
3132
3130
|
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
3133
3131
|
class?: any;
|
|
3134
|
-
min?: number | undefined;
|
|
3132
|
+
min?: string | number | Date | undefined;
|
|
3135
3133
|
elevation?: string | number | undefined;
|
|
3136
3134
|
format?: string | undefined;
|
|
3137
3135
|
side?: string | undefined;
|
|
@@ -3181,9 +3179,9 @@ declare const VDatePicker: {
|
|
|
3181
3179
|
style: vue.StyleValue;
|
|
3182
3180
|
title: string;
|
|
3183
3181
|
inputMode: "calendar" | "keyboard";
|
|
3182
|
+
disabled: boolean | string[];
|
|
3184
3183
|
multiple: boolean;
|
|
3185
3184
|
landscape: boolean;
|
|
3186
|
-
range: string | boolean;
|
|
3187
3185
|
tag: string;
|
|
3188
3186
|
rounded: string | number | boolean;
|
|
3189
3187
|
modelValue: any[];
|
|
@@ -3196,10 +3194,10 @@ declare const VDatePicker: {
|
|
|
3196
3194
|
showAdjacentMonths: boolean;
|
|
3197
3195
|
hideWeekdays: boolean;
|
|
3198
3196
|
showWeek: boolean;
|
|
3199
|
-
cancelText: string;
|
|
3200
|
-
okText: string;
|
|
3201
3197
|
calendarIcon: string;
|
|
3202
3198
|
keyboardIcon: string;
|
|
3199
|
+
cancelText: string;
|
|
3200
|
+
okText: string;
|
|
3203
3201
|
inputText: string;
|
|
3204
3202
|
inputPlaceholder: string;
|
|
3205
3203
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -3247,9 +3245,9 @@ declare const VDatePicker: {
|
|
|
3247
3245
|
default: string;
|
|
3248
3246
|
};
|
|
3249
3247
|
color: StringConstructor;
|
|
3250
|
-
min: NumberConstructor;
|
|
3251
|
-
max: NumberConstructor;
|
|
3252
3248
|
displayDate: null;
|
|
3249
|
+
min: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
3250
|
+
max: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
3253
3251
|
format: StringConstructor;
|
|
3254
3252
|
modelValue: {
|
|
3255
3253
|
type: vue.PropType<any[]>;
|
|
@@ -3263,9 +3261,9 @@ declare const VDatePicker: {
|
|
|
3263
3261
|
side: {
|
|
3264
3262
|
type: StringConstructor;
|
|
3265
3263
|
};
|
|
3266
|
-
|
|
3267
|
-
type: vue.PropType<
|
|
3268
|
-
default:
|
|
3264
|
+
disabled: {
|
|
3265
|
+
type: vue.PropType<boolean | string[]>;
|
|
3266
|
+
default: boolean;
|
|
3269
3267
|
};
|
|
3270
3268
|
nextIcon: {
|
|
3271
3269
|
type: StringConstructor[];
|
|
@@ -3283,10 +3281,9 @@ declare const VDatePicker: {
|
|
|
3283
3281
|
type: StringConstructor[];
|
|
3284
3282
|
default: string;
|
|
3285
3283
|
};
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
validator: (v: any) => boolean;
|
|
3284
|
+
viewMode: {
|
|
3285
|
+
type: vue.PropType<"month" | "year">;
|
|
3286
|
+
default: string;
|
|
3290
3287
|
};
|
|
3291
3288
|
inputMode: {
|
|
3292
3289
|
type: vue.PropType<"calendar" | "keyboard">;
|
|
@@ -3358,9 +3355,9 @@ declare const VDatePicker: {
|
|
|
3358
3355
|
default: string;
|
|
3359
3356
|
};
|
|
3360
3357
|
color: StringConstructor;
|
|
3361
|
-
min: NumberConstructor;
|
|
3362
|
-
max: NumberConstructor;
|
|
3363
3358
|
displayDate: null;
|
|
3359
|
+
min: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
3360
|
+
max: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
3364
3361
|
format: StringConstructor;
|
|
3365
3362
|
modelValue: {
|
|
3366
3363
|
type: vue.PropType<any[]>;
|
|
@@ -3374,9 +3371,9 @@ declare const VDatePicker: {
|
|
|
3374
3371
|
side: {
|
|
3375
3372
|
type: StringConstructor;
|
|
3376
3373
|
};
|
|
3377
|
-
|
|
3378
|
-
type: vue.PropType<
|
|
3379
|
-
default:
|
|
3374
|
+
disabled: {
|
|
3375
|
+
type: vue.PropType<boolean | string[]>;
|
|
3376
|
+
default: boolean;
|
|
3380
3377
|
};
|
|
3381
3378
|
nextIcon: {
|
|
3382
3379
|
type: StringConstructor[];
|
|
@@ -3394,10 +3391,9 @@ declare const VDatePicker: {
|
|
|
3394
3391
|
type: StringConstructor[];
|
|
3395
3392
|
default: string;
|
|
3396
3393
|
};
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
validator: (v: any) => boolean;
|
|
3394
|
+
viewMode: {
|
|
3395
|
+
type: vue.PropType<"month" | "year">;
|
|
3396
|
+
default: string;
|
|
3401
3397
|
};
|
|
3402
3398
|
inputMode: {
|
|
3403
3399
|
type: vue.PropType<"calendar" | "keyboard">;
|
|
@@ -3440,12 +3436,11 @@ declare const VDatePickerControls: {
|
|
|
3440
3436
|
$: vue.ComponentInternalInstance;
|
|
3441
3437
|
$data: {};
|
|
3442
3438
|
$props: {
|
|
3443
|
-
|
|
3439
|
+
disabled?: boolean | string[] | undefined;
|
|
3444
3440
|
collapseIcon?: string | undefined;
|
|
3445
3441
|
expandIcon?: string | undefined;
|
|
3446
3442
|
nextIcon?: string | undefined;
|
|
3447
3443
|
prevIcon?: string | undefined;
|
|
3448
|
-
displayDate?: any;
|
|
3449
3444
|
viewMode?: "month" | "year" | undefined;
|
|
3450
3445
|
key?: string | number | symbol | undefined;
|
|
3451
3446
|
style?: unknown;
|
|
@@ -3453,7 +3448,6 @@ declare const VDatePickerControls: {
|
|
|
3453
3448
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
3454
3449
|
default?: (() => vue.VNodeChild) | undefined;
|
|
3455
3450
|
};
|
|
3456
|
-
format?: string | undefined;
|
|
3457
3451
|
ref?: vue.VNodeRef | undefined;
|
|
3458
3452
|
ref_for?: boolean | undefined;
|
|
3459
3453
|
ref_key?: string | undefined;
|
|
@@ -3499,9 +3493,10 @@ declare const VDatePickerControls: {
|
|
|
3499
3493
|
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3500
3494
|
[key: string]: any;
|
|
3501
3495
|
}>) => void)[] | undefined;
|
|
3502
|
-
|
|
3503
|
-
"
|
|
3504
|
-
"
|
|
3496
|
+
displayDate?: string | undefined;
|
|
3497
|
+
"onClick:mode"?: (() => any) | undefined;
|
|
3498
|
+
"onClick:prev"?: (() => any) | undefined;
|
|
3499
|
+
"onClick:next"?: (() => any) | undefined;
|
|
3505
3500
|
};
|
|
3506
3501
|
$attrs: {
|
|
3507
3502
|
[x: string]: unknown;
|
|
@@ -3516,18 +3511,17 @@ declare const VDatePickerControls: {
|
|
|
3516
3511
|
}>;
|
|
3517
3512
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
3518
3513
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
3519
|
-
$emit: ((event: "
|
|
3514
|
+
$emit: ((event: "click:mode") => void) & ((event: "click:prev") => void) & ((event: "click:next") => void);
|
|
3520
3515
|
$el: any;
|
|
3521
3516
|
$options: vue.ComponentOptionsBase<{
|
|
3522
|
-
|
|
3517
|
+
disabled: boolean | string[];
|
|
3523
3518
|
collapseIcon: string;
|
|
3524
3519
|
expandIcon: string;
|
|
3525
3520
|
nextIcon: string;
|
|
3526
3521
|
prevIcon: string;
|
|
3527
|
-
displayDate: any;
|
|
3528
3522
|
viewMode: "month" | "year";
|
|
3529
3523
|
} & {
|
|
3530
|
-
|
|
3524
|
+
displayDate?: string | undefined;
|
|
3531
3525
|
} & {
|
|
3532
3526
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
3533
3527
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -3538,20 +3532,19 @@ declare const VDatePickerControls: {
|
|
|
3538
3532
|
} & {
|
|
3539
3533
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
3540
3534
|
} & {
|
|
3541
|
-
"
|
|
3542
|
-
"
|
|
3543
|
-
"
|
|
3535
|
+
"onClick:mode"?: (() => any) | undefined;
|
|
3536
|
+
"onClick:prev"?: (() => any) | undefined;
|
|
3537
|
+
"onClick:next"?: (() => any) | undefined;
|
|
3544
3538
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3545
|
-
'
|
|
3546
|
-
'
|
|
3547
|
-
'
|
|
3539
|
+
'click:mode': () => true;
|
|
3540
|
+
'click:prev': () => true;
|
|
3541
|
+
'click:next': () => true;
|
|
3548
3542
|
}, string, {
|
|
3549
|
-
|
|
3543
|
+
disabled: boolean | string[];
|
|
3550
3544
|
collapseIcon: string;
|
|
3551
3545
|
expandIcon: string;
|
|
3552
3546
|
nextIcon: string;
|
|
3553
3547
|
prevIcon: string;
|
|
3554
|
-
displayDate: any;
|
|
3555
3548
|
viewMode: "month" | "year";
|
|
3556
3549
|
}, {}, string, vue.SlotsType<Partial<{
|
|
3557
3550
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -3578,15 +3571,14 @@ declare const VDatePickerControls: {
|
|
|
3578
3571
|
$nextTick: typeof vue.nextTick;
|
|
3579
3572
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
3580
3573
|
} & {
|
|
3581
|
-
|
|
3574
|
+
disabled: boolean | string[];
|
|
3582
3575
|
collapseIcon: string;
|
|
3583
3576
|
expandIcon: string;
|
|
3584
3577
|
nextIcon: string;
|
|
3585
3578
|
prevIcon: string;
|
|
3586
|
-
displayDate: any;
|
|
3587
3579
|
viewMode: "month" | "year";
|
|
3588
3580
|
} & {
|
|
3589
|
-
|
|
3581
|
+
displayDate?: string | undefined;
|
|
3590
3582
|
} & {
|
|
3591
3583
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
3592
3584
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -3597,23 +3589,22 @@ declare const VDatePickerControls: {
|
|
|
3597
3589
|
} & {
|
|
3598
3590
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
3599
3591
|
} & {
|
|
3600
|
-
"
|
|
3601
|
-
"
|
|
3602
|
-
"
|
|
3592
|
+
"onClick:mode"?: (() => any) | undefined;
|
|
3593
|
+
"onClick:prev"?: (() => any) | undefined;
|
|
3594
|
+
"onClick:next"?: (() => any) | undefined;
|
|
3603
3595
|
} & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties & {};
|
|
3604
3596
|
__isFragment?: undefined;
|
|
3605
3597
|
__isTeleport?: undefined;
|
|
3606
3598
|
__isSuspense?: undefined;
|
|
3607
3599
|
} & vue.ComponentOptionsBase<{
|
|
3608
|
-
|
|
3600
|
+
disabled: boolean | string[];
|
|
3609
3601
|
collapseIcon: string;
|
|
3610
3602
|
expandIcon: string;
|
|
3611
3603
|
nextIcon: string;
|
|
3612
3604
|
prevIcon: string;
|
|
3613
|
-
displayDate: any;
|
|
3614
3605
|
viewMode: "month" | "year";
|
|
3615
3606
|
} & {
|
|
3616
|
-
|
|
3607
|
+
displayDate?: string | undefined;
|
|
3617
3608
|
} & {
|
|
3618
3609
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
3619
3610
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -3624,34 +3615,29 @@ declare const VDatePickerControls: {
|
|
|
3624
3615
|
} & {
|
|
3625
3616
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
3626
3617
|
} & {
|
|
3627
|
-
"
|
|
3628
|
-
"
|
|
3629
|
-
"
|
|
3618
|
+
"onClick:mode"?: (() => any) | undefined;
|
|
3619
|
+
"onClick:prev"?: (() => any) | undefined;
|
|
3620
|
+
"onClick:next"?: (() => any) | undefined;
|
|
3630
3621
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
3631
|
-
'
|
|
3632
|
-
'
|
|
3633
|
-
'
|
|
3622
|
+
'click:mode': () => true;
|
|
3623
|
+
'click:prev': () => true;
|
|
3624
|
+
'click:next': () => true;
|
|
3634
3625
|
}, string, {
|
|
3635
|
-
|
|
3626
|
+
disabled: boolean | string[];
|
|
3636
3627
|
collapseIcon: string;
|
|
3637
3628
|
expandIcon: string;
|
|
3638
3629
|
nextIcon: string;
|
|
3639
3630
|
prevIcon: string;
|
|
3640
|
-
displayDate: any;
|
|
3641
3631
|
viewMode: "month" | "year";
|
|
3642
3632
|
}, {}, string, vue.SlotsType<Partial<{
|
|
3643
3633
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3644
3634
|
[key: string]: any;
|
|
3645
3635
|
}>[];
|
|
3646
3636
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
type:
|
|
3650
|
-
default:
|
|
3651
|
-
};
|
|
3652
|
-
viewMode: {
|
|
3653
|
-
type: vue.PropType<"month" | "year">;
|
|
3654
|
-
default: string;
|
|
3637
|
+
displayDate: StringConstructor;
|
|
3638
|
+
disabled: {
|
|
3639
|
+
type: PropType<boolean | string[]>;
|
|
3640
|
+
default: boolean;
|
|
3655
3641
|
};
|
|
3656
3642
|
nextIcon: {
|
|
3657
3643
|
type: StringConstructor[];
|
|
@@ -3669,21 +3655,16 @@ declare const VDatePickerControls: {
|
|
|
3669
3655
|
type: StringConstructor[];
|
|
3670
3656
|
default: string;
|
|
3671
3657
|
};
|
|
3672
|
-
range: {
|
|
3673
|
-
default: boolean;
|
|
3674
|
-
type: (StringConstructor | BooleanConstructor)[];
|
|
3675
|
-
validator: (v: any) => boolean;
|
|
3676
|
-
};
|
|
3677
|
-
}, vue.ExtractPropTypes<{
|
|
3678
|
-
format: StringConstructor;
|
|
3679
|
-
displayDate: {
|
|
3680
|
-
type: vue.PropType<any>;
|
|
3681
|
-
default: null;
|
|
3682
|
-
};
|
|
3683
3658
|
viewMode: {
|
|
3684
|
-
type:
|
|
3659
|
+
type: PropType<"month" | "year">;
|
|
3685
3660
|
default: string;
|
|
3686
3661
|
};
|
|
3662
|
+
}, vue.ExtractPropTypes<{
|
|
3663
|
+
displayDate: StringConstructor;
|
|
3664
|
+
disabled: {
|
|
3665
|
+
type: PropType<boolean | string[]>;
|
|
3666
|
+
default: boolean;
|
|
3667
|
+
};
|
|
3687
3668
|
nextIcon: {
|
|
3688
3669
|
type: StringConstructor[];
|
|
3689
3670
|
default: string;
|
|
@@ -3700,10 +3681,9 @@ declare const VDatePickerControls: {
|
|
|
3700
3681
|
type: StringConstructor[];
|
|
3701
3682
|
default: string;
|
|
3702
3683
|
};
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
validator: (v: any) => boolean;
|
|
3684
|
+
viewMode: {
|
|
3685
|
+
type: PropType<"month" | "year">;
|
|
3686
|
+
default: string;
|
|
3707
3687
|
};
|
|
3708
3688
|
}>>;
|
|
3709
3689
|
type VDatePickerControls = InstanceType<typeof VDatePickerControls>;
|
|
@@ -3936,12 +3916,14 @@ declare const VDatePickerMonth: {
|
|
|
3936
3916
|
showAdjacentMonths?: boolean | undefined;
|
|
3937
3917
|
hideWeekdays?: boolean | undefined;
|
|
3938
3918
|
showWeek?: boolean | undefined;
|
|
3919
|
+
max?: string | number | Date | undefined;
|
|
3939
3920
|
key?: string | number | symbol | undefined;
|
|
3940
3921
|
style?: unknown;
|
|
3941
3922
|
class?: unknown;
|
|
3942
3923
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
3943
3924
|
default?: (() => vue.VNodeChild) | undefined;
|
|
3944
3925
|
};
|
|
3926
|
+
min?: string | number | Date | undefined;
|
|
3945
3927
|
format?: string | undefined;
|
|
3946
3928
|
ref?: vue.VNodeRef | undefined;
|
|
3947
3929
|
ref_for?: boolean | undefined;
|
|
@@ -4019,6 +4001,8 @@ declare const VDatePickerMonth: {
|
|
|
4019
4001
|
hideWeekdays: boolean;
|
|
4020
4002
|
showWeek: boolean;
|
|
4021
4003
|
} & {
|
|
4004
|
+
max?: string | number | Date | undefined;
|
|
4005
|
+
min?: string | number | Date | undefined;
|
|
4022
4006
|
format?: string | undefined;
|
|
4023
4007
|
side?: string | undefined;
|
|
4024
4008
|
hoverDate?: any;
|
|
@@ -4082,6 +4066,8 @@ declare const VDatePickerMonth: {
|
|
|
4082
4066
|
hideWeekdays: boolean;
|
|
4083
4067
|
showWeek: boolean;
|
|
4084
4068
|
} & {
|
|
4069
|
+
max?: string | number | Date | undefined;
|
|
4070
|
+
min?: string | number | Date | undefined;
|
|
4085
4071
|
format?: string | undefined;
|
|
4086
4072
|
side?: string | undefined;
|
|
4087
4073
|
hoverDate?: any;
|
|
@@ -4112,6 +4098,8 @@ declare const VDatePickerMonth: {
|
|
|
4112
4098
|
hideWeekdays: boolean;
|
|
4113
4099
|
showWeek: boolean;
|
|
4114
4100
|
} & {
|
|
4101
|
+
max?: string | number | Date | undefined;
|
|
4102
|
+
min?: string | number | Date | undefined;
|
|
4115
4103
|
format?: string | undefined;
|
|
4116
4104
|
side?: string | undefined;
|
|
4117
4105
|
hoverDate?: any;
|
|
@@ -4168,6 +4156,8 @@ declare const VDatePickerMonth: {
|
|
|
4168
4156
|
side: {
|
|
4169
4157
|
type: StringConstructor;
|
|
4170
4158
|
};
|
|
4159
|
+
min: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
4160
|
+
max: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
4171
4161
|
}, vue.ExtractPropTypes<{
|
|
4172
4162
|
format: StringConstructor;
|
|
4173
4163
|
modelValue: {
|
|
@@ -4190,6 +4180,8 @@ declare const VDatePickerMonth: {
|
|
|
4190
4180
|
side: {
|
|
4191
4181
|
type: StringConstructor;
|
|
4192
4182
|
};
|
|
4183
|
+
min: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
4184
|
+
max: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
4193
4185
|
}>>;
|
|
4194
4186
|
type VDatePickerMonth = InstanceType<typeof VDatePickerMonth>;
|
|
4195
4187
|
|
|
@@ -4198,7 +4190,7 @@ declare const VDatePickerYears: {
|
|
|
4198
4190
|
$: vue.ComponentInternalInstance;
|
|
4199
4191
|
$data: {};
|
|
4200
4192
|
$props: {
|
|
4201
|
-
max?: number | undefined;
|
|
4193
|
+
max?: string | number | Date | undefined;
|
|
4202
4194
|
key?: string | number | symbol | undefined;
|
|
4203
4195
|
height?: string | number | undefined;
|
|
4204
4196
|
color?: string | undefined;
|
|
@@ -4207,7 +4199,7 @@ declare const VDatePickerYears: {
|
|
|
4207
4199
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
4208
4200
|
default?: (() => vue.VNodeChild) | undefined;
|
|
4209
4201
|
};
|
|
4210
|
-
min?: number | undefined;
|
|
4202
|
+
min?: string | number | Date | undefined;
|
|
4211
4203
|
ref?: vue.VNodeRef | undefined;
|
|
4212
4204
|
ref_for?: boolean | undefined;
|
|
4213
4205
|
ref_key?: string | undefined;
|
|
@@ -4254,8 +4246,8 @@ declare const VDatePickerYears: {
|
|
|
4254
4246
|
[key: string]: any;
|
|
4255
4247
|
}>) => void)[] | undefined;
|
|
4256
4248
|
displayDate?: any;
|
|
4249
|
+
"onClick:mode"?: (() => any) | undefined;
|
|
4257
4250
|
"onUpdate:displayDate"?: ((date: any) => any) | undefined;
|
|
4258
|
-
"onUpdate:viewMode"?: ((date: any) => any) | undefined;
|
|
4259
4251
|
};
|
|
4260
4252
|
$attrs: {
|
|
4261
4253
|
[x: string]: unknown;
|
|
@@ -4270,13 +4262,13 @@ declare const VDatePickerYears: {
|
|
|
4270
4262
|
}>;
|
|
4271
4263
|
$root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
4272
4264
|
$parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
4273
|
-
$emit: ((event: "
|
|
4265
|
+
$emit: ((event: "click:mode") => void) & ((event: "update:displayDate", date: any) => void);
|
|
4274
4266
|
$el: any;
|
|
4275
4267
|
$options: vue.ComponentOptionsBase<{} & {
|
|
4276
|
-
max?: number | undefined;
|
|
4268
|
+
max?: string | number | Date | undefined;
|
|
4277
4269
|
height?: string | number | undefined;
|
|
4278
4270
|
color?: string | undefined;
|
|
4279
|
-
min?: number | undefined;
|
|
4271
|
+
min?: string | number | Date | undefined;
|
|
4280
4272
|
displayDate?: any;
|
|
4281
4273
|
} & {
|
|
4282
4274
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -4288,11 +4280,11 @@ declare const VDatePickerYears: {
|
|
|
4288
4280
|
} & {
|
|
4289
4281
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
4290
4282
|
} & {
|
|
4283
|
+
"onClick:mode"?: (() => any) | undefined;
|
|
4291
4284
|
"onUpdate:displayDate"?: ((date: any) => any) | undefined;
|
|
4292
|
-
"onUpdate:viewMode"?: ((date: any) => any) | undefined;
|
|
4293
4285
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
4294
4286
|
'update:displayDate': (date: any) => true;
|
|
4295
|
-
'
|
|
4287
|
+
'click:mode': () => true;
|
|
4296
4288
|
}, string, {}, {}, string, vue.SlotsType<Partial<{
|
|
4297
4289
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
4298
4290
|
[key: string]: any;
|
|
@@ -4318,10 +4310,10 @@ declare const VDatePickerYears: {
|
|
|
4318
4310
|
$nextTick: typeof vue.nextTick;
|
|
4319
4311
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
4320
4312
|
} & {} & {
|
|
4321
|
-
max?: number | undefined;
|
|
4313
|
+
max?: string | number | Date | undefined;
|
|
4322
4314
|
height?: string | number | undefined;
|
|
4323
4315
|
color?: string | undefined;
|
|
4324
|
-
min?: number | undefined;
|
|
4316
|
+
min?: string | number | Date | undefined;
|
|
4325
4317
|
displayDate?: any;
|
|
4326
4318
|
} & {
|
|
4327
4319
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -4333,17 +4325,17 @@ declare const VDatePickerYears: {
|
|
|
4333
4325
|
} & {
|
|
4334
4326
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
4335
4327
|
} & {
|
|
4328
|
+
"onClick:mode"?: (() => any) | undefined;
|
|
4336
4329
|
"onUpdate:displayDate"?: ((date: any) => any) | undefined;
|
|
4337
|
-
"onUpdate:viewMode"?: ((date: any) => any) | undefined;
|
|
4338
4330
|
} & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties & {};
|
|
4339
4331
|
__isFragment?: undefined;
|
|
4340
4332
|
__isTeleport?: undefined;
|
|
4341
4333
|
__isSuspense?: undefined;
|
|
4342
4334
|
} & vue.ComponentOptionsBase<{} & {
|
|
4343
|
-
max?: number | undefined;
|
|
4335
|
+
max?: string | number | Date | undefined;
|
|
4344
4336
|
height?: string | number | undefined;
|
|
4345
4337
|
color?: string | undefined;
|
|
4346
|
-
min?: number | undefined;
|
|
4338
|
+
min?: string | number | Date | undefined;
|
|
4347
4339
|
displayDate?: any;
|
|
4348
4340
|
} & {
|
|
4349
4341
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -4355,27 +4347,27 @@ declare const VDatePickerYears: {
|
|
|
4355
4347
|
} & {
|
|
4356
4348
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
4357
4349
|
} & {
|
|
4350
|
+
"onClick:mode"?: (() => any) | undefined;
|
|
4358
4351
|
"onUpdate:displayDate"?: ((date: any) => any) | undefined;
|
|
4359
|
-
"onUpdate:viewMode"?: ((date: any) => any) | undefined;
|
|
4360
4352
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
4361
4353
|
'update:displayDate': (date: any) => true;
|
|
4362
|
-
'
|
|
4354
|
+
'click:mode': () => true;
|
|
4363
4355
|
}, string, {}, {}, string, vue.SlotsType<Partial<{
|
|
4364
4356
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
4365
4357
|
[key: string]: any;
|
|
4366
4358
|
}>[];
|
|
4367
4359
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
4368
4360
|
color: StringConstructor;
|
|
4369
|
-
min: NumberConstructor;
|
|
4370
|
-
max: NumberConstructor;
|
|
4371
4361
|
height: (StringConstructor | NumberConstructor)[];
|
|
4372
4362
|
displayDate: null;
|
|
4363
|
+
min: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
4364
|
+
max: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
4373
4365
|
}, vue.ExtractPropTypes<{
|
|
4374
4366
|
color: StringConstructor;
|
|
4375
|
-
min: NumberConstructor;
|
|
4376
|
-
max: NumberConstructor;
|
|
4377
4367
|
height: (StringConstructor | NumberConstructor)[];
|
|
4378
4368
|
displayDate: null;
|
|
4369
|
+
min: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
4370
|
+
max: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
4379
4371
|
}>>;
|
|
4380
4372
|
type VDatePickerYears = InstanceType<typeof VDatePickerYears>;
|
|
4381
4373
|
|