@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
|
@@ -27028,6 +27028,7 @@ type VDatePickerSlots = Omit<VPickerSlots, 'header'> & {
|
|
|
27028
27028
|
};
|
|
27029
27029
|
declare const VDatePicker: {
|
|
27030
27030
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
27031
|
+
transition: string;
|
|
27031
27032
|
header: string;
|
|
27032
27033
|
style: vue.StyleValue;
|
|
27033
27034
|
title: string;
|
|
@@ -27037,6 +27038,7 @@ declare const VDatePicker: {
|
|
|
27037
27038
|
tile: boolean;
|
|
27038
27039
|
nextIcon: string;
|
|
27039
27040
|
prevIcon: string;
|
|
27041
|
+
reverseTransition: string;
|
|
27040
27042
|
modeIcon: string;
|
|
27041
27043
|
viewMode: "month" | "year" | "months";
|
|
27042
27044
|
showAdjacentMonths: boolean;
|
|
@@ -27078,6 +27080,7 @@ declare const VDatePicker: {
|
|
|
27078
27080
|
'update:year': (date: any) => true;
|
|
27079
27081
|
'update:viewMode': (date: any) => true;
|
|
27080
27082
|
}, "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 & {
|
|
27083
|
+
transition: string;
|
|
27081
27084
|
header: string;
|
|
27082
27085
|
style: vue.StyleValue;
|
|
27083
27086
|
title: string;
|
|
@@ -27087,6 +27090,7 @@ declare const VDatePicker: {
|
|
|
27087
27090
|
tile: boolean;
|
|
27088
27091
|
nextIcon: string;
|
|
27089
27092
|
prevIcon: string;
|
|
27093
|
+
reverseTransition: string;
|
|
27090
27094
|
modeIcon: string;
|
|
27091
27095
|
viewMode: "month" | "year" | "months";
|
|
27092
27096
|
showAdjacentMonths: boolean;
|
|
@@ -27124,6 +27128,7 @@ declare const VDatePicker: {
|
|
|
27124
27128
|
"onUpdate:viewMode"?: ((date: any) => any) | undefined;
|
|
27125
27129
|
}, {
|
|
27126
27130
|
active: string | string[];
|
|
27131
|
+
transition: string;
|
|
27127
27132
|
header: string;
|
|
27128
27133
|
style: vue.StyleValue;
|
|
27129
27134
|
title: string;
|
|
@@ -27134,6 +27139,7 @@ declare const VDatePicker: {
|
|
|
27134
27139
|
tile: boolean;
|
|
27135
27140
|
nextIcon: string;
|
|
27136
27141
|
prevIcon: string;
|
|
27142
|
+
reverseTransition: string;
|
|
27137
27143
|
modeIcon: string;
|
|
27138
27144
|
viewMode: "month" | "year" | "months";
|
|
27139
27145
|
showAdjacentMonths: boolean;
|
|
@@ -27165,6 +27171,7 @@ declare const VDatePicker: {
|
|
|
27165
27171
|
M: {};
|
|
27166
27172
|
Defaults: {};
|
|
27167
27173
|
}, {
|
|
27174
|
+
transition: string;
|
|
27168
27175
|
header: string;
|
|
27169
27176
|
style: vue.StyleValue;
|
|
27170
27177
|
title: string;
|
|
@@ -27174,6 +27181,7 @@ declare const VDatePicker: {
|
|
|
27174
27181
|
tile: boolean;
|
|
27175
27182
|
nextIcon: string;
|
|
27176
27183
|
prevIcon: string;
|
|
27184
|
+
reverseTransition: string;
|
|
27177
27185
|
modeIcon: string;
|
|
27178
27186
|
viewMode: "month" | "year" | "months";
|
|
27179
27187
|
showAdjacentMonths: boolean;
|
|
@@ -27211,6 +27219,7 @@ declare const VDatePicker: {
|
|
|
27211
27219
|
"onUpdate:viewMode"?: ((date: any) => any) | undefined;
|
|
27212
27220
|
}, {}, {}, {}, {}, {
|
|
27213
27221
|
active: string | string[];
|
|
27222
|
+
transition: string;
|
|
27214
27223
|
header: string;
|
|
27215
27224
|
style: vue.StyleValue;
|
|
27216
27225
|
title: string;
|
|
@@ -27221,6 +27230,7 @@ declare const VDatePicker: {
|
|
|
27221
27230
|
tile: boolean;
|
|
27222
27231
|
nextIcon: string;
|
|
27223
27232
|
prevIcon: string;
|
|
27233
|
+
reverseTransition: string;
|
|
27224
27234
|
modeIcon: string;
|
|
27225
27235
|
viewMode: "month" | "year" | "months";
|
|
27226
27236
|
showAdjacentMonths: boolean;
|
|
@@ -27233,6 +27243,7 @@ declare const VDatePicker: {
|
|
|
27233
27243
|
__isTeleport?: undefined;
|
|
27234
27244
|
__isSuspense?: undefined;
|
|
27235
27245
|
} & vue.ComponentOptionsBase<{
|
|
27246
|
+
transition: string;
|
|
27236
27247
|
header: string;
|
|
27237
27248
|
style: vue.StyleValue;
|
|
27238
27249
|
title: string;
|
|
@@ -27242,6 +27253,7 @@ declare const VDatePicker: {
|
|
|
27242
27253
|
tile: boolean;
|
|
27243
27254
|
nextIcon: string;
|
|
27244
27255
|
prevIcon: string;
|
|
27256
|
+
reverseTransition: string;
|
|
27245
27257
|
modeIcon: string;
|
|
27246
27258
|
viewMode: "month" | "year" | "months";
|
|
27247
27259
|
showAdjacentMonths: boolean;
|
|
@@ -27284,6 +27296,7 @@ declare const VDatePicker: {
|
|
|
27284
27296
|
'update:viewMode': (date: any) => true;
|
|
27285
27297
|
}, "multiple" | "$children" | "v-slot:default" | "v-slots" | "modelValue" | "v-slot:title" | "update:modelValue" | "v-slot:header" | "v-slot:actions">, string, {
|
|
27286
27298
|
active: string | string[];
|
|
27299
|
+
transition: string;
|
|
27287
27300
|
header: string;
|
|
27288
27301
|
style: vue.StyleValue;
|
|
27289
27302
|
title: string;
|
|
@@ -27294,6 +27307,7 @@ declare const VDatePicker: {
|
|
|
27294
27307
|
tile: boolean;
|
|
27295
27308
|
nextIcon: string;
|
|
27296
27309
|
prevIcon: string;
|
|
27310
|
+
reverseTransition: string;
|
|
27297
27311
|
modeIcon: string;
|
|
27298
27312
|
viewMode: "month" | "year" | "months";
|
|
27299
27313
|
showAdjacentMonths: boolean;
|
|
@@ -27394,6 +27408,14 @@ declare const VDatePicker: {
|
|
|
27394
27408
|
hideWeekdays: BooleanConstructor;
|
|
27395
27409
|
multiple: vue.PropType<number | boolean | "range" | (string & {})>;
|
|
27396
27410
|
showWeek: BooleanConstructor;
|
|
27411
|
+
transition: {
|
|
27412
|
+
type: StringConstructor;
|
|
27413
|
+
default: string;
|
|
27414
|
+
};
|
|
27415
|
+
reverseTransition: {
|
|
27416
|
+
type: StringConstructor;
|
|
27417
|
+
default: string;
|
|
27418
|
+
};
|
|
27397
27419
|
active: {
|
|
27398
27420
|
type: vue.PropType<string | string[]>;
|
|
27399
27421
|
default: undefined;
|
|
@@ -27488,6 +27510,14 @@ declare const VDatePicker: {
|
|
|
27488
27510
|
hideWeekdays: BooleanConstructor;
|
|
27489
27511
|
multiple: vue.PropType<number | boolean | "range" | (string & {})>;
|
|
27490
27512
|
showWeek: BooleanConstructor;
|
|
27513
|
+
transition: {
|
|
27514
|
+
type: StringConstructor;
|
|
27515
|
+
default: string;
|
|
27516
|
+
};
|
|
27517
|
+
reverseTransition: {
|
|
27518
|
+
type: StringConstructor;
|
|
27519
|
+
default: string;
|
|
27520
|
+
};
|
|
27491
27521
|
active: {
|
|
27492
27522
|
type: vue.PropType<string | string[]>;
|
|
27493
27523
|
default: undefined;
|
|
@@ -27871,7 +27901,9 @@ type VDatePickerHeader = InstanceType<typeof VDatePickerHeader>;
|
|
|
27871
27901
|
|
|
27872
27902
|
declare const VDatePickerMonth: {
|
|
27873
27903
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
27904
|
+
transition: string;
|
|
27874
27905
|
disabled: boolean;
|
|
27906
|
+
reverseTransition: string;
|
|
27875
27907
|
showAdjacentMonths: boolean;
|
|
27876
27908
|
weekdays: number[];
|
|
27877
27909
|
hideWeekdays: boolean;
|
|
@@ -27922,7 +27954,9 @@ declare const VDatePickerMonth: {
|
|
|
27922
27954
|
'update:month': (date: number) => true;
|
|
27923
27955
|
'update:year': (date: number) => true;
|
|
27924
27956
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
27957
|
+
transition: string;
|
|
27925
27958
|
disabled: boolean;
|
|
27959
|
+
reverseTransition: string;
|
|
27926
27960
|
showAdjacentMonths: boolean;
|
|
27927
27961
|
weekdays: number[];
|
|
27928
27962
|
hideWeekdays: boolean;
|
|
@@ -27969,7 +28003,9 @@ declare const VDatePickerMonth: {
|
|
|
27969
28003
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
27970
28004
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
27971
28005
|
}, {
|
|
28006
|
+
transition: string;
|
|
27972
28007
|
disabled: boolean;
|
|
28008
|
+
reverseTransition: string;
|
|
27973
28009
|
showAdjacentMonths: boolean;
|
|
27974
28010
|
weekdays: number[];
|
|
27975
28011
|
hideWeekdays: boolean;
|
|
@@ -27992,7 +28028,9 @@ declare const VDatePickerMonth: {
|
|
|
27992
28028
|
M: {};
|
|
27993
28029
|
Defaults: {};
|
|
27994
28030
|
}, {
|
|
28031
|
+
transition: string;
|
|
27995
28032
|
disabled: boolean;
|
|
28033
|
+
reverseTransition: string;
|
|
27996
28034
|
showAdjacentMonths: boolean;
|
|
27997
28035
|
weekdays: number[];
|
|
27998
28036
|
hideWeekdays: boolean;
|
|
@@ -28039,7 +28077,9 @@ declare const VDatePickerMonth: {
|
|
|
28039
28077
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
28040
28078
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
28041
28079
|
}, () => JSX.Element, {}, {}, {}, {
|
|
28080
|
+
transition: string;
|
|
28042
28081
|
disabled: boolean;
|
|
28082
|
+
reverseTransition: string;
|
|
28043
28083
|
showAdjacentMonths: boolean;
|
|
28044
28084
|
weekdays: number[];
|
|
28045
28085
|
hideWeekdays: boolean;
|
|
@@ -28049,7 +28089,9 @@ declare const VDatePickerMonth: {
|
|
|
28049
28089
|
__isTeleport?: undefined;
|
|
28050
28090
|
__isSuspense?: undefined;
|
|
28051
28091
|
} & vue.ComponentOptionsBase<{
|
|
28092
|
+
transition: string;
|
|
28052
28093
|
disabled: boolean;
|
|
28094
|
+
reverseTransition: string;
|
|
28053
28095
|
showAdjacentMonths: boolean;
|
|
28054
28096
|
weekdays: number[];
|
|
28055
28097
|
hideWeekdays: boolean;
|
|
@@ -28100,7 +28142,9 @@ declare const VDatePickerMonth: {
|
|
|
28100
28142
|
'update:month': (date: number) => true;
|
|
28101
28143
|
'update:year': (date: number) => true;
|
|
28102
28144
|
}, string, {
|
|
28145
|
+
transition: string;
|
|
28103
28146
|
disabled: boolean;
|
|
28147
|
+
reverseTransition: string;
|
|
28104
28148
|
showAdjacentMonths: boolean;
|
|
28105
28149
|
weekdays: number[];
|
|
28106
28150
|
hideWeekdays: boolean;
|
|
@@ -28146,6 +28190,14 @@ declare const VDatePickerMonth: {
|
|
|
28146
28190
|
hideWeekdays: BooleanConstructor;
|
|
28147
28191
|
multiple: PropType<number | boolean | "range" | (string & {})>;
|
|
28148
28192
|
showWeek: BooleanConstructor;
|
|
28193
|
+
transition: {
|
|
28194
|
+
type: StringConstructor;
|
|
28195
|
+
default: string;
|
|
28196
|
+
};
|
|
28197
|
+
reverseTransition: {
|
|
28198
|
+
type: StringConstructor;
|
|
28199
|
+
default: string;
|
|
28200
|
+
};
|
|
28149
28201
|
}, vue.ExtractPropTypes<{
|
|
28150
28202
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
28151
28203
|
disabled: BooleanConstructor;
|
|
@@ -28177,6 +28229,14 @@ declare const VDatePickerMonth: {
|
|
|
28177
28229
|
hideWeekdays: BooleanConstructor;
|
|
28178
28230
|
multiple: PropType<number | boolean | "range" | (string & {})>;
|
|
28179
28231
|
showWeek: BooleanConstructor;
|
|
28232
|
+
transition: {
|
|
28233
|
+
type: StringConstructor;
|
|
28234
|
+
default: string;
|
|
28235
|
+
};
|
|
28236
|
+
reverseTransition: {
|
|
28237
|
+
type: StringConstructor;
|
|
28238
|
+
default: string;
|
|
28239
|
+
};
|
|
28180
28240
|
}>>;
|
|
28181
28241
|
type VDatePickerMonth = InstanceType<typeof VDatePickerMonth>;
|
|
28182
28242
|
|
package/lib/entry-bundler.mjs
CHANGED
|
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
|
16
16
|
...options
|
|
17
17
|
});
|
|
18
18
|
};
|
|
19
|
-
export const version = "3.5.9-dev.2024-03-
|
|
19
|
+
export const version = "3.5.9-dev.2024-03-30";
|
|
20
20
|
createVuetify.version = version;
|
|
21
21
|
export { blueprints, components, directives };
|
|
22
22
|
export * from "./composables/index.mjs";
|
package/lib/framework.mjs
CHANGED
package/lib/index.d.mts
CHANGED
|
@@ -527,23 +527,24 @@ declare module '@vue/runtime-core' {
|
|
|
527
527
|
}
|
|
528
528
|
|
|
529
529
|
export interface GlobalComponents {
|
|
530
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
530
531
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
531
532
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
532
533
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
533
534
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
534
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
535
535
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
536
536
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
537
|
-
|
|
538
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
537
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
539
538
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
540
539
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
541
540
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
542
541
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
542
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
543
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
544
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
543
545
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
544
546
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
545
547
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
546
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
547
548
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
548
549
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
549
550
|
VCard: typeof import('vuetify/components')['VCard']
|
|
@@ -555,12 +556,12 @@ declare module '@vue/runtime-core' {
|
|
|
555
556
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
556
557
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
557
558
|
VChip: typeof import('vuetify/components')['VChip']
|
|
558
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
559
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
560
559
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
561
560
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
562
561
|
VCode: typeof import('vuetify/components')['VCode']
|
|
563
|
-
|
|
562
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
563
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
564
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
564
565
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
565
566
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
566
567
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -568,7 +569,7 @@ declare module '@vue/runtime-core' {
|
|
|
568
569
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
569
570
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
570
571
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
571
|
-
|
|
572
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
572
573
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
573
574
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
574
575
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
@@ -584,7 +585,6 @@ declare module '@vue/runtime-core' {
|
|
|
584
585
|
VField: typeof import('vuetify/components')['VField']
|
|
585
586
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
586
587
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
587
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
588
588
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
589
589
|
VImg: typeof import('vuetify/components')['VImg']
|
|
590
590
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
@@ -592,11 +592,10 @@ declare module '@vue/runtime-core' {
|
|
|
592
592
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
593
593
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
594
594
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
595
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
596
595
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
597
596
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
598
597
|
VItem: typeof import('vuetify/components')['VItem']
|
|
599
|
-
|
|
598
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
600
599
|
VList: typeof import('vuetify/components')['VList']
|
|
601
600
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
602
601
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -606,62 +605,63 @@ declare module '@vue/runtime-core' {
|
|
|
606
605
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
607
606
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
608
607
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
609
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
610
608
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
611
|
-
|
|
609
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
610
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
612
611
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
613
|
-
|
|
612
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
614
613
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
615
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
|
616
614
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
615
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
|
616
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
617
617
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
618
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
619
618
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
620
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
621
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
622
619
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
620
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
621
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
623
622
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
623
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
624
624
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
625
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
626
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
625
627
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
626
628
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
627
629
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
628
|
-
|
|
629
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
630
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
630
631
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
631
632
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
632
633
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
633
634
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
634
635
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
635
636
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
636
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
637
637
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
638
638
|
VTab: typeof import('vuetify/components')['VTab']
|
|
639
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
640
639
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
641
640
|
VTable: typeof import('vuetify/components')['VTable']
|
|
642
641
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
643
|
-
|
|
644
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
642
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
645
643
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
646
644
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
647
645
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
648
|
-
|
|
646
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
649
647
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
650
648
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
649
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
650
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
651
651
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
652
652
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
653
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
654
|
-
VHover: typeof import('vuetify/components')['VHover']
|
|
655
653
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
656
654
|
VCol: typeof import('vuetify/components')['VCol']
|
|
657
655
|
VRow: typeof import('vuetify/components')['VRow']
|
|
658
656
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
657
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
658
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
659
659
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
660
660
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
661
661
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
662
662
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
663
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
|
664
663
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
664
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
|
665
665
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
666
666
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
667
667
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
@@ -684,19 +684,19 @@ declare module '@vue/runtime-core' {
|
|
|
684
684
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
685
685
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
686
686
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
687
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
688
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
689
|
-
VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
|
|
690
|
-
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
691
687
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
692
688
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
693
689
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
694
690
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
695
691
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
696
692
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
693
|
+
VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
|
|
694
|
+
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
695
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
696
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
697
|
+
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
697
698
|
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
698
699
|
VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
|
|
699
|
-
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
700
700
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
|
701
701
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
|
702
702
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
|
@@ -95,11 +95,11 @@
|
|
|
95
95
|
@include transition-default();
|
|
96
96
|
|
|
97
97
|
&-enter-from {
|
|
98
|
-
transform: translate(0
|
|
98
|
+
transform: translate(100%, 0);
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
&-leave-to {
|
|
102
|
-
transform: translate(
|
|
102
|
+
transform: translate(-100%, 0);
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
|
|
@@ -107,11 +107,11 @@
|
|
|
107
107
|
@include transition-default();
|
|
108
108
|
|
|
109
109
|
&-enter-from {
|
|
110
|
-
transform: translate(
|
|
110
|
+
transform: translate(-100%, 0);
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
&-leave-to {
|
|
114
|
-
transform: translate(0
|
|
114
|
+
transform: translate(100%, 0);
|
|
115
115
|
}
|
|
116
116
|
}
|
|
117
117
|
|
package/lib/styles/main.css
CHANGED
|
@@ -2713,10 +2713,10 @@ progress {
|
|
|
2713
2713
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
|
|
2714
2714
|
}
|
|
2715
2715
|
.picker-transition-enter-from {
|
|
2716
|
-
transform: translate(0
|
|
2716
|
+
transform: translate(100%, 0);
|
|
2717
2717
|
}
|
|
2718
2718
|
.picker-transition-leave-to {
|
|
2719
|
-
transform: translate(
|
|
2719
|
+
transform: translate(-100%, 0);
|
|
2720
2720
|
}
|
|
2721
2721
|
|
|
2722
2722
|
.picker-reverse-transition-enter-active {
|
|
@@ -2733,10 +2733,10 @@ progress {
|
|
|
2733
2733
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
|
|
2734
2734
|
}
|
|
2735
2735
|
.picker-reverse-transition-enter-from {
|
|
2736
|
-
transform: translate(
|
|
2736
|
+
transform: translate(-100%, 0);
|
|
2737
2737
|
}
|
|
2738
2738
|
.picker-reverse-transition-leave-to {
|
|
2739
|
-
transform: translate(0
|
|
2739
|
+
transform: translate(100%, 0);
|
|
2740
2740
|
}
|
|
2741
2741
|
|
|
2742
2742
|
.expand-transition-enter-active {
|