@vuetify/nightly 3.5.3-dev.2024-02-08 → 3.5.3-dev.2024-02-14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -2
- package/dist/json/attributes.json +5 -5
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +98 -98
- package/dist/json/web-types.json +6 -6
- package/dist/vuetify-labs.css +2446 -2446
- package/dist/vuetify-labs.d.ts +22 -21
- package/dist/vuetify-labs.esm.js +58 -62
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +57 -61
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1218 -1218
- package/dist/vuetify.d.ts +53 -52
- package/dist/vuetify.esm.js +58 -62
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +57 -61
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +909 -914
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VApp/VApp.mjs +5 -2
- package/lib/components/VApp/VApp.mjs.map +1 -1
- package/lib/components/VApp/index.d.mts +6 -6
- package/lib/components/VAppBar/VAppBar.mjs +5 -5
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.mts +2 -2
- package/lib/components/VBottomNavigation/VBottomNavigation.mjs +5 -3
- package/lib/components/VBottomNavigation/VBottomNavigation.mjs.map +1 -1
- package/lib/components/VBottomNavigation/index.d.mts +2 -2
- package/lib/components/VFooter/VFooter.mjs +3 -2
- package/lib/components/VFooter/VFooter.mjs.map +1 -1
- package/lib/components/VLayout/VLayout.mjs +5 -2
- package/lib/components/VLayout/VLayout.mjs.map +1 -1
- package/lib/components/VLayout/VLayoutItem.mjs +6 -4
- package/lib/components/VLayout/VLayoutItem.mjs.map +1 -1
- package/lib/components/VLayout/index.d.mts +9 -9
- package/lib/components/VMain/VMain.mjs +3 -2
- package/lib/components/VMain/VMain.mjs.map +1 -1
- package/lib/components/VMain/index.d.mts +2 -2
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +7 -7
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/index.d.mts +21 -21
- package/lib/composables/layout.mjs +14 -37
- package/lib/composables/layout.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +32 -31
- package/lib/util/helpers.mjs +11 -1
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
|
@@ -712,6 +712,7 @@ interface LayoutItem extends Layer {
|
|
|
712
712
|
position: Position;
|
|
713
713
|
}
|
|
714
714
|
declare function useLayout(): {
|
|
715
|
+
layoutIsReady: Promise<void>;
|
|
715
716
|
getLayoutItem: (id: string) => LayoutItem | undefined;
|
|
716
717
|
mainRect: Ref<Layer>;
|
|
717
718
|
mainStyles: Ref<CSSProperties>;
|
|
@@ -806,7 +807,7 @@ declare const VApp: {
|
|
|
806
807
|
right: number;
|
|
807
808
|
id: string;
|
|
808
809
|
} | undefined;
|
|
809
|
-
items: vue.
|
|
810
|
+
items: Readonly<vue.Ref<{
|
|
810
811
|
size: number;
|
|
811
812
|
position: "left" | "top" | "bottom" | "right";
|
|
812
813
|
top: number;
|
|
@@ -814,7 +815,7 @@ declare const VApp: {
|
|
|
814
815
|
left: number;
|
|
815
816
|
right: number;
|
|
816
817
|
id: string;
|
|
817
|
-
}[]
|
|
818
|
+
}[]>>;
|
|
818
819
|
theme: ThemeInstance;
|
|
819
820
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
820
821
|
style: vue.StyleValue;
|
|
@@ -872,7 +873,7 @@ declare const VApp: {
|
|
|
872
873
|
right: number;
|
|
873
874
|
id: string;
|
|
874
875
|
} | undefined;
|
|
875
|
-
items: vue.
|
|
876
|
+
items: Readonly<vue.Ref<{
|
|
876
877
|
size: number;
|
|
877
878
|
position: "left" | "top" | "bottom" | "right";
|
|
878
879
|
top: number;
|
|
@@ -880,7 +881,7 @@ declare const VApp: {
|
|
|
880
881
|
left: number;
|
|
881
882
|
right: number;
|
|
882
883
|
id: string;
|
|
883
|
-
}[]
|
|
884
|
+
}[]>>;
|
|
884
885
|
theme: ThemeInstance;
|
|
885
886
|
}, {}, {}, {}, {
|
|
886
887
|
style: vue.StyleValue;
|
|
@@ -915,7 +916,7 @@ declare const VApp: {
|
|
|
915
916
|
right: number;
|
|
916
917
|
id: string;
|
|
917
918
|
} | undefined;
|
|
918
|
-
items: vue.
|
|
919
|
+
items: Readonly<vue.Ref<{
|
|
919
920
|
size: number;
|
|
920
921
|
position: "left" | "top" | "bottom" | "right";
|
|
921
922
|
top: number;
|
|
@@ -923,7 +924,7 @@ declare const VApp: {
|
|
|
923
924
|
left: number;
|
|
924
925
|
right: number;
|
|
925
926
|
id: string;
|
|
926
|
-
}[]
|
|
927
|
+
}[]>>;
|
|
927
928
|
theme: ThemeInstance;
|
|
928
929
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
929
930
|
style: vue.StyleValue;
|
|
@@ -1376,7 +1377,7 @@ declare const VAppBar: {
|
|
|
1376
1377
|
"v-slot:extension"?: false | (() => vue.VNodeChild) | undefined;
|
|
1377
1378
|
} & {
|
|
1378
1379
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1379
|
-
},
|
|
1380
|
+
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1380
1381
|
'update:modelValue': (value: boolean) => boolean;
|
|
1381
1382
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
1382
1383
|
flat: boolean;
|
|
@@ -1599,7 +1600,7 @@ declare const VAppBar: {
|
|
|
1599
1600
|
"v-slot:extension"?: false | (() => vue.VNodeChild) | undefined;
|
|
1600
1601
|
} & {
|
|
1601
1602
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1602
|
-
},
|
|
1603
|
+
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
1603
1604
|
'update:modelValue': (value: boolean) => boolean;
|
|
1604
1605
|
}, string, {
|
|
1605
1606
|
flat: boolean;
|
|
@@ -9625,7 +9626,7 @@ declare const VBottomNavigation: {
|
|
|
9625
9626
|
theme?: string | undefined;
|
|
9626
9627
|
rounded?: string | number | boolean | undefined;
|
|
9627
9628
|
bgColor?: string | undefined;
|
|
9628
|
-
} & {},
|
|
9629
|
+
} & {}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
9629
9630
|
'update:modelValue': (value: any) => boolean;
|
|
9630
9631
|
}, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
9631
9632
|
absolute: boolean;
|
|
@@ -9742,7 +9743,7 @@ declare const VBottomNavigation: {
|
|
|
9742
9743
|
theme?: string | undefined;
|
|
9743
9744
|
rounded?: string | number | boolean | undefined;
|
|
9744
9745
|
bgColor?: string | undefined;
|
|
9745
|
-
} & {},
|
|
9746
|
+
} & {}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
9746
9747
|
'update:modelValue': (value: any) => boolean;
|
|
9747
9748
|
}, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue">, string, {
|
|
9748
9749
|
absolute: boolean;
|
|
@@ -36071,7 +36072,7 @@ declare const VLayout: {
|
|
|
36071
36072
|
right: number;
|
|
36072
36073
|
id: string;
|
|
36073
36074
|
} | undefined;
|
|
36074
|
-
items: vue.
|
|
36075
|
+
items: Readonly<vue.Ref<{
|
|
36075
36076
|
size: number;
|
|
36076
36077
|
position: "left" | "top" | "bottom" | "right";
|
|
36077
36078
|
top: number;
|
|
@@ -36079,7 +36080,7 @@ declare const VLayout: {
|
|
|
36079
36080
|
left: number;
|
|
36080
36081
|
right: number;
|
|
36081
36082
|
id: string;
|
|
36082
|
-
}[]
|
|
36083
|
+
}[]>>;
|
|
36083
36084
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
36084
36085
|
style: vue.StyleValue;
|
|
36085
36086
|
fullHeight: boolean;
|
|
@@ -36134,7 +36135,7 @@ declare const VLayout: {
|
|
|
36134
36135
|
right: number;
|
|
36135
36136
|
id: string;
|
|
36136
36137
|
} | undefined;
|
|
36137
|
-
items: vue.
|
|
36138
|
+
items: Readonly<vue.Ref<{
|
|
36138
36139
|
size: number;
|
|
36139
36140
|
position: "left" | "top" | "bottom" | "right";
|
|
36140
36141
|
top: number;
|
|
@@ -36142,7 +36143,7 @@ declare const VLayout: {
|
|
|
36142
36143
|
left: number;
|
|
36143
36144
|
right: number;
|
|
36144
36145
|
id: string;
|
|
36145
|
-
}[]
|
|
36146
|
+
}[]>>;
|
|
36146
36147
|
}, {}, {}, {}, {
|
|
36147
36148
|
style: vue.StyleValue;
|
|
36148
36149
|
fullHeight: boolean;
|
|
@@ -36175,7 +36176,7 @@ declare const VLayout: {
|
|
|
36175
36176
|
right: number;
|
|
36176
36177
|
id: string;
|
|
36177
36178
|
} | undefined;
|
|
36178
|
-
items: vue.
|
|
36179
|
+
items: Readonly<vue.Ref<{
|
|
36179
36180
|
size: number;
|
|
36180
36181
|
position: "left" | "top" | "bottom" | "right";
|
|
36181
36182
|
top: number;
|
|
@@ -36183,7 +36184,7 @@ declare const VLayout: {
|
|
|
36183
36184
|
left: number;
|
|
36184
36185
|
right: number;
|
|
36185
36186
|
id: string;
|
|
36186
|
-
}[]
|
|
36187
|
+
}[]>>;
|
|
36187
36188
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
36188
36189
|
style: vue.StyleValue;
|
|
36189
36190
|
fullHeight: boolean;
|
|
@@ -36230,7 +36231,7 @@ declare const VLayoutItem: {
|
|
|
36230
36231
|
} | undefined;
|
|
36231
36232
|
} & {
|
|
36232
36233
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
36233
|
-
},
|
|
36234
|
+
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
36234
36235
|
absolute: boolean;
|
|
36235
36236
|
order: string | number;
|
|
36236
36237
|
position: "left" | "top" | "bottom" | "right";
|
|
@@ -36285,7 +36286,7 @@ declare const VLayoutItem: {
|
|
|
36285
36286
|
} | undefined;
|
|
36286
36287
|
} & {
|
|
36287
36288
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
36288
|
-
},
|
|
36289
|
+
}, {}, {}, {}, {}, {
|
|
36289
36290
|
absolute: boolean;
|
|
36290
36291
|
order: string | number;
|
|
36291
36292
|
style: vue.StyleValue;
|
|
@@ -36314,7 +36315,7 @@ declare const VLayoutItem: {
|
|
|
36314
36315
|
} | undefined;
|
|
36315
36316
|
} & {
|
|
36316
36317
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
36317
|
-
},
|
|
36318
|
+
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
36318
36319
|
absolute: boolean;
|
|
36319
36320
|
order: string | number;
|
|
36320
36321
|
style: vue.StyleValue;
|
|
@@ -38393,7 +38394,7 @@ declare const VMain: {
|
|
|
38393
38394
|
} | undefined;
|
|
38394
38395
|
} & {
|
|
38395
38396
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
38396
|
-
},
|
|
38397
|
+
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
38397
38398
|
style: vue.StyleValue;
|
|
38398
38399
|
tag: string;
|
|
38399
38400
|
scrollable: boolean;
|
|
@@ -38461,7 +38462,7 @@ declare const VMain: {
|
|
|
38461
38462
|
} | undefined;
|
|
38462
38463
|
} & {
|
|
38463
38464
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
38464
|
-
},
|
|
38465
|
+
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
38465
38466
|
style: vue.StyleValue;
|
|
38466
38467
|
tag: string;
|
|
38467
38468
|
scrollable: boolean;
|
|
@@ -67340,47 +67341,47 @@ declare module '@vue/runtime-core' {
|
|
|
67340
67341
|
|
|
67341
67342
|
export interface GlobalComponents {
|
|
67342
67343
|
VApp: typeof import('vuetify/components')['VApp']
|
|
67344
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
67345
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
67343
67346
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
67344
67347
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
67345
67348
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
67346
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
67347
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
|
67348
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
67349
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
67350
67349
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
67351
67350
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
67352
67351
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
67353
|
-
|
|
67352
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
67353
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
67354
67354
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
67355
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
67355
67356
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
67356
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
67357
67357
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
67358
67358
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
67359
67359
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
67360
|
-
|
|
67360
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
67361
67361
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
67362
|
-
|
|
67363
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
67362
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
67364
67363
|
VCard: typeof import('vuetify/components')['VCard']
|
|
67365
67364
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
67366
67365
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
67367
67366
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
67368
67367
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
67369
67368
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
67369
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
67370
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
67370
67371
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
67371
67372
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
67372
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
67373
67373
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
67374
67374
|
VCode: typeof import('vuetify/components')['VCode']
|
|
67375
|
-
|
|
67375
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
67376
67376
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
67377
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
67378
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
67377
67379
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
67378
67380
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
67379
67381
|
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
67380
67382
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
67381
67383
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
67382
67384
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
67383
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
67384
67385
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
67385
67386
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
67386
67387
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
@@ -67394,21 +67395,21 @@ declare module '@vue/runtime-core' {
|
|
|
67394
67395
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
67395
67396
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
67396
67397
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
67397
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
67398
67398
|
VField: typeof import('vuetify/components')['VField']
|
|
67399
67399
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
67400
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
67400
67401
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
67401
67402
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
67402
67403
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
67403
67404
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
67404
67405
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
67405
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
67406
67406
|
VImg: typeof import('vuetify/components')['VImg']
|
|
67407
67407
|
VInput: typeof import('vuetify/components')['VInput']
|
|
67408
|
-
|
|
67408
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
67409
67409
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
67410
67410
|
VItem: typeof import('vuetify/components')['VItem']
|
|
67411
67411
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
67412
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
67412
67413
|
VList: typeof import('vuetify/components')['VList']
|
|
67413
67414
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
67414
67415
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -67424,38 +67425,38 @@ declare module '@vue/runtime-core' {
|
|
|
67424
67425
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
67425
67426
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
67426
67427
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
67427
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
67428
67428
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
67429
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
67430
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
67429
67431
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
67430
67432
|
VRating: typeof import('vuetify/components')['VRating']
|
|
67431
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
67432
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
|
67433
67433
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
67434
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
|
67434
67435
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
67436
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
67435
67437
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
67438
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
67436
67439
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
67437
67440
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
67438
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
67439
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
67440
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
67441
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
|
67442
|
-
VTab: typeof import('vuetify/components')['VTab']
|
|
67443
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
67444
67441
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
67445
67442
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
67446
67443
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
67447
67444
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
67448
67445
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
67449
67446
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
67450
|
-
|
|
67447
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
67448
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
67449
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
|
67450
|
+
VTab: typeof import('vuetify/components')['VTab']
|
|
67451
67451
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
67452
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
67452
67453
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
67453
67454
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
67454
67455
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
67455
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
67456
67456
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
67457
67457
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
67458
67458
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
67459
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
67459
67460
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
67460
67461
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
67461
67462
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
@@ -67467,18 +67468,18 @@ declare module '@vue/runtime-core' {
|
|
|
67467
67468
|
VRow: typeof import('vuetify/components')['VRow']
|
|
67468
67469
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
67469
67470
|
VHover: typeof import('vuetify/components')['VHover']
|
|
67470
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
|
67471
67471
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
67472
67472
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
67473
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
|
67473
67474
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
67474
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
|
67475
67475
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
67476
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
|
67476
67477
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
67477
67478
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
67478
67479
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
67479
67480
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
67480
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
67481
67481
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
67482
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
67482
67483
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
67483
67484
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
67484
67485
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -67495,14 +67496,14 @@ declare module '@vue/runtime-core' {
|
|
|
67495
67496
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
67496
67497
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
67497
67498
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
67498
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
67499
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
67500
67499
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
67501
67500
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
67502
67501
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
67503
67502
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
67504
67503
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
67505
67504
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
67505
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
67506
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
67506
67507
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
67507
67508
|
}
|
|
67508
67509
|
}
|