@vuetify/nightly 3.5.3-dev.2024-03-03 → 3.5.3-dev.2024-03-07
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 +8 -0
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +118 -118
- package/dist/json/tags.json +2 -0
- package/dist/json/web-types.json +21 -1
- package/dist/vuetify-labs.css +1907 -1907
- package/dist/vuetify-labs.d.ts +33 -6
- package/dist/vuetify-labs.esm.js +25 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +25 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1017 -1017
- package/dist/vuetify.d.ts +71 -44
- package/dist/vuetify.esm.js +25 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +25 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +281 -280
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +5 -2
- package/lib/blueprints/md1.d.mts +5 -2
- package/lib/blueprints/md2.d.mts +5 -2
- package/lib/blueprints/md3.d.mts +5 -2
- package/lib/components/index.d.mts +18 -0
- package/lib/components/transitions/createTransition.mjs +4 -2
- package/lib/components/transitions/createTransition.mjs.map +1 -1
- package/lib/components/transitions/index.d.mts +18 -0
- package/lib/composables/date/DateAdapter.mjs.map +1 -1
- package/lib/composables/date/adapters/vuetify.mjs +18 -0
- package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +53 -44
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
|
@@ -19,11 +19,13 @@ interface DateAdapter<T = unknown> {
|
|
|
19
19
|
endOfMonth(date: T): T;
|
|
20
20
|
startOfYear(date: T): T;
|
|
21
21
|
endOfYear(date: T): T;
|
|
22
|
-
isBefore(date: T, comparing: T): boolean;
|
|
23
22
|
isAfter(date: T, comparing: T): boolean;
|
|
24
|
-
|
|
23
|
+
isAfterDay(value: T, comparing: T): boolean;
|
|
25
24
|
isSameDay(date: T, comparing: T): boolean;
|
|
26
25
|
isSameMonth(date: T, comparing: T): boolean;
|
|
26
|
+
isSameYear(value: T, comparing: T): boolean;
|
|
27
|
+
isBefore(date: T, comparing: T): boolean;
|
|
28
|
+
isEqual(date: T, comparing: T): boolean;
|
|
27
29
|
isValid(date: any): boolean;
|
|
28
30
|
isWithinRange(date: T, range: [T, T]): boolean;
|
|
29
31
|
addMinutes(date: T, amount: number): T;
|
|
@@ -39,6 +41,7 @@ interface DateAdapter<T = unknown> {
|
|
|
39
41
|
getMonth(date: T): number;
|
|
40
42
|
setMonth(date: T, month: number): T;
|
|
41
43
|
getNextMonth(date: T): T;
|
|
44
|
+
getPreviousMonth(date: T): T;
|
|
42
45
|
getHours(date: T): number;
|
|
43
46
|
setHours(date: T, hours: number): T;
|
|
44
47
|
getMinutes(date: T): number;
|
|
@@ -108,11 +111,13 @@ declare function useDate(): {
|
|
|
108
111
|
endOfMonth: (date: unknown) => unknown;
|
|
109
112
|
startOfYear: (date: unknown) => unknown;
|
|
110
113
|
endOfYear: (date: unknown) => unknown;
|
|
111
|
-
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
112
114
|
isAfter: (date: unknown, comparing: unknown) => boolean;
|
|
113
|
-
|
|
115
|
+
isAfterDay: (value: unknown, comparing: unknown) => boolean;
|
|
114
116
|
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
|
115
117
|
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
|
118
|
+
isSameYear: (value: unknown, comparing: unknown) => boolean;
|
|
119
|
+
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
120
|
+
isEqual: (date: unknown, comparing: unknown) => boolean;
|
|
116
121
|
isValid: (date: any) => boolean;
|
|
117
122
|
isWithinRange: (date: unknown, range: [unknown, unknown]) => boolean;
|
|
118
123
|
addMinutes: (date: unknown, amount: number) => unknown;
|
|
@@ -128,6 +133,7 @@ declare function useDate(): {
|
|
|
128
133
|
getMonth: (date: unknown) => number;
|
|
129
134
|
setMonth: (date: unknown, month: number) => unknown;
|
|
130
135
|
getNextMonth: (date: unknown) => unknown;
|
|
136
|
+
getPreviousMonth: (date: unknown) => unknown;
|
|
131
137
|
getHours: (date: unknown) => number;
|
|
132
138
|
setHours: (date: unknown, hours: number) => unknown;
|
|
133
139
|
getMinutes: (date: unknown) => number;
|
|
@@ -66750,6 +66756,7 @@ type VSlideYReverseTransition = InstanceType<typeof VSlideYReverseTransition>;
|
|
|
66750
66756
|
declare const VExpandTransition: {
|
|
66751
66757
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
66752
66758
|
disabled: boolean;
|
|
66759
|
+
group: boolean;
|
|
66753
66760
|
mode: "default" | "in-out" | "out-in";
|
|
66754
66761
|
} & {} & {
|
|
66755
66762
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -66764,6 +66771,7 @@ declare const VExpandTransition: {
|
|
|
66764
66771
|
[key: string]: any;
|
|
66765
66772
|
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
66766
66773
|
disabled: boolean;
|
|
66774
|
+
group: boolean;
|
|
66767
66775
|
mode: "default" | "in-out" | "out-in";
|
|
66768
66776
|
} & {} & {
|
|
66769
66777
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -66776,6 +66784,7 @@ declare const VExpandTransition: {
|
|
|
66776
66784
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
66777
66785
|
}, {
|
|
66778
66786
|
disabled: boolean;
|
|
66787
|
+
group: boolean;
|
|
66779
66788
|
mode: "default" | "in-out" | "out-in";
|
|
66780
66789
|
}, true, {}, vue.SlotsType<Partial<{
|
|
66781
66790
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -66790,6 +66799,7 @@ declare const VExpandTransition: {
|
|
|
66790
66799
|
Defaults: {};
|
|
66791
66800
|
}, {
|
|
66792
66801
|
disabled: boolean;
|
|
66802
|
+
group: boolean;
|
|
66793
66803
|
mode: "default" | "in-out" | "out-in";
|
|
66794
66804
|
} & {} & {
|
|
66795
66805
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -66804,6 +66814,7 @@ declare const VExpandTransition: {
|
|
|
66804
66814
|
[key: string]: any;
|
|
66805
66815
|
}>, {}, {}, {}, {
|
|
66806
66816
|
disabled: boolean;
|
|
66817
|
+
group: boolean;
|
|
66807
66818
|
mode: "default" | "in-out" | "out-in";
|
|
66808
66819
|
}>;
|
|
66809
66820
|
__isFragment?: undefined;
|
|
@@ -66811,6 +66822,7 @@ declare const VExpandTransition: {
|
|
|
66811
66822
|
__isSuspense?: undefined;
|
|
66812
66823
|
} & vue.ComponentOptionsBase<{
|
|
66813
66824
|
disabled: boolean;
|
|
66825
|
+
group: boolean;
|
|
66814
66826
|
mode: "default" | "in-out" | "out-in";
|
|
66815
66827
|
} & {} & {
|
|
66816
66828
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -66825,6 +66837,7 @@ declare const VExpandTransition: {
|
|
|
66825
66837
|
[key: string]: any;
|
|
66826
66838
|
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
66827
66839
|
disabled: boolean;
|
|
66840
|
+
group: boolean;
|
|
66828
66841
|
mode: "default" | "in-out" | "out-in";
|
|
66829
66842
|
}, {}, string, vue.SlotsType<Partial<{
|
|
66830
66843
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -66836,17 +66849,20 @@ declare const VExpandTransition: {
|
|
|
66836
66849
|
default: string;
|
|
66837
66850
|
};
|
|
66838
66851
|
disabled: BooleanConstructor;
|
|
66852
|
+
group: BooleanConstructor;
|
|
66839
66853
|
}, vue.ExtractPropTypes<{
|
|
66840
66854
|
mode: {
|
|
66841
66855
|
type: vue.PropType<"default" | "in-out" | "out-in">;
|
|
66842
66856
|
default: string;
|
|
66843
66857
|
};
|
|
66844
66858
|
disabled: BooleanConstructor;
|
|
66859
|
+
group: BooleanConstructor;
|
|
66845
66860
|
}>>;
|
|
66846
66861
|
type VExpandTransition = InstanceType<typeof VExpandTransition>;
|
|
66847
66862
|
declare const VExpandXTransition: {
|
|
66848
66863
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
66849
66864
|
disabled: boolean;
|
|
66865
|
+
group: boolean;
|
|
66850
66866
|
mode: "default" | "in-out" | "out-in";
|
|
66851
66867
|
} & {} & {
|
|
66852
66868
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -66861,6 +66877,7 @@ declare const VExpandXTransition: {
|
|
|
66861
66877
|
[key: string]: any;
|
|
66862
66878
|
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
66863
66879
|
disabled: boolean;
|
|
66880
|
+
group: boolean;
|
|
66864
66881
|
mode: "default" | "in-out" | "out-in";
|
|
66865
66882
|
} & {} & {
|
|
66866
66883
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -66873,6 +66890,7 @@ declare const VExpandXTransition: {
|
|
|
66873
66890
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
66874
66891
|
}, {
|
|
66875
66892
|
disabled: boolean;
|
|
66893
|
+
group: boolean;
|
|
66876
66894
|
mode: "default" | "in-out" | "out-in";
|
|
66877
66895
|
}, true, {}, vue.SlotsType<Partial<{
|
|
66878
66896
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -66887,6 +66905,7 @@ declare const VExpandXTransition: {
|
|
|
66887
66905
|
Defaults: {};
|
|
66888
66906
|
}, {
|
|
66889
66907
|
disabled: boolean;
|
|
66908
|
+
group: boolean;
|
|
66890
66909
|
mode: "default" | "in-out" | "out-in";
|
|
66891
66910
|
} & {} & {
|
|
66892
66911
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -66901,6 +66920,7 @@ declare const VExpandXTransition: {
|
|
|
66901
66920
|
[key: string]: any;
|
|
66902
66921
|
}>, {}, {}, {}, {
|
|
66903
66922
|
disabled: boolean;
|
|
66923
|
+
group: boolean;
|
|
66904
66924
|
mode: "default" | "in-out" | "out-in";
|
|
66905
66925
|
}>;
|
|
66906
66926
|
__isFragment?: undefined;
|
|
@@ -66908,6 +66928,7 @@ declare const VExpandXTransition: {
|
|
|
66908
66928
|
__isSuspense?: undefined;
|
|
66909
66929
|
} & vue.ComponentOptionsBase<{
|
|
66910
66930
|
disabled: boolean;
|
|
66931
|
+
group: boolean;
|
|
66911
66932
|
mode: "default" | "in-out" | "out-in";
|
|
66912
66933
|
} & {} & {
|
|
66913
66934
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -66922,6 +66943,7 @@ declare const VExpandXTransition: {
|
|
|
66922
66943
|
[key: string]: any;
|
|
66923
66944
|
}>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
66924
66945
|
disabled: boolean;
|
|
66946
|
+
group: boolean;
|
|
66925
66947
|
mode: "default" | "in-out" | "out-in";
|
|
66926
66948
|
}, {}, string, vue.SlotsType<Partial<{
|
|
66927
66949
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -66933,12 +66955,14 @@ declare const VExpandXTransition: {
|
|
|
66933
66955
|
default: string;
|
|
66934
66956
|
};
|
|
66935
66957
|
disabled: BooleanConstructor;
|
|
66958
|
+
group: BooleanConstructor;
|
|
66936
66959
|
}, vue.ExtractPropTypes<{
|
|
66937
66960
|
mode: {
|
|
66938
66961
|
type: vue.PropType<"default" | "in-out" | "out-in">;
|
|
66939
66962
|
default: string;
|
|
66940
66963
|
};
|
|
66941
66964
|
disabled: BooleanConstructor;
|
|
66965
|
+
group: BooleanConstructor;
|
|
66942
66966
|
}>>;
|
|
66943
66967
|
type VExpandXTransition = InstanceType<typeof VExpandXTransition>;
|
|
66944
66968
|
|
|
@@ -67262,11 +67286,13 @@ declare const createVuetify: {
|
|
|
67262
67286
|
endOfMonth: (date: unknown) => unknown;
|
|
67263
67287
|
startOfYear: (date: unknown) => unknown;
|
|
67264
67288
|
endOfYear: (date: unknown) => unknown;
|
|
67265
|
-
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
67266
67289
|
isAfter: (date: unknown, comparing: unknown) => boolean;
|
|
67267
|
-
|
|
67290
|
+
isAfterDay: (value: unknown, comparing: unknown) => boolean;
|
|
67268
67291
|
isSameDay: (date: unknown, comparing: unknown) => boolean;
|
|
67269
67292
|
isSameMonth: (date: unknown, comparing: unknown) => boolean;
|
|
67293
|
+
isSameYear: (value: unknown, comparing: unknown) => boolean;
|
|
67294
|
+
isBefore: (date: unknown, comparing: unknown) => boolean;
|
|
67295
|
+
isEqual: (date: unknown, comparing: unknown) => boolean;
|
|
67270
67296
|
isValid: (date: any) => boolean;
|
|
67271
67297
|
isWithinRange: (date: unknown, range: [unknown, unknown]) => boolean;
|
|
67272
67298
|
addMinutes: (date: unknown, amount: number) => unknown;
|
|
@@ -67282,6 +67308,7 @@ declare const createVuetify: {
|
|
|
67282
67308
|
getMonth: (date: unknown) => number;
|
|
67283
67309
|
setMonth: (date: unknown, month: number) => unknown;
|
|
67284
67310
|
getNextMonth: (date: unknown) => unknown;
|
|
67311
|
+
getPreviousMonth: (date: unknown) => unknown;
|
|
67285
67312
|
getHours: (date: unknown) => number;
|
|
67286
67313
|
setHours: (date: unknown, hours: number) => unknown;
|
|
67287
67314
|
getMinutes: (date: unknown) => number;
|
|
@@ -67340,60 +67367,60 @@ declare module '@vue/runtime-core' {
|
|
|
67340
67367
|
}
|
|
67341
67368
|
|
|
67342
67369
|
export interface GlobalComponents {
|
|
67343
|
-
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
67344
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
67345
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
67346
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
67347
67370
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
67348
67371
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
67372
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
67349
67373
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
67374
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
67375
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
67376
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
67350
67377
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
67351
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
|
67352
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
67353
67378
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
67354
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
67355
67379
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
67356
67380
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
67357
67381
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
67358
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
67359
67382
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
67360
67383
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
67361
67384
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
67362
67385
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
67363
|
-
|
|
67364
|
-
|
|
67386
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
67387
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
67388
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
67389
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
67390
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
67365
67391
|
VCard: typeof import('vuetify/components')['VCard']
|
|
67366
67392
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
67367
67393
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
67368
67394
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
67369
67395
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
67370
67396
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
67397
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
67398
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
67371
67399
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
67372
67400
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
67373
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
67374
67401
|
VCode: typeof import('vuetify/components')['VCode']
|
|
67375
|
-
|
|
67376
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
|
67377
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
67402
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
67378
67403
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
67379
67404
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
67380
67405
|
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
67381
67406
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
67382
67407
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
67383
67408
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
67384
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
|
67385
67409
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
67410
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
67411
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
67412
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
67386
67413
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
67387
67414
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
67388
67415
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
67389
67416
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
67390
67417
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
67391
67418
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
67419
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
67392
67420
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
67393
67421
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
67394
67422
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
67395
67423
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
67396
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
|
67397
67424
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
67398
67425
|
VField: typeof import('vuetify/components')['VField']
|
|
67399
67426
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
@@ -67405,12 +67432,8 @@ declare module '@vue/runtime-core' {
|
|
|
67405
67432
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
67406
67433
|
VInput: typeof import('vuetify/components')['VInput']
|
|
67407
67434
|
VImg: typeof import('vuetify/components')['VImg']
|
|
67408
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
67409
67435
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
67410
|
-
|
|
67411
|
-
VItem: typeof import('vuetify/components')['VItem']
|
|
67412
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
|
67413
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
67436
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
67414
67437
|
VList: typeof import('vuetify/components')['VList']
|
|
67415
67438
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
67416
67439
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -67420,24 +67443,28 @@ declare module '@vue/runtime-core' {
|
|
|
67420
67443
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
67421
67444
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
67422
67445
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
67423
|
-
|
|
67446
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
67447
|
+
VItem: typeof import('vuetify/components')['VItem']
|
|
67448
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
67449
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
67424
67450
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
67425
67451
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
67426
67452
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
67427
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
67428
67453
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
67454
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
67429
67455
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
67456
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
67430
67457
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
67431
|
-
|
|
67458
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
|
67432
67459
|
VRating: typeof import('vuetify/components')['VRating']
|
|
67433
|
-
|
|
67460
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
67434
67461
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
67435
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
|
67436
67462
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
67437
67463
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
67438
|
-
|
|
67464
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
67439
67465
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
67440
67466
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
67467
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
67441
67468
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
67442
67469
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
67443
67470
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
@@ -67446,22 +67473,22 @@ declare module '@vue/runtime-core' {
|
|
|
67446
67473
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
67447
67474
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
67448
67475
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
67449
|
-
|
|
67476
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
|
67477
|
+
VTab: typeof import('vuetify/components')['VTab']
|
|
67450
67478
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
67451
|
-
|
|
67479
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
67452
67480
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
67453
67481
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
67454
67482
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
67455
|
-
|
|
67456
|
-
VTab: typeof import('vuetify/components')['VTab']
|
|
67483
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
67457
67484
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
67458
67485
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
67459
67486
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
67460
67487
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
67461
67488
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
67462
67489
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
67463
|
-
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
67464
67490
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
67491
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
67465
67492
|
VForm: typeof import('vuetify/components')['VForm']
|
|
67466
67493
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
67467
67494
|
VCol: typeof import('vuetify/components')['VCol']
|
|
@@ -67473,13 +67500,11 @@ declare module '@vue/runtime-core' {
|
|
|
67473
67500
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
67474
67501
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
67475
67502
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
67476
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
|
67477
67503
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
67478
|
-
|
|
67504
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
|
67479
67505
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
67506
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
67480
67507
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
67481
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
|
67482
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
67483
67508
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
67484
67509
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
67485
67510
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -67496,14 +67521,16 @@ declare module '@vue/runtime-core' {
|
|
|
67496
67521
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
67497
67522
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
67498
67523
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
67499
|
-
|
|
67500
|
-
|
|
67524
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
67525
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
67501
67526
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
67502
67527
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
67503
67528
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
67504
67529
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
67505
67530
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
67506
67531
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
67532
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
67533
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
67507
67534
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
67508
67535
|
}
|
|
67509
67536
|
}
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.5.3-dev.2024-03-
|
|
2
|
+
* Vuetify v3.5.3-dev.2024-03-07
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -2668,14 +2668,16 @@ function createJavascriptTransition(name, functions) {
|
|
|
2668
2668
|
type: String,
|
|
2669
2669
|
default: mode
|
|
2670
2670
|
},
|
|
2671
|
-
disabled: Boolean
|
|
2671
|
+
disabled: Boolean,
|
|
2672
|
+
group: Boolean
|
|
2672
2673
|
},
|
|
2673
2674
|
setup(props, _ref2) {
|
|
2674
2675
|
let {
|
|
2675
2676
|
slots
|
|
2676
2677
|
} = _ref2;
|
|
2678
|
+
const tag = props.group ? TransitionGroup : Transition;
|
|
2677
2679
|
return () => {
|
|
2678
|
-
return h(
|
|
2680
|
+
return h(tag, {
|
|
2679
2681
|
name: props.disabled ? '' : name,
|
|
2680
2682
|
css: !props.disabled,
|
|
2681
2683
|
// mode: props.mode, // TODO: vuejs/vue-next#3104
|
|
@@ -17255,6 +17257,9 @@ function getMonth(date) {
|
|
|
17255
17257
|
function getNextMonth(date) {
|
|
17256
17258
|
return new Date(date.getFullYear(), date.getMonth() + 1, 1);
|
|
17257
17259
|
}
|
|
17260
|
+
function getPreviousMonth(date) {
|
|
17261
|
+
return new Date(date.getFullYear(), date.getMonth() - 1, 1);
|
|
17262
|
+
}
|
|
17258
17263
|
function getHours(date) {
|
|
17259
17264
|
return date.getHours();
|
|
17260
17265
|
}
|
|
@@ -17277,6 +17282,9 @@ function isValid(date) {
|
|
|
17277
17282
|
function isAfter(date, comparing) {
|
|
17278
17283
|
return date.getTime() > comparing.getTime();
|
|
17279
17284
|
}
|
|
17285
|
+
function isAfterDay(date, comparing) {
|
|
17286
|
+
return isAfter(startOfDay(date), startOfDay(comparing));
|
|
17287
|
+
}
|
|
17280
17288
|
function isBefore(date, comparing) {
|
|
17281
17289
|
return date.getTime() < comparing.getTime();
|
|
17282
17290
|
}
|
|
@@ -17289,6 +17297,9 @@ function isSameDay(date, comparing) {
|
|
|
17289
17297
|
function isSameMonth(date, comparing) {
|
|
17290
17298
|
return date.getMonth() === comparing.getMonth() && date.getFullYear() === comparing.getFullYear();
|
|
17291
17299
|
}
|
|
17300
|
+
function isSameYear(date, comparing) {
|
|
17301
|
+
return date.getFullYear() === comparing.getFullYear();
|
|
17302
|
+
}
|
|
17292
17303
|
function getDiff(date, comparing, unit) {
|
|
17293
17304
|
const d = new Date(date);
|
|
17294
17305
|
const c = new Date(comparing);
|
|
@@ -17385,6 +17396,9 @@ class VuetifyDateAdapter {
|
|
|
17385
17396
|
isAfter(date, comparing) {
|
|
17386
17397
|
return isAfter(date, comparing);
|
|
17387
17398
|
}
|
|
17399
|
+
isAfterDay(date, comparing) {
|
|
17400
|
+
return isAfterDay(date, comparing);
|
|
17401
|
+
}
|
|
17388
17402
|
isBefore(date, comparing) {
|
|
17389
17403
|
return !isAfter(date, comparing) && !isEqual(date, comparing);
|
|
17390
17404
|
}
|
|
@@ -17394,6 +17408,9 @@ class VuetifyDateAdapter {
|
|
|
17394
17408
|
isSameMonth(date, comparing) {
|
|
17395
17409
|
return isSameMonth(date, comparing);
|
|
17396
17410
|
}
|
|
17411
|
+
isSameYear(date, comparing) {
|
|
17412
|
+
return isSameYear(date, comparing);
|
|
17413
|
+
}
|
|
17397
17414
|
setMinutes(date, count) {
|
|
17398
17415
|
return setMinutes(date, count);
|
|
17399
17416
|
}
|
|
@@ -17421,6 +17438,9 @@ class VuetifyDateAdapter {
|
|
|
17421
17438
|
getNextMonth(date) {
|
|
17422
17439
|
return getNextMonth(date);
|
|
17423
17440
|
}
|
|
17441
|
+
getPreviousMonth(date) {
|
|
17442
|
+
return getPreviousMonth(date);
|
|
17443
|
+
}
|
|
17424
17444
|
getHours(date) {
|
|
17425
17445
|
return getHours(date);
|
|
17426
17446
|
}
|
|
@@ -25662,7 +25682,7 @@ function createVuetify$1() {
|
|
|
25662
25682
|
goTo
|
|
25663
25683
|
};
|
|
25664
25684
|
}
|
|
25665
|
-
const version$1 = "3.5.3-dev.2024-03-
|
|
25685
|
+
const version$1 = "3.5.3-dev.2024-03-07";
|
|
25666
25686
|
createVuetify$1.version = version$1;
|
|
25667
25687
|
|
|
25668
25688
|
// Vue's inject() can only be used in setup
|
|
@@ -25687,7 +25707,7 @@ const createVuetify = function () {
|
|
|
25687
25707
|
...options
|
|
25688
25708
|
});
|
|
25689
25709
|
};
|
|
25690
|
-
const version = "3.5.3-dev.2024-03-
|
|
25710
|
+
const version = "3.5.3-dev.2024-03-07";
|
|
25691
25711
|
createVuetify.version = version;
|
|
25692
25712
|
|
|
25693
25713
|
export { components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|