@vuetify/nightly 3.7.5-dev.2024-12-03 → 3.7.5-dev.2024-12-16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +3779 -3779
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +136 -136
- package/dist/json/web-types.json +7026 -7026
- package/dist/vuetify-labs.css +4372 -4372
- package/dist/vuetify-labs.d.ts +40 -40
- package/dist/vuetify-labs.esm.js +21 -38
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +20 -37
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4189 -4189
- package/dist/vuetify.d.ts +92 -92
- package/dist/vuetify.esm.js +21 -38
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +20 -37
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +876 -881
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/index.d.mts +6 -6
- package/lib/components/VAutocomplete/index.d.mts +6 -6
- package/lib/components/VBtn/index.d.mts +7 -7
- package/lib/components/VBtnToggle/index.d.mts +9 -9
- package/lib/components/VCarousel/VCarousel.mjs.map +1 -1
- package/lib/components/VCarousel/index.d.mts +9 -9
- package/lib/components/VCheckbox/VCheckbox.mjs +3 -3
- package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
- package/lib/components/VChipGroup/VChipGroup.mjs.map +1 -1
- package/lib/components/VChipGroup/index.d.mts +15 -15
- package/lib/components/VCombobox/index.d.mts +6 -6
- package/lib/components/VExpansionPanel/index.d.mts +7 -7
- package/lib/components/VFab/index.d.mts +6 -6
- package/lib/components/VField/VField.mjs +3 -3
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VInput/VInput.mjs +3 -3
- package/lib/components/VInput/VInput.mjs.map +1 -1
- package/lib/components/VItemGroup/VItemGroup.mjs.map +1 -1
- package/lib/components/VItemGroup/index.d.mts +9 -9
- package/lib/components/VMenu/VMenu.mjs +3 -3
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VMenu/index.d.mts +6 -6
- package/lib/components/VRadioGroup/VRadioGroup.mjs +3 -3
- package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
- package/lib/components/VRating/VRating.mjs +4 -3
- package/lib/components/VRating/VRating.mjs.map +1 -1
- package/lib/components/VSelect/index.d.mts +6 -6
- package/lib/components/VSelectionControl/VSelectionControl.mjs +3 -3
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs +3 -3
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs.map +1 -1
- package/lib/components/VSlideGroup/index.d.mts +10 -10
- package/lib/components/VSparkline/VBarline.mjs +3 -3
- package/lib/components/VSparkline/VBarline.mjs.map +1 -1
- package/lib/components/VSparkline/VTrendline.mjs +3 -3
- package/lib/components/VSparkline/VTrendline.mjs.map +1 -1
- package/lib/components/VSwitch/VSwitch.mjs +3 -3
- package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
- package/lib/components/VTabs/index.d.mts +7 -7
- package/lib/components/VTooltip/VTooltip.mjs +3 -3
- package/lib/components/VTooltip/VTooltip.mjs.map +1 -1
- package/lib/components/VWindow/index.d.mts +7 -7
- package/lib/components/index.d.mts +40 -40
- package/lib/composables/group.mjs +3 -3
- package/lib/composables/group.mjs.map +1 -1
- package/lib/composables/layout.mjs +3 -3
- package/lib/composables/layout.mjs.map +1 -1
- package/lib/composables/nested/nested.mjs +2 -2
- package/lib/composables/nested/nested.mjs.map +1 -1
- package/lib/composables/validation.mjs +3 -3
- package/lib/composables/validation.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +2 -3
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.mts +52 -52
- package/lib/util/getCurrentInstance.mjs +1 -15
- package/lib/util/getCurrentInstance.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -1634,22 +1634,22 @@ declare const Ripple: {
|
|
1634
1634
|
};
|
1635
1635
|
|
1636
1636
|
interface GroupItem {
|
1637
|
-
id:
|
1637
|
+
id: string;
|
1638
1638
|
value: Ref<unknown>;
|
1639
1639
|
disabled: Ref<boolean | undefined>;
|
1640
1640
|
useIndexAsValue?: boolean;
|
1641
1641
|
}
|
1642
1642
|
interface GroupProvide {
|
1643
1643
|
register: (item: GroupItem, cmp: ComponentInternalInstance) => void;
|
1644
|
-
unregister: (id:
|
1645
|
-
select: (id:
|
1646
|
-
selected: Ref<Readonly<
|
1647
|
-
isSelected: (id:
|
1644
|
+
unregister: (id: string) => void;
|
1645
|
+
select: (id: string, value: boolean) => void;
|
1646
|
+
selected: Ref<Readonly<string[]>>;
|
1647
|
+
isSelected: (id: string) => boolean;
|
1648
1648
|
prev: () => void;
|
1649
1649
|
next: () => void;
|
1650
1650
|
selectedClass: Ref<string | undefined>;
|
1651
1651
|
items: ComputedRef<{
|
1652
|
-
id:
|
1652
|
+
id: string;
|
1653
1653
|
value: unknown;
|
1654
1654
|
disabled: boolean | undefined;
|
1655
1655
|
}[]>;
|
@@ -1657,7 +1657,7 @@ interface GroupProvide {
|
|
1657
1657
|
getItemIndex: (value: unknown) => number;
|
1658
1658
|
}
|
1659
1659
|
interface GroupItemProvide {
|
1660
|
-
id:
|
1660
|
+
id: string;
|
1661
1661
|
isSelected: Ref<boolean>;
|
1662
1662
|
isFirst: Ref<boolean>;
|
1663
1663
|
isLast: Ref<boolean>;
|
@@ -5817,7 +5817,7 @@ declare const VMenu: {
|
|
5817
5817
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
5818
5818
|
}, {
|
5819
5819
|
id: vue.ComputedRef<string>;
|
5820
|
-
ΨopenChildren: vue.ShallowRef<Set<
|
5820
|
+
ΨopenChildren: vue.ShallowRef<Set<string>, Set<string>>;
|
5821
5821
|
} & Omit<Omit<{
|
5822
5822
|
$: vue.ComponentInternalInstance;
|
5823
5823
|
$data: {};
|
@@ -6230,7 +6230,7 @@ declare const VMenu: {
|
|
6230
6230
|
updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
6231
6231
|
} | {
|
6232
6232
|
id: vue.ComputedRef<string>;
|
6233
|
-
ΨopenChildren: vue.ShallowRef<Set<
|
6233
|
+
ΨopenChildren: vue.ShallowRef<Set<string>, Set<string>>;
|
6234
6234
|
};
|
6235
6235
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
6236
6236
|
'update:modelValue': (value: boolean) => true;
|
@@ -6363,7 +6363,7 @@ declare const VMenu: {
|
|
6363
6363
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6364
6364
|
}, {
|
6365
6365
|
id: vue.ComputedRef<string>;
|
6366
|
-
ΨopenChildren: vue.ShallowRef<Set<
|
6366
|
+
ΨopenChildren: vue.ShallowRef<Set<string>, Set<string>>;
|
6367
6367
|
} & Omit<Omit<{
|
6368
6368
|
$: vue.ComponentInternalInstance;
|
6369
6369
|
$data: {};
|
@@ -6776,7 +6776,7 @@ declare const VMenu: {
|
|
6776
6776
|
updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
6777
6777
|
} | {
|
6778
6778
|
id: vue.ComputedRef<string>;
|
6779
|
-
ΨopenChildren: vue.ShallowRef<Set<
|
6779
|
+
ΨopenChildren: vue.ShallowRef<Set<string>, Set<string>>;
|
6780
6780
|
};
|
6781
6781
|
}, {}, {}, {}, {
|
6782
6782
|
location: Anchor | undefined;
|
@@ -6895,7 +6895,7 @@ declare const VMenu: {
|
|
6895
6895
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
6896
6896
|
}, {
|
6897
6897
|
id: vue.ComputedRef<string>;
|
6898
|
-
ΨopenChildren: vue.ShallowRef<Set<
|
6898
|
+
ΨopenChildren: vue.ShallowRef<Set<string>, Set<string>>;
|
6899
6899
|
} & Omit<Omit<{
|
6900
6900
|
$: vue.ComponentInternalInstance;
|
6901
6901
|
$data: {};
|
@@ -7308,7 +7308,7 @@ declare const VMenu: {
|
|
7308
7308
|
updateLocation: vue.Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
|
7309
7309
|
} | {
|
7310
7310
|
id: vue.ComputedRef<string>;
|
7311
|
-
ΨopenChildren: vue.ShallowRef<Set<
|
7311
|
+
ΨopenChildren: vue.ShallowRef<Set<string>, Set<string>>;
|
7312
7312
|
};
|
7313
7313
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
7314
7314
|
'update:modelValue': (value: boolean) => true;
|
@@ -12382,7 +12382,7 @@ declare const VBtnToggle: {
|
|
12382
12382
|
} & {}, {
|
12383
12383
|
next: () => void;
|
12384
12384
|
prev: () => void;
|
12385
|
-
select: (id:
|
12385
|
+
select: (id: string, value: boolean) => void;
|
12386
12386
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
12387
12387
|
'update:modelValue': (value: any) => true;
|
12388
12388
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
@@ -12427,7 +12427,7 @@ declare const VBtnToggle: {
|
|
12427
12427
|
} & {}, {
|
12428
12428
|
next: () => void;
|
12429
12429
|
prev: () => void;
|
12430
|
-
select: (id:
|
12430
|
+
select: (id: string, value: boolean) => void;
|
12431
12431
|
}, {}, {}, {}, {
|
12432
12432
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
12433
12433
|
style: vue.StyleValue;
|
@@ -12465,7 +12465,7 @@ declare const VBtnToggle: {
|
|
12465
12465
|
} & {}, {
|
12466
12466
|
next: () => void;
|
12467
12467
|
prev: () => void;
|
12468
|
-
select: (id:
|
12468
|
+
select: (id: string, value: boolean) => void;
|
12469
12469
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
12470
12470
|
'update:modelValue': (value: any) => true;
|
12471
12471
|
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "update:modelValue">, string, {
|
@@ -13843,7 +13843,7 @@ type VCarouselSlots = VWindowSlots & {
|
|
13843
13843
|
item: {
|
13844
13844
|
props: Record<string, any>;
|
13845
13845
|
item: {
|
13846
|
-
id:
|
13846
|
+
id: string;
|
13847
13847
|
value: unknown;
|
13848
13848
|
disabled: boolean | undefined;
|
13849
13849
|
};
|
@@ -13922,7 +13922,7 @@ declare const VCarousel: {
|
|
13922
13922
|
item: (arg: {
|
13923
13923
|
props: Record<string, any>;
|
13924
13924
|
item: {
|
13925
|
-
id:
|
13925
|
+
id: string;
|
13926
13926
|
value: unknown;
|
13927
13927
|
disabled: boolean | undefined;
|
13928
13928
|
};
|
@@ -14054,7 +14054,7 @@ declare const VCarousel: {
|
|
14054
14054
|
item: (arg: {
|
14055
14055
|
props: Record<string, any>;
|
14056
14056
|
item: {
|
14057
|
-
id:
|
14057
|
+
id: string;
|
14058
14058
|
value: unknown;
|
14059
14059
|
disabled: boolean | undefined;
|
14060
14060
|
};
|
@@ -16819,11 +16819,11 @@ type VChip = InstanceType<typeof VChip>;
|
|
16819
16819
|
|
16820
16820
|
type VChipGroupSlots = {
|
16821
16821
|
default: {
|
16822
|
-
isSelected: (id:
|
16823
|
-
select: (id:
|
16822
|
+
isSelected: (id: string) => boolean;
|
16823
|
+
select: (id: string, value: boolean) => void;
|
16824
16824
|
next: () => void;
|
16825
16825
|
prev: () => void;
|
16826
|
-
selected: readonly
|
16826
|
+
selected: readonly string[];
|
16827
16827
|
};
|
16828
16828
|
};
|
16829
16829
|
declare const VChipGroup: {
|
@@ -16872,11 +16872,11 @@ declare const VChipGroup: {
|
|
16872
16872
|
prevIcon: IconValue;
|
16873
16873
|
}, true, {}, vue.SlotsType<Partial<{
|
16874
16874
|
default: (arg: {
|
16875
|
-
isSelected: (id:
|
16876
|
-
select: (id:
|
16875
|
+
isSelected: (id: string) => boolean;
|
16876
|
+
select: (id: string, value: boolean) => void;
|
16877
16877
|
next: () => void;
|
16878
16878
|
prev: () => void;
|
16879
|
-
selected: readonly
|
16879
|
+
selected: readonly string[];
|
16880
16880
|
}) => vue.VNode[];
|
16881
16881
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
16882
16882
|
P: {};
|
@@ -16975,11 +16975,11 @@ declare const VChipGroup: {
|
|
16975
16975
|
prevIcon: IconValue;
|
16976
16976
|
}, {}, string, vue.SlotsType<Partial<{
|
16977
16977
|
default: (arg: {
|
16978
|
-
isSelected: (id:
|
16979
|
-
select: (id:
|
16978
|
+
isSelected: (id: string) => boolean;
|
16979
|
+
select: (id: string, value: boolean) => void;
|
16980
16980
|
next: () => void;
|
16981
16981
|
prev: () => void;
|
16982
|
-
selected: readonly
|
16982
|
+
selected: readonly string[];
|
16983
16983
|
}) => vue.VNode[];
|
16984
16984
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
16985
16985
|
modelValue?: T;
|
@@ -33022,11 +33022,11 @@ type VInfiniteScroll = InstanceType<typeof VInfiniteScroll>;
|
|
33022
33022
|
|
33023
33023
|
type VItemGroupSlots = {
|
33024
33024
|
default: {
|
33025
|
-
isSelected: (id:
|
33026
|
-
select: (id:
|
33025
|
+
isSelected: (id: string) => boolean;
|
33026
|
+
select: (id: string, value: boolean) => void;
|
33027
33027
|
next: () => void;
|
33028
33028
|
prev: () => void;
|
33029
|
-
selected: readonly
|
33029
|
+
selected: readonly string[];
|
33030
33030
|
};
|
33031
33031
|
};
|
33032
33032
|
declare const VItemGroup: {
|
@@ -33051,11 +33051,11 @@ declare const VItemGroup: {
|
|
33051
33051
|
selectedClass: string;
|
33052
33052
|
}, true, {}, vue.SlotsType<Partial<{
|
33053
33053
|
default: (arg: {
|
33054
|
-
isSelected: (id:
|
33055
|
-
select: (id:
|
33054
|
+
isSelected: (id: string) => boolean;
|
33055
|
+
select: (id: string, value: boolean) => void;
|
33056
33056
|
next: () => void;
|
33057
33057
|
prev: () => void;
|
33058
|
-
selected: readonly
|
33058
|
+
selected: readonly string[];
|
33059
33059
|
}) => vue.VNode[];
|
33060
33060
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
33061
33061
|
P: {};
|
@@ -33106,11 +33106,11 @@ declare const VItemGroup: {
|
|
33106
33106
|
selectedClass: string;
|
33107
33107
|
}, {}, string, vue.SlotsType<Partial<{
|
33108
33108
|
default: (arg: {
|
33109
|
-
isSelected: (id:
|
33110
|
-
select: (id:
|
33109
|
+
isSelected: (id: string) => boolean;
|
33110
|
+
select: (id: string, value: boolean) => void;
|
33111
33111
|
next: () => void;
|
33112
33112
|
prev: () => void;
|
33113
|
-
selected: readonly
|
33113
|
+
selected: readonly string[];
|
33114
33114
|
}) => vue.VNode[];
|
33115
33115
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
33116
33116
|
modelValue?: T;
|
@@ -40908,7 +40908,7 @@ declare const VSlideGroup: {
|
|
40908
40908
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
40909
40909
|
showArrows?: string | boolean | undefined;
|
40910
40910
|
} & {}, {
|
40911
|
-
selected: vue.Ref<readonly
|
40911
|
+
selected: vue.Ref<readonly string[], readonly string[]>;
|
40912
40912
|
scrollTo: (location: "prev" | "next") => void;
|
40913
40913
|
scrollOffset: vue.ShallowRef<number, number>;
|
40914
40914
|
focus: (location?: "next" | "prev" | "first" | "last") => void;
|
@@ -40958,7 +40958,7 @@ declare const VSlideGroup: {
|
|
40958
40958
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
40959
40959
|
showArrows?: string | boolean | undefined;
|
40960
40960
|
} & {}, {
|
40961
|
-
selected: vue.Ref<readonly
|
40961
|
+
selected: vue.Ref<readonly string[], readonly string[]>;
|
40962
40962
|
scrollTo: (location: "prev" | "next") => void;
|
40963
40963
|
scrollOffset: vue.ShallowRef<number, number>;
|
40964
40964
|
focus: (location?: "next" | "prev" | "first" | "last") => void;
|
@@ -40999,7 +40999,7 @@ declare const VSlideGroup: {
|
|
40999
40999
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
41000
41000
|
showArrows?: string | boolean | undefined;
|
41001
41001
|
} & {}, {
|
41002
|
-
selected: vue.Ref<readonly
|
41002
|
+
selected: vue.Ref<readonly string[], readonly string[]>;
|
41003
41003
|
scrollTo: (location: "prev" | "next") => void;
|
41004
41004
|
scrollOffset: vue.ShallowRef<number, number>;
|
41005
41005
|
focus: (location?: "next" | "prev" | "first" | "last") => void;
|
@@ -57925,27 +57925,25 @@ declare module 'vue' {
|
|
57925
57925
|
$children?: VNodeChild
|
57926
57926
|
}
|
57927
57927
|
export interface GlobalComponents {
|
57928
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
57929
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
57930
57928
|
VApp: typeof import('vuetify/components')['VApp']
|
57931
|
-
VAppBar: typeof import('vuetify/components')['VAppBar']
|
57932
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
57933
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
57934
57929
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
57935
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
57936
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
57937
57930
|
VBanner: typeof import('vuetify/components')['VBanner']
|
57938
57931
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
57939
57932
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
57933
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
57934
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
57935
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
57936
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
57937
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
57938
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
57939
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
57940
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
57940
57941
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
57941
57942
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
57943
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
57942
57944
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
57943
57945
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
57944
57946
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
57945
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
57946
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
57947
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
57948
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
57949
57947
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
57950
57948
|
VCard: typeof import('vuetify/components')['VCard']
|
57951
57949
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
@@ -57953,12 +57951,14 @@ declare module 'vue' {
|
|
57953
57951
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
57954
57952
|
VCardText: typeof import('vuetify/components')['VCardText']
|
57955
57953
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
57956
|
-
|
57957
|
-
|
57954
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
57955
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
57958
57956
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
57959
57957
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
57960
|
-
|
57958
|
+
VChip: typeof import('vuetify/components')['VChip']
|
57961
57959
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
57960
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
57961
|
+
VCode: typeof import('vuetify/components')['VCode']
|
57962
57962
|
VCounter: typeof import('vuetify/components')['VCounter']
|
57963
57963
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
57964
57964
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
@@ -57967,38 +57967,38 @@ declare module 'vue' {
|
|
57967
57967
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
57968
57968
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
57969
57969
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
57970
|
-
|
57970
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
57971
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
57971
57972
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
57972
57973
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
57973
57974
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
57974
57975
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
57975
57976
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
57976
57977
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
57978
|
+
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
57979
|
+
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
57980
|
+
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
57981
|
+
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
57977
57982
|
VDialog: typeof import('vuetify/components')['VDialog']
|
57978
57983
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
57979
57984
|
VFab: typeof import('vuetify/components')['VFab']
|
57980
57985
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
57981
|
-
|
57982
|
-
VIcon: typeof import('vuetify/components')['VIcon']
|
57983
|
-
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
57984
|
-
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
57985
|
-
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
57986
|
-
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
57986
|
+
VImg: typeof import('vuetify/components')['VImg']
|
57987
57987
|
VField: typeof import('vuetify/components')['VField']
|
57988
57988
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
57989
57989
|
VFooter: typeof import('vuetify/components')['VFooter']
|
57990
|
-
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
57991
|
-
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
57992
|
-
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
57993
|
-
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
57994
|
-
VImg: typeof import('vuetify/components')['VImg']
|
57995
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
57996
57990
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
57997
57991
|
VItem: typeof import('vuetify/components')['VItem']
|
57992
|
+
VIcon: typeof import('vuetify/components')['VIcon']
|
57993
|
+
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
57994
|
+
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
57995
|
+
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
57996
|
+
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
57998
57997
|
VLabel: typeof import('vuetify/components')['VLabel']
|
57998
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
57999
57999
|
VKbd: typeof import('vuetify/components')['VKbd']
|
58000
58000
|
VInput: typeof import('vuetify/components')['VInput']
|
58001
|
-
|
58001
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
58002
58002
|
VList: typeof import('vuetify/components')['VList']
|
58003
58003
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
58004
58004
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -58008,22 +58008,23 @@ declare module 'vue' {
|
|
58008
58008
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
58009
58009
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
58010
58010
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
58011
|
-
|
58012
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
58013
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
58011
|
+
VMain: typeof import('vuetify/components')['VMain']
|
58014
58012
|
VMessages: typeof import('vuetify/components')['VMessages']
|
58013
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
58015
58014
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
58016
58015
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
58017
58016
|
VPagination: typeof import('vuetify/components')['VPagination']
|
58018
|
-
|
58017
|
+
VRating: typeof import('vuetify/components')['VRating']
|
58019
58018
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
58020
58019
|
VSelect: typeof import('vuetify/components')['VSelect']
|
58021
|
-
|
58020
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
58021
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
58022
58022
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
58023
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
58024
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
58023
58025
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
58024
58026
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
58025
|
-
|
58026
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
58027
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
58027
58028
|
VSheet: typeof import('vuetify/components')['VSheet']
|
58028
58029
|
VSlider: typeof import('vuetify/components')['VSlider']
|
58029
58030
|
VStepper: typeof import('vuetify/components')['VStepper']
|
@@ -58032,28 +58033,27 @@ declare module 'vue' {
|
|
58032
58033
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
58033
58034
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
58034
58035
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
58036
|
+
VTable: typeof import('vuetify/components')['VTable']
|
58035
58037
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
58036
|
-
|
58037
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
58038
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
58038
58039
|
VTab: typeof import('vuetify/components')['VTab']
|
58039
58040
|
VTabs: typeof import('vuetify/components')['VTabs']
|
58040
58041
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
58041
58042
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
58043
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
58042
58044
|
VTextField: typeof import('vuetify/components')['VTextField']
|
58043
|
-
VTable: typeof import('vuetify/components')['VTable']
|
58044
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
58045
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
58046
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
58047
58045
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
58048
58046
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
58049
58047
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
58050
|
-
|
58048
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
58049
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
58051
58050
|
VWindow: typeof import('vuetify/components')['VWindow']
|
58052
58051
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
58052
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
58053
58053
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
58054
58054
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
58055
|
-
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
58056
58055
|
VForm: typeof import('vuetify/components')['VForm']
|
58056
|
+
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
58057
58057
|
VContainer: typeof import('vuetify/components')['VContainer']
|
58058
58058
|
VCol: typeof import('vuetify/components')['VCol']
|
58059
58059
|
VRow: typeof import('vuetify/components')['VRow']
|
@@ -58071,8 +58071,8 @@ declare module 'vue' {
|
|
58071
58071
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
58072
58072
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
58073
58073
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
58074
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
58075
58074
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
58075
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
58076
58076
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
58077
58077
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
58078
58078
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -58095,20 +58095,20 @@ declare module 'vue' {
|
|
58095
58095
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
58096
58096
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
58097
58097
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
58098
|
-
|
58099
|
-
|
58100
|
-
|
58098
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
58099
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
58100
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
58101
58101
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
58102
58102
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
58103
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
58103
58104
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
58104
58105
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
58105
58106
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
58106
|
-
|
58107
|
-
|
58108
|
-
|
58109
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
58107
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
58108
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
58109
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
58110
58110
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
58111
|
-
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
58112
58111
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
58112
|
+
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
58113
58113
|
}
|
58114
58114
|
}
|