@vuetify/nightly 3.5.9-dev.2024-03-29 → 3.5.9-dev.2024-03-30
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/CHANGELOG.md +4 -2
- package/dist/json/attributes.json +16 -0
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +90 -90
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +42 -2
- package/dist/vuetify-labs.css +1778 -1776
- package/dist/vuetify-labs.d.ts +60 -0
- package/dist/vuetify-labs.esm.js +65 -44
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +65 -44
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +477 -475
- package/dist/vuetify.d.ts +93 -33
- package/dist/vuetify.esm.js +65 -44
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +65 -44
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTableFooter.mjs +1 -1
- package/lib/components/VDataTable/VDataTableFooter.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +64 -42
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +60 -0
- package/lib/components/index.d.mts +60 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +33 -33
- package/lib/labs/VPicker/VPicker.css +2 -0
- package/lib/labs/VPicker/VPicker.sass +2 -0
- package/lib/styles/generic/_transitions.scss +4 -4
- package/lib/styles/main.css +4 -4
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
|
@@ -27394,6 +27394,7 @@ type VDatePickerSlots = Omit<VPickerSlots, 'header'> & {
|
|
|
27394
27394
|
};
|
|
27395
27395
|
declare const VDatePicker: {
|
|
27396
27396
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
27397
|
+
transition: string;
|
|
27397
27398
|
header: string;
|
|
27398
27399
|
style: vue.StyleValue;
|
|
27399
27400
|
title: string;
|
|
@@ -27403,6 +27404,7 @@ declare const VDatePicker: {
|
|
|
27403
27404
|
tile: boolean;
|
|
27404
27405
|
nextIcon: string;
|
|
27405
27406
|
prevIcon: string;
|
|
27407
|
+
reverseTransition: string;
|
|
27406
27408
|
modeIcon: string;
|
|
27407
27409
|
viewMode: "month" | "year" | "months";
|
|
27408
27410
|
showAdjacentMonths: boolean;
|
|
@@ -27444,6 +27446,7 @@ declare const VDatePicker: {
|
|
|
27444
27446
|
'update:year': (date: any) => true;
|
|
27445
27447
|
'update:viewMode': (date: any) => true;
|
|
27446
27448
|
}, "multiple" | "$children" | "v-slot:default" | "v-slots" | "modelValue" | "v-slot:title" | "update:modelValue" | "v-slot:header" | "v-slot:actions">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
27449
|
+
transition: string;
|
|
27447
27450
|
header: string;
|
|
27448
27451
|
style: vue.StyleValue;
|
|
27449
27452
|
title: string;
|
|
@@ -27453,6 +27456,7 @@ declare const VDatePicker: {
|
|
|
27453
27456
|
tile: boolean;
|
|
27454
27457
|
nextIcon: string;
|
|
27455
27458
|
prevIcon: string;
|
|
27459
|
+
reverseTransition: string;
|
|
27456
27460
|
modeIcon: string;
|
|
27457
27461
|
viewMode: "month" | "year" | "months";
|
|
27458
27462
|
showAdjacentMonths: boolean;
|
|
@@ -27490,6 +27494,7 @@ declare const VDatePicker: {
|
|
|
27490
27494
|
"onUpdate:viewMode"?: ((date: any) => any) | undefined;
|
|
27491
27495
|
}, {
|
|
27492
27496
|
active: string | string[];
|
|
27497
|
+
transition: string;
|
|
27493
27498
|
header: string;
|
|
27494
27499
|
style: vue.StyleValue;
|
|
27495
27500
|
title: string;
|
|
@@ -27500,6 +27505,7 @@ declare const VDatePicker: {
|
|
|
27500
27505
|
tile: boolean;
|
|
27501
27506
|
nextIcon: string;
|
|
27502
27507
|
prevIcon: string;
|
|
27508
|
+
reverseTransition: string;
|
|
27503
27509
|
modeIcon: string;
|
|
27504
27510
|
viewMode: "month" | "year" | "months";
|
|
27505
27511
|
showAdjacentMonths: boolean;
|
|
@@ -27531,6 +27537,7 @@ declare const VDatePicker: {
|
|
|
27531
27537
|
M: {};
|
|
27532
27538
|
Defaults: {};
|
|
27533
27539
|
}, {
|
|
27540
|
+
transition: string;
|
|
27534
27541
|
header: string;
|
|
27535
27542
|
style: vue.StyleValue;
|
|
27536
27543
|
title: string;
|
|
@@ -27540,6 +27547,7 @@ declare const VDatePicker: {
|
|
|
27540
27547
|
tile: boolean;
|
|
27541
27548
|
nextIcon: string;
|
|
27542
27549
|
prevIcon: string;
|
|
27550
|
+
reverseTransition: string;
|
|
27543
27551
|
modeIcon: string;
|
|
27544
27552
|
viewMode: "month" | "year" | "months";
|
|
27545
27553
|
showAdjacentMonths: boolean;
|
|
@@ -27577,6 +27585,7 @@ declare const VDatePicker: {
|
|
|
27577
27585
|
"onUpdate:viewMode"?: ((date: any) => any) | undefined;
|
|
27578
27586
|
}, {}, {}, {}, {}, {
|
|
27579
27587
|
active: string | string[];
|
|
27588
|
+
transition: string;
|
|
27580
27589
|
header: string;
|
|
27581
27590
|
style: vue.StyleValue;
|
|
27582
27591
|
title: string;
|
|
@@ -27587,6 +27596,7 @@ declare const VDatePicker: {
|
|
|
27587
27596
|
tile: boolean;
|
|
27588
27597
|
nextIcon: string;
|
|
27589
27598
|
prevIcon: string;
|
|
27599
|
+
reverseTransition: string;
|
|
27590
27600
|
modeIcon: string;
|
|
27591
27601
|
viewMode: "month" | "year" | "months";
|
|
27592
27602
|
showAdjacentMonths: boolean;
|
|
@@ -27599,6 +27609,7 @@ declare const VDatePicker: {
|
|
|
27599
27609
|
__isTeleport?: undefined;
|
|
27600
27610
|
__isSuspense?: undefined;
|
|
27601
27611
|
} & vue.ComponentOptionsBase<{
|
|
27612
|
+
transition: string;
|
|
27602
27613
|
header: string;
|
|
27603
27614
|
style: vue.StyleValue;
|
|
27604
27615
|
title: string;
|
|
@@ -27608,6 +27619,7 @@ declare const VDatePicker: {
|
|
|
27608
27619
|
tile: boolean;
|
|
27609
27620
|
nextIcon: string;
|
|
27610
27621
|
prevIcon: string;
|
|
27622
|
+
reverseTransition: string;
|
|
27611
27623
|
modeIcon: string;
|
|
27612
27624
|
viewMode: "month" | "year" | "months";
|
|
27613
27625
|
showAdjacentMonths: boolean;
|
|
@@ -27650,6 +27662,7 @@ declare const VDatePicker: {
|
|
|
27650
27662
|
'update:viewMode': (date: any) => true;
|
|
27651
27663
|
}, "multiple" | "$children" | "v-slot:default" | "v-slots" | "modelValue" | "v-slot:title" | "update:modelValue" | "v-slot:header" | "v-slot:actions">, string, {
|
|
27652
27664
|
active: string | string[];
|
|
27665
|
+
transition: string;
|
|
27653
27666
|
header: string;
|
|
27654
27667
|
style: vue.StyleValue;
|
|
27655
27668
|
title: string;
|
|
@@ -27660,6 +27673,7 @@ declare const VDatePicker: {
|
|
|
27660
27673
|
tile: boolean;
|
|
27661
27674
|
nextIcon: string;
|
|
27662
27675
|
prevIcon: string;
|
|
27676
|
+
reverseTransition: string;
|
|
27663
27677
|
modeIcon: string;
|
|
27664
27678
|
viewMode: "month" | "year" | "months";
|
|
27665
27679
|
showAdjacentMonths: boolean;
|
|
@@ -27760,6 +27774,14 @@ declare const VDatePicker: {
|
|
|
27760
27774
|
hideWeekdays: BooleanConstructor;
|
|
27761
27775
|
multiple: vue.PropType<number | boolean | "range" | (string & {})>;
|
|
27762
27776
|
showWeek: BooleanConstructor;
|
|
27777
|
+
transition: {
|
|
27778
|
+
type: StringConstructor;
|
|
27779
|
+
default: string;
|
|
27780
|
+
};
|
|
27781
|
+
reverseTransition: {
|
|
27782
|
+
type: StringConstructor;
|
|
27783
|
+
default: string;
|
|
27784
|
+
};
|
|
27763
27785
|
active: {
|
|
27764
27786
|
type: vue.PropType<string | string[]>;
|
|
27765
27787
|
default: undefined;
|
|
@@ -27854,6 +27876,14 @@ declare const VDatePicker: {
|
|
|
27854
27876
|
hideWeekdays: BooleanConstructor;
|
|
27855
27877
|
multiple: vue.PropType<number | boolean | "range" | (string & {})>;
|
|
27856
27878
|
showWeek: BooleanConstructor;
|
|
27879
|
+
transition: {
|
|
27880
|
+
type: StringConstructor;
|
|
27881
|
+
default: string;
|
|
27882
|
+
};
|
|
27883
|
+
reverseTransition: {
|
|
27884
|
+
type: StringConstructor;
|
|
27885
|
+
default: string;
|
|
27886
|
+
};
|
|
27857
27887
|
active: {
|
|
27858
27888
|
type: vue.PropType<string | string[]>;
|
|
27859
27889
|
default: undefined;
|
|
@@ -28237,7 +28267,9 @@ type VDatePickerHeader = InstanceType<typeof VDatePickerHeader>;
|
|
|
28237
28267
|
|
|
28238
28268
|
declare const VDatePickerMonth: {
|
|
28239
28269
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
28270
|
+
transition: string;
|
|
28240
28271
|
disabled: boolean;
|
|
28272
|
+
reverseTransition: string;
|
|
28241
28273
|
showAdjacentMonths: boolean;
|
|
28242
28274
|
weekdays: number[];
|
|
28243
28275
|
hideWeekdays: boolean;
|
|
@@ -28288,7 +28320,9 @@ declare const VDatePickerMonth: {
|
|
|
28288
28320
|
'update:month': (date: number) => true;
|
|
28289
28321
|
'update:year': (date: number) => true;
|
|
28290
28322
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
28323
|
+
transition: string;
|
|
28291
28324
|
disabled: boolean;
|
|
28325
|
+
reverseTransition: string;
|
|
28292
28326
|
showAdjacentMonths: boolean;
|
|
28293
28327
|
weekdays: number[];
|
|
28294
28328
|
hideWeekdays: boolean;
|
|
@@ -28335,7 +28369,9 @@ declare const VDatePickerMonth: {
|
|
|
28335
28369
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
28336
28370
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
28337
28371
|
}, {
|
|
28372
|
+
transition: string;
|
|
28338
28373
|
disabled: boolean;
|
|
28374
|
+
reverseTransition: string;
|
|
28339
28375
|
showAdjacentMonths: boolean;
|
|
28340
28376
|
weekdays: number[];
|
|
28341
28377
|
hideWeekdays: boolean;
|
|
@@ -28358,7 +28394,9 @@ declare const VDatePickerMonth: {
|
|
|
28358
28394
|
M: {};
|
|
28359
28395
|
Defaults: {};
|
|
28360
28396
|
}, {
|
|
28397
|
+
transition: string;
|
|
28361
28398
|
disabled: boolean;
|
|
28399
|
+
reverseTransition: string;
|
|
28362
28400
|
showAdjacentMonths: boolean;
|
|
28363
28401
|
weekdays: number[];
|
|
28364
28402
|
hideWeekdays: boolean;
|
|
@@ -28405,7 +28443,9 @@ declare const VDatePickerMonth: {
|
|
|
28405
28443
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
28406
28444
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
28407
28445
|
}, () => JSX.Element, {}, {}, {}, {
|
|
28446
|
+
transition: string;
|
|
28408
28447
|
disabled: boolean;
|
|
28448
|
+
reverseTransition: string;
|
|
28409
28449
|
showAdjacentMonths: boolean;
|
|
28410
28450
|
weekdays: number[];
|
|
28411
28451
|
hideWeekdays: boolean;
|
|
@@ -28415,7 +28455,9 @@ declare const VDatePickerMonth: {
|
|
|
28415
28455
|
__isTeleport?: undefined;
|
|
28416
28456
|
__isSuspense?: undefined;
|
|
28417
28457
|
} & vue.ComponentOptionsBase<{
|
|
28458
|
+
transition: string;
|
|
28418
28459
|
disabled: boolean;
|
|
28460
|
+
reverseTransition: string;
|
|
28419
28461
|
showAdjacentMonths: boolean;
|
|
28420
28462
|
weekdays: number[];
|
|
28421
28463
|
hideWeekdays: boolean;
|
|
@@ -28466,7 +28508,9 @@ declare const VDatePickerMonth: {
|
|
|
28466
28508
|
'update:month': (date: number) => true;
|
|
28467
28509
|
'update:year': (date: number) => true;
|
|
28468
28510
|
}, string, {
|
|
28511
|
+
transition: string;
|
|
28469
28512
|
disabled: boolean;
|
|
28513
|
+
reverseTransition: string;
|
|
28470
28514
|
showAdjacentMonths: boolean;
|
|
28471
28515
|
weekdays: number[];
|
|
28472
28516
|
hideWeekdays: boolean;
|
|
@@ -28512,6 +28556,14 @@ declare const VDatePickerMonth: {
|
|
|
28512
28556
|
hideWeekdays: BooleanConstructor;
|
|
28513
28557
|
multiple: PropType<number | boolean | "range" | (string & {})>;
|
|
28514
28558
|
showWeek: BooleanConstructor;
|
|
28559
|
+
transition: {
|
|
28560
|
+
type: StringConstructor;
|
|
28561
|
+
default: string;
|
|
28562
|
+
};
|
|
28563
|
+
reverseTransition: {
|
|
28564
|
+
type: StringConstructor;
|
|
28565
|
+
default: string;
|
|
28566
|
+
};
|
|
28515
28567
|
}, vue.ExtractPropTypes<{
|
|
28516
28568
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
28517
28569
|
disabled: BooleanConstructor;
|
|
@@ -28543,6 +28595,14 @@ declare const VDatePickerMonth: {
|
|
|
28543
28595
|
hideWeekdays: BooleanConstructor;
|
|
28544
28596
|
multiple: PropType<number | boolean | "range" | (string & {})>;
|
|
28545
28597
|
showWeek: BooleanConstructor;
|
|
28598
|
+
transition: {
|
|
28599
|
+
type: StringConstructor;
|
|
28600
|
+
default: string;
|
|
28601
|
+
};
|
|
28602
|
+
reverseTransition: {
|
|
28603
|
+
type: StringConstructor;
|
|
28604
|
+
default: string;
|
|
28605
|
+
};
|
|
28546
28606
|
}>>;
|
|
28547
28607
|
type VDatePickerMonth = InstanceType<typeof VDatePickerMonth>;
|
|
28548
28608
|
|
|
@@ -69001,23 +69061,24 @@ declare module '@vue/runtime-core' {
|
|
|
69001
69061
|
}
|
|
69002
69062
|
|
|
69003
69063
|
export interface GlobalComponents {
|
|
69064
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
69004
69065
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
69005
69066
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
69006
69067
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
69007
69068
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
69008
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
69009
69069
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
69010
69070
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
69011
|
-
|
|
69012
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
69071
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
69013
69072
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
69014
69073
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
69015
69074
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
69016
69075
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
69076
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
69077
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
69078
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
69017
69079
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
69018
69080
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
69019
69081
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
69020
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
69021
69082
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
69022
69083
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
69023
69084
|
VCard: typeof import('vuetify/components')['VCard']
|
|
@@ -69029,12 +69090,12 @@ declare module '@vue/runtime-core' {
|
|
|
69029
69090
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
69030
69091
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
69031
69092
|
VChip: typeof import('vuetify/components')['VChip']
|
|
69032
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
69033
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
69034
69093
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
69035
69094
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
69036
69095
|
VCode: typeof import('vuetify/components')['VCode']
|
|
69037
|
-
|
|
69096
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
69097
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
69098
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
69038
69099
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
69039
69100
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
69040
69101
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -69042,7 +69103,7 @@ declare module '@vue/runtime-core' {
|
|
|
69042
69103
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
69043
69104
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
69044
69105
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
69045
|
-
|
|
69106
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
69046
69107
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
69047
69108
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
69048
69109
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
@@ -69058,7 +69119,6 @@ declare module '@vue/runtime-core' {
|
|
|
69058
69119
|
VField: typeof import('vuetify/components')['VField']
|
|
69059
69120
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
69060
69121
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
69061
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
69062
69122
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
69063
69123
|
VImg: typeof import('vuetify/components')['VImg']
|
|
69064
69124
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
@@ -69066,11 +69126,10 @@ declare module '@vue/runtime-core' {
|
|
|
69066
69126
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
69067
69127
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
69068
69128
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
69069
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
69070
69129
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
69071
69130
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
69072
69131
|
VItem: typeof import('vuetify/components')['VItem']
|
|
69073
|
-
|
|
69132
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
69074
69133
|
VList: typeof import('vuetify/components')['VList']
|
|
69075
69134
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
69076
69135
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -69080,62 +69139,63 @@ declare module '@vue/runtime-core' {
|
|
|
69080
69139
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
69081
69140
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
69082
69141
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
69083
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
69084
69142
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
69085
|
-
|
|
69143
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
69144
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
69086
69145
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
69087
|
-
|
|
69146
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
69088
69147
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
69089
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
|
69090
69148
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
69149
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
|
69150
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
69091
69151
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
69092
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
69093
69152
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
69094
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
69095
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
69096
69153
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
69154
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
69155
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
69097
69156
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
69157
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
69098
69158
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
69159
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
69160
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
69099
69161
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
69100
69162
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
69101
69163
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
69102
|
-
|
|
69103
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
69164
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
69104
69165
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
69105
69166
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
69106
69167
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
69107
69168
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
69108
69169
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
69109
69170
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
69110
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
69111
69171
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
69112
69172
|
VTab: typeof import('vuetify/components')['VTab']
|
|
69113
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
69114
69173
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
69115
69174
|
VTable: typeof import('vuetify/components')['VTable']
|
|
69116
69175
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
69117
|
-
|
|
69118
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
69176
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
69119
69177
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
69120
69178
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
69121
69179
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
69122
|
-
|
|
69180
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
69123
69181
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
69124
69182
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
69183
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
69184
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
69125
69185
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
69126
69186
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
69127
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
69128
|
-
VHover: typeof import('vuetify/components')['VHover']
|
|
69129
69187
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
69130
69188
|
VCol: typeof import('vuetify/components')['VCol']
|
|
69131
69189
|
VRow: typeof import('vuetify/components')['VRow']
|
|
69132
69190
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
69191
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
69192
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
69133
69193
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
69134
69194
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
69135
69195
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
69136
69196
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
69137
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
|
69138
69197
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
69198
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
|
69139
69199
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
69140
69200
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
69141
69201
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
@@ -69158,19 +69218,19 @@ declare module '@vue/runtime-core' {
|
|
|
69158
69218
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
69159
69219
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
69160
69220
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
69161
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
69162
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
69163
|
-
VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
|
|
69164
|
-
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
69165
69221
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
69166
69222
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
69167
69223
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
69168
69224
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
69169
69225
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
69170
69226
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
69227
|
+
VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
|
|
69228
|
+
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
69229
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
69230
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
69231
|
+
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
69171
69232
|
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
69172
69233
|
VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
|
|
69173
|
-
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
69174
69234
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
|
69175
69235
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
|
69176
69236
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.5.9-dev.2024-03-
|
|
2
|
+
* Vuetify v3.5.9-dev.2024-03-30
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -18948,7 +18948,7 @@ const VDataTableFooter = genericComponent()({
|
|
|
18948
18948
|
}
|
|
18949
18949
|
return {
|
|
18950
18950
|
...option,
|
|
18951
|
-
title: t(option.title)
|
|
18951
|
+
title: !isNaN(Number(option.title)) ? option.title : t(option.title)
|
|
18952
18952
|
};
|
|
18953
18953
|
}));
|
|
18954
18954
|
useRender(() => {
|
|
@@ -20998,6 +20998,14 @@ const makeVDatePickerMonthProps = propsFactory({
|
|
|
20998
20998
|
hideWeekdays: Boolean,
|
|
20999
20999
|
multiple: [Boolean, Number, String],
|
|
21000
21000
|
showWeek: Boolean,
|
|
21001
|
+
transition: {
|
|
21002
|
+
type: String,
|
|
21003
|
+
default: 'picker-transition'
|
|
21004
|
+
},
|
|
21005
|
+
reverseTransition: {
|
|
21006
|
+
type: String,
|
|
21007
|
+
default: 'picker-reverse-transition'
|
|
21008
|
+
},
|
|
21001
21009
|
...makeCalendarProps()
|
|
21002
21010
|
}, 'VDatePickerMonth');
|
|
21003
21011
|
const VDatePickerMonth = genericComponent()({
|
|
@@ -21022,6 +21030,10 @@ const VDatePickerMonth = genericComponent()({
|
|
|
21022
21030
|
const adapter = useDate();
|
|
21023
21031
|
const rangeStart = shallowRef();
|
|
21024
21032
|
const rangeStop = shallowRef();
|
|
21033
|
+
const isReverse = shallowRef(false);
|
|
21034
|
+
const transition = computed(() => {
|
|
21035
|
+
return !isReverse.value ? props.transition : props.reverseTransition;
|
|
21036
|
+
});
|
|
21025
21037
|
if (props.multiple === 'range' && model.value.length > 0) {
|
|
21026
21038
|
rangeStart.value = model.value[0];
|
|
21027
21039
|
if (model.value.length > 1) {
|
|
@@ -21032,6 +21044,10 @@ const VDatePickerMonth = genericComponent()({
|
|
|
21032
21044
|
const max = ['number', 'string'].includes(typeof props.multiple) ? Number(props.multiple) : Infinity;
|
|
21033
21045
|
return model.value.length >= max;
|
|
21034
21046
|
});
|
|
21047
|
+
watch(daysInMonth, (val, oldVal) => {
|
|
21048
|
+
if (!oldVal) return;
|
|
21049
|
+
isReverse.value = adapter.isBefore(val[0].date, oldVal[0].date);
|
|
21050
|
+
});
|
|
21035
21051
|
function onRangeClick(value) {
|
|
21036
21052
|
const _value = adapter.startOfDay(value);
|
|
21037
21053
|
if (!rangeStart.value) {
|
|
@@ -21091,48 +21107,53 @@ const VDatePickerMonth = genericComponent()({
|
|
|
21091
21107
|
"class": "v-date-picker-month__day"
|
|
21092
21108
|
}, [createTextVNode("\xA0")]), weekNumbers.value.map(week => createVNode("div", {
|
|
21093
21109
|
"class": ['v-date-picker-month__day', 'v-date-picker-month__day--adjacent']
|
|
21094
|
-
}, [week]))]), createVNode(
|
|
21095
|
-
"
|
|
21096
|
-
|
|
21097
|
-
|
|
21098
|
-
|
|
21099
|
-
|
|
21100
|
-
|
|
21101
|
-
|
|
21102
|
-
|
|
21103
|
-
|
|
21104
|
-
|
|
21105
|
-
|
|
21106
|
-
};
|
|
21107
|
-
if (atMax.value && !item.isSelected) {
|
|
21108
|
-
item.isDisabled = true;
|
|
21109
|
-
}
|
|
21110
|
-
return createVNode("div", {
|
|
21111
|
-
"class": ['v-date-picker-month__day', {
|
|
21112
|
-
'v-date-picker-month__day--adjacent': item.isAdjacent,
|
|
21113
|
-
'v-date-picker-month__day--hide-adjacent': item.isHidden,
|
|
21114
|
-
'v-date-picker-month__day--selected': item.isSelected,
|
|
21115
|
-
'v-date-picker-month__day--week-end': item.isWeekEnd,
|
|
21116
|
-
'v-date-picker-month__day--week-start': item.isWeekStart
|
|
21117
|
-
}],
|
|
21118
|
-
"data-v-date": !item.isDisabled ? item.isoDate : undefined
|
|
21119
|
-
}, [(props.showAdjacentMonths || !item.isAdjacent) && createVNode(VDefaultsProvider, {
|
|
21120
|
-
"defaults": {
|
|
21121
|
-
VBtn: {
|
|
21122
|
-
class: 'v-date-picker-month__day-btn',
|
|
21123
|
-
color: (item.isSelected || item.isToday) && !item.isDisabled ? props.color : undefined,
|
|
21124
|
-
disabled: item.isDisabled,
|
|
21125
|
-
icon: true,
|
|
21126
|
-
ripple: false,
|
|
21127
|
-
text: item.localized,
|
|
21128
|
-
variant: item.isDisabled ? item.isToday ? 'outlined' : 'text' : item.isToday && !item.isSelected ? 'outlined' : 'flat',
|
|
21110
|
+
}, [week]))]), createVNode(MaybeTransition, {
|
|
21111
|
+
"name": transition.value
|
|
21112
|
+
}, {
|
|
21113
|
+
default: () => [createVNode("div", {
|
|
21114
|
+
"ref": daysRef,
|
|
21115
|
+
"key": daysInMonth.value[0].date.toString(),
|
|
21116
|
+
"class": "v-date-picker-month__days"
|
|
21117
|
+
}, [!props.hideWeekdays && adapter.getWeekdays().map(weekDay => createVNode("div", {
|
|
21118
|
+
"class": ['v-date-picker-month__day', 'v-date-picker-month__weekday']
|
|
21119
|
+
}, [weekDay])), daysInMonth.value.map((item, i) => {
|
|
21120
|
+
const slotProps = {
|
|
21121
|
+
props: {
|
|
21129
21122
|
onClick: () => onClick(item.date)
|
|
21130
|
-
}
|
|
21123
|
+
},
|
|
21124
|
+
item,
|
|
21125
|
+
i
|
|
21126
|
+
};
|
|
21127
|
+
if (atMax.value && !item.isSelected) {
|
|
21128
|
+
item.isDisabled = true;
|
|
21131
21129
|
}
|
|
21132
|
-
|
|
21133
|
-
|
|
21134
|
-
|
|
21135
|
-
|
|
21130
|
+
return createVNode("div", {
|
|
21131
|
+
"class": ['v-date-picker-month__day', {
|
|
21132
|
+
'v-date-picker-month__day--adjacent': item.isAdjacent,
|
|
21133
|
+
'v-date-picker-month__day--hide-adjacent': item.isHidden,
|
|
21134
|
+
'v-date-picker-month__day--selected': item.isSelected,
|
|
21135
|
+
'v-date-picker-month__day--week-end': item.isWeekEnd,
|
|
21136
|
+
'v-date-picker-month__day--week-start': item.isWeekStart
|
|
21137
|
+
}],
|
|
21138
|
+
"data-v-date": !item.isDisabled ? item.isoDate : undefined
|
|
21139
|
+
}, [(props.showAdjacentMonths || !item.isAdjacent) && createVNode(VDefaultsProvider, {
|
|
21140
|
+
"defaults": {
|
|
21141
|
+
VBtn: {
|
|
21142
|
+
class: 'v-date-picker-month__day-btn',
|
|
21143
|
+
color: (item.isSelected || item.isToday) && !item.isDisabled ? props.color : undefined,
|
|
21144
|
+
disabled: item.isDisabled,
|
|
21145
|
+
icon: true,
|
|
21146
|
+
ripple: false,
|
|
21147
|
+
text: item.localized,
|
|
21148
|
+
variant: item.isDisabled ? item.isToday ? 'outlined' : 'text' : item.isToday && !item.isSelected ? 'outlined' : 'flat',
|
|
21149
|
+
onClick: () => onClick(item.date)
|
|
21150
|
+
}
|
|
21151
|
+
}
|
|
21152
|
+
}, {
|
|
21153
|
+
default: () => [slots.day?.(slotProps) ?? createVNode(VBtn, slotProps.props, null)]
|
|
21154
|
+
})]);
|
|
21155
|
+
})])]
|
|
21156
|
+
})]);
|
|
21136
21157
|
}
|
|
21137
21158
|
});
|
|
21138
21159
|
|
|
@@ -26259,7 +26280,7 @@ function createVuetify$1() {
|
|
|
26259
26280
|
goTo
|
|
26260
26281
|
};
|
|
26261
26282
|
}
|
|
26262
|
-
const version$1 = "3.5.9-dev.2024-03-
|
|
26283
|
+
const version$1 = "3.5.9-dev.2024-03-30";
|
|
26263
26284
|
createVuetify$1.version = version$1;
|
|
26264
26285
|
|
|
26265
26286
|
// Vue's inject() can only be used in setup
|
|
@@ -26284,7 +26305,7 @@ const createVuetify = function () {
|
|
|
26284
26305
|
...options
|
|
26285
26306
|
});
|
|
26286
26307
|
};
|
|
26287
|
-
const version = "3.5.9-dev.2024-03-
|
|
26308
|
+
const version = "3.5.9-dev.2024-03-30";
|
|
26288
26309
|
createVuetify.version = version;
|
|
26289
26310
|
|
|
26290
26311
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|