@vuetify/nightly 3.6.4-master.2024-05-09 → 3.6.4-master.2024-05-10
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 +24 -0
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +134 -134
- package/dist/json/tags.json +6 -0
- package/dist/json/web-types.json +61 -1
- package/dist/vuetify-labs.css +1987 -1987
- package/dist/vuetify-labs.d.ts +54 -0
- package/dist/vuetify-labs.esm.js +15 -8
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +15 -8
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1021 -1021
- package/dist/vuetify.d.ts +98 -44
- package/dist/vuetify.esm.js +15 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +15 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +7 -7
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.mjs +6 -2
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.mjs +3 -2
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +3 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +54 -0
- package/lib/components/index.d.mts +54 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +44 -44
- package/package.json +1 -1
@@ -24160,6 +24160,8 @@ declare const VDataTable: {
|
|
24160
24160
|
sortDescIcon: IconValue;
|
24161
24161
|
fixedHeader: boolean;
|
24162
24162
|
fixedFooter: boolean;
|
24163
|
+
hideDefaultFooter: boolean;
|
24164
|
+
hideDefaultHeader: boolean;
|
24163
24165
|
} & {
|
24164
24166
|
search?: string | undefined;
|
24165
24167
|
class?: any;
|
@@ -24235,6 +24237,8 @@ declare const VDataTable: {
|
|
24235
24237
|
sortDescIcon: IconValue;
|
24236
24238
|
fixedHeader: boolean;
|
24237
24239
|
fixedFooter: boolean;
|
24240
|
+
hideDefaultFooter: boolean;
|
24241
|
+
hideDefaultHeader: boolean;
|
24238
24242
|
} & {
|
24239
24243
|
search?: string | undefined;
|
24240
24244
|
class?: any;
|
@@ -24301,6 +24305,8 @@ declare const VDataTable: {
|
|
24301
24305
|
sortDescIcon: IconValue;
|
24302
24306
|
fixedHeader: boolean;
|
24303
24307
|
fixedFooter: boolean;
|
24308
|
+
hideDefaultFooter: boolean;
|
24309
|
+
hideDefaultHeader: boolean;
|
24304
24310
|
}, true, {}, vue.SlotsType<Partial<{
|
24305
24311
|
[x: `item.${string}`]: (arg: ItemKeySlot<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
24306
24312
|
[key: string]: any;
|
@@ -24449,6 +24455,8 @@ declare const VDataTable: {
|
|
24449
24455
|
sortDescIcon: IconValue;
|
24450
24456
|
fixedHeader: boolean;
|
24451
24457
|
fixedFooter: boolean;
|
24458
|
+
hideDefaultFooter: boolean;
|
24459
|
+
hideDefaultHeader: boolean;
|
24452
24460
|
} & {
|
24453
24461
|
search?: string | undefined;
|
24454
24462
|
class?: any;
|
@@ -24515,6 +24523,8 @@ declare const VDataTable: {
|
|
24515
24523
|
sortDescIcon: IconValue;
|
24516
24524
|
fixedHeader: boolean;
|
24517
24525
|
fixedFooter: boolean;
|
24526
|
+
hideDefaultFooter: boolean;
|
24527
|
+
hideDefaultHeader: boolean;
|
24518
24528
|
}>;
|
24519
24529
|
__isFragment?: undefined;
|
24520
24530
|
__isTeleport?: undefined;
|
@@ -24563,6 +24573,8 @@ declare const VDataTable: {
|
|
24563
24573
|
sortDescIcon: IconValue;
|
24564
24574
|
fixedHeader: boolean;
|
24565
24575
|
fixedFooter: boolean;
|
24576
|
+
hideDefaultFooter: boolean;
|
24577
|
+
hideDefaultHeader: boolean;
|
24566
24578
|
} & {
|
24567
24579
|
search?: string | undefined;
|
24568
24580
|
class?: any;
|
@@ -24638,6 +24650,8 @@ declare const VDataTable: {
|
|
24638
24650
|
sortDescIcon: IconValue;
|
24639
24651
|
fixedHeader: boolean;
|
24640
24652
|
fixedFooter: boolean;
|
24653
|
+
hideDefaultFooter: boolean;
|
24654
|
+
hideDefaultHeader: boolean;
|
24641
24655
|
}, {}, string, vue.SlotsType<Partial<{
|
24642
24656
|
[x: `item.${string}`]: (arg: ItemKeySlot<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
24643
24657
|
[key: string]: any;
|
@@ -24985,6 +24999,8 @@ declare const VDataTable: {
|
|
24985
24999
|
type: vue.PropType<readonly string[]>;
|
24986
25000
|
default: () => never[];
|
24987
25001
|
};
|
25002
|
+
hideDefaultFooter: BooleanConstructor;
|
25003
|
+
hideDefaultHeader: BooleanConstructor;
|
24988
25004
|
width: (StringConstructor | NumberConstructor)[];
|
24989
25005
|
search: StringConstructor;
|
24990
25006
|
loadingText: {
|
@@ -25192,6 +25208,8 @@ declare const VDataTable: {
|
|
25192
25208
|
type: vue.PropType<readonly string[]>;
|
25193
25209
|
default: () => never[];
|
25194
25210
|
};
|
25211
|
+
hideDefaultFooter: BooleanConstructor;
|
25212
|
+
hideDefaultHeader: BooleanConstructor;
|
25195
25213
|
width: (StringConstructor | NumberConstructor)[];
|
25196
25214
|
search: StringConstructor;
|
25197
25215
|
loadingText: {
|
@@ -25530,6 +25548,8 @@ declare const VDataTableVirtual: {
|
|
25530
25548
|
sortDescIcon: IconValue;
|
25531
25549
|
fixedHeader: boolean;
|
25532
25550
|
fixedFooter: boolean;
|
25551
|
+
hideDefaultFooter: boolean;
|
25552
|
+
hideDefaultHeader: boolean;
|
25533
25553
|
} & {
|
25534
25554
|
search?: string | undefined;
|
25535
25555
|
class?: any;
|
@@ -25628,6 +25648,8 @@ declare const VDataTableVirtual: {
|
|
25628
25648
|
sortDescIcon: IconValue;
|
25629
25649
|
fixedHeader: boolean;
|
25630
25650
|
fixedFooter: boolean;
|
25651
|
+
hideDefaultFooter: boolean;
|
25652
|
+
hideDefaultHeader: boolean;
|
25631
25653
|
} & {
|
25632
25654
|
search?: string | undefined;
|
25633
25655
|
class?: any;
|
@@ -25720,6 +25742,8 @@ declare const VDataTableVirtual: {
|
|
25720
25742
|
sortDescIcon: IconValue;
|
25721
25743
|
fixedHeader: boolean;
|
25722
25744
|
fixedFooter: boolean;
|
25745
|
+
hideDefaultFooter: boolean;
|
25746
|
+
hideDefaultHeader: boolean;
|
25723
25747
|
}, true, {}, vue.SlotsType<Partial<{
|
25724
25748
|
[x: `item.${string}`]: (arg: ItemKeySlot<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
25725
25749
|
[key: string]: any;
|
@@ -25836,6 +25860,8 @@ declare const VDataTableVirtual: {
|
|
25836
25860
|
sortDescIcon: IconValue;
|
25837
25861
|
fixedHeader: boolean;
|
25838
25862
|
fixedFooter: boolean;
|
25863
|
+
hideDefaultFooter: boolean;
|
25864
|
+
hideDefaultHeader: boolean;
|
25839
25865
|
} & {
|
25840
25866
|
search?: string | undefined;
|
25841
25867
|
class?: any;
|
@@ -25928,6 +25954,8 @@ declare const VDataTableVirtual: {
|
|
25928
25954
|
sortDescIcon: IconValue;
|
25929
25955
|
fixedHeader: boolean;
|
25930
25956
|
fixedFooter: boolean;
|
25957
|
+
hideDefaultFooter: boolean;
|
25958
|
+
hideDefaultHeader: boolean;
|
25931
25959
|
}>;
|
25932
25960
|
__isFragment?: undefined;
|
25933
25961
|
__isTeleport?: undefined;
|
@@ -25960,6 +25988,8 @@ declare const VDataTableVirtual: {
|
|
25960
25988
|
sortDescIcon: IconValue;
|
25961
25989
|
fixedHeader: boolean;
|
25962
25990
|
fixedFooter: boolean;
|
25991
|
+
hideDefaultFooter: boolean;
|
25992
|
+
hideDefaultHeader: boolean;
|
25963
25993
|
} & {
|
25964
25994
|
search?: string | undefined;
|
25965
25995
|
class?: any;
|
@@ -26058,6 +26088,8 @@ declare const VDataTableVirtual: {
|
|
26058
26088
|
sortDescIcon: IconValue;
|
26059
26089
|
fixedHeader: boolean;
|
26060
26090
|
fixedFooter: boolean;
|
26091
|
+
hideDefaultFooter: boolean;
|
26092
|
+
hideDefaultHeader: boolean;
|
26061
26093
|
}, {}, string, vue.SlotsType<Partial<{
|
26062
26094
|
[x: `item.${string}`]: (arg: ItemKeySlot<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
26063
26095
|
[key: string]: any;
|
@@ -26296,6 +26328,8 @@ declare const VDataTableVirtual: {
|
|
26296
26328
|
type: vue.PropType<readonly string[]>;
|
26297
26329
|
default: () => never[];
|
26298
26330
|
};
|
26331
|
+
hideDefaultFooter: BooleanConstructor;
|
26332
|
+
hideDefaultHeader: BooleanConstructor;
|
26299
26333
|
width: (StringConstructor | NumberConstructor)[];
|
26300
26334
|
search: StringConstructor;
|
26301
26335
|
loadingText: {
|
@@ -26448,6 +26482,8 @@ declare const VDataTableVirtual: {
|
|
26448
26482
|
type: vue.PropType<readonly string[]>;
|
26449
26483
|
default: () => never[];
|
26450
26484
|
};
|
26485
|
+
hideDefaultFooter: BooleanConstructor;
|
26486
|
+
hideDefaultHeader: BooleanConstructor;
|
26451
26487
|
width: (StringConstructor | NumberConstructor)[];
|
26452
26488
|
search: StringConstructor;
|
26453
26489
|
loadingText: {
|
@@ -26507,6 +26543,8 @@ declare const VDataTableServer: {
|
|
26507
26543
|
sortDescIcon: IconValue;
|
26508
26544
|
fixedHeader: boolean;
|
26509
26545
|
fixedFooter: boolean;
|
26546
|
+
hideDefaultFooter: boolean;
|
26547
|
+
hideDefaultHeader: boolean;
|
26510
26548
|
} & {
|
26511
26549
|
search?: string | undefined;
|
26512
26550
|
class?: any;
|
@@ -26621,6 +26659,8 @@ declare const VDataTableServer: {
|
|
26621
26659
|
sortDescIcon: IconValue;
|
26622
26660
|
fixedHeader: boolean;
|
26623
26661
|
fixedFooter: boolean;
|
26662
|
+
hideDefaultFooter: boolean;
|
26663
|
+
hideDefaultHeader: boolean;
|
26624
26664
|
} & {
|
26625
26665
|
search?: string | undefined;
|
26626
26666
|
class?: any;
|
@@ -26726,6 +26766,8 @@ declare const VDataTableServer: {
|
|
26726
26766
|
sortDescIcon: IconValue;
|
26727
26767
|
fixedHeader: boolean;
|
26728
26768
|
fixedFooter: boolean;
|
26769
|
+
hideDefaultFooter: boolean;
|
26770
|
+
hideDefaultHeader: boolean;
|
26729
26771
|
}, true, {}, vue.SlotsType<Partial<{
|
26730
26772
|
[x: `item.${string}`]: (arg: ItemKeySlot<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
26731
26773
|
[key: string]: any;
|
@@ -26873,6 +26915,8 @@ declare const VDataTableServer: {
|
|
26873
26915
|
sortDescIcon: IconValue;
|
26874
26916
|
fixedHeader: boolean;
|
26875
26917
|
fixedFooter: boolean;
|
26918
|
+
hideDefaultFooter: boolean;
|
26919
|
+
hideDefaultHeader: boolean;
|
26876
26920
|
} & {
|
26877
26921
|
search?: string | undefined;
|
26878
26922
|
class?: any;
|
@@ -26978,6 +27022,8 @@ declare const VDataTableServer: {
|
|
26978
27022
|
sortDescIcon: IconValue;
|
26979
27023
|
fixedHeader: boolean;
|
26980
27024
|
fixedFooter: boolean;
|
27025
|
+
hideDefaultFooter: boolean;
|
27026
|
+
hideDefaultHeader: boolean;
|
26981
27027
|
}>;
|
26982
27028
|
__isFragment?: undefined;
|
26983
27029
|
__isTeleport?: undefined;
|
@@ -27025,6 +27071,8 @@ declare const VDataTableServer: {
|
|
27025
27071
|
sortDescIcon: IconValue;
|
27026
27072
|
fixedHeader: boolean;
|
27027
27073
|
fixedFooter: boolean;
|
27074
|
+
hideDefaultFooter: boolean;
|
27075
|
+
hideDefaultHeader: boolean;
|
27028
27076
|
} & {
|
27029
27077
|
search?: string | undefined;
|
27030
27078
|
class?: any;
|
@@ -27138,6 +27186,8 @@ declare const VDataTableServer: {
|
|
27138
27186
|
sortDescIcon: IconValue;
|
27139
27187
|
fixedHeader: boolean;
|
27140
27188
|
fixedFooter: boolean;
|
27189
|
+
hideDefaultFooter: boolean;
|
27190
|
+
hideDefaultHeader: boolean;
|
27141
27191
|
}, {}, string, vue.SlotsType<Partial<{
|
27142
27192
|
[x: `item.${string}`]: (arg: ItemKeySlot<any>) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
27143
27193
|
[key: string]: any;
|
@@ -27431,6 +27481,8 @@ declare const VDataTableServer: {
|
|
27431
27481
|
type: vue.PropType<readonly string[]>;
|
27432
27482
|
default: () => never[];
|
27433
27483
|
};
|
27484
|
+
hideDefaultFooter: BooleanConstructor;
|
27485
|
+
hideDefaultHeader: BooleanConstructor;
|
27434
27486
|
width: (StringConstructor | NumberConstructor)[];
|
27435
27487
|
search: StringConstructor;
|
27436
27488
|
loadingText: {
|
@@ -27634,6 +27686,8 @@ declare const VDataTableServer: {
|
|
27634
27686
|
type: vue.PropType<readonly string[]>;
|
27635
27687
|
default: () => never[];
|
27636
27688
|
};
|
27689
|
+
hideDefaultFooter: BooleanConstructor;
|
27690
|
+
hideDefaultHeader: BooleanConstructor;
|
27637
27691
|
width: (StringConstructor | NumberConstructor)[];
|
27638
27692
|
search: StringConstructor;
|
27639
27693
|
loadingText: {
|
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.6.4-master.2024-05-
|
19
|
+
export const version = "3.6.4-master.2024-05-10";
|
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
@@ -493,79 +493,79 @@ declare module '@vue/runtime-core' {
|
|
493
493
|
}
|
494
494
|
|
495
495
|
export interface GlobalComponents {
|
496
|
-
VApp: typeof import('vuetify/components')['VApp']
|
497
496
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
498
497
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
499
498
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
500
499
|
VAlert: typeof import('vuetify/components')['VAlert']
|
501
500
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
502
501
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
502
|
+
VApp: typeof import('vuetify/components')['VApp']
|
503
503
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
504
|
-
VBanner: typeof import('vuetify/components')['VBanner']
|
505
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
506
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
507
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
508
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
509
504
|
VBadge: typeof import('vuetify/components')['VBadge']
|
510
505
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
511
506
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
512
507
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
513
|
-
|
508
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
509
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
510
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
511
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
512
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
514
513
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
515
|
-
|
514
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
516
515
|
VCard: typeof import('vuetify/components')['VCard']
|
517
516
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
518
517
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
519
518
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
520
519
|
VCardText: typeof import('vuetify/components')['VCardText']
|
521
520
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
522
|
-
|
523
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
521
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
524
522
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
525
523
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
524
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
525
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
526
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
527
|
+
VChip: typeof import('vuetify/components')['VChip']
|
526
528
|
VCode: typeof import('vuetify/components')['VCode']
|
527
529
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
528
|
-
VChip: typeof import('vuetify/components')['VChip']
|
529
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
530
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
531
530
|
VCounter: typeof import('vuetify/components')['VCounter']
|
532
|
-
VDataTable: typeof import('vuetify/components')['VDataTable']
|
533
|
-
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
534
|
-
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
535
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
536
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
537
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
538
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
539
531
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
540
532
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
541
533
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
542
534
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
543
535
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
544
536
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
537
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
545
538
|
VDialog: typeof import('vuetify/components')['VDialog']
|
539
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
540
|
+
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
541
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
542
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
543
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
544
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
545
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
546
546
|
VDivider: typeof import('vuetify/components')['VDivider']
|
547
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
548
547
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
549
548
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
550
549
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
551
550
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
552
|
-
|
553
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
551
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
554
552
|
VField: typeof import('vuetify/components')['VField']
|
555
553
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
554
|
+
VFab: typeof import('vuetify/components')['VFab']
|
556
555
|
VFooter: typeof import('vuetify/components')['VFooter']
|
556
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
557
|
+
VImg: typeof import('vuetify/components')['VImg']
|
557
558
|
VIcon: typeof import('vuetify/components')['VIcon']
|
558
559
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
559
560
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
560
561
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
561
562
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
563
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
562
564
|
VInput: typeof import('vuetify/components')['VInput']
|
563
|
-
VImg: typeof import('vuetify/components')['VImg']
|
564
565
|
VLabel: typeof import('vuetify/components')['VLabel']
|
565
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
566
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
567
566
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
568
567
|
VItem: typeof import('vuetify/components')['VItem']
|
568
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
569
569
|
VList: typeof import('vuetify/components')['VList']
|
570
570
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
571
571
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -576,20 +576,22 @@ declare module '@vue/runtime-core' {
|
|
576
576
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
577
577
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
578
578
|
VMenu: typeof import('vuetify/components')['VMenu']
|
579
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
580
579
|
VMain: typeof import('vuetify/components')['VMain']
|
581
|
-
|
580
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
582
581
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
582
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
583
583
|
VPagination: typeof import('vuetify/components')['VPagination']
|
584
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
585
584
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
586
|
-
|
585
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
587
586
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
587
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
588
588
|
VRating: typeof import('vuetify/components')['VRating']
|
589
589
|
VSelect: typeof import('vuetify/components')['VSelect']
|
590
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
591
590
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
591
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
592
592
|
VSheet: typeof import('vuetify/components')['VSheet']
|
593
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
594
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
593
595
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
594
596
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
595
597
|
VStepper: typeof import('vuetify/components')['VStepper']
|
@@ -598,23 +600,21 @@ declare module '@vue/runtime-core' {
|
|
598
600
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
599
601
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
600
602
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
601
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
602
603
|
VSlider: typeof import('vuetify/components')['VSlider']
|
603
604
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
604
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
605
605
|
VTab: typeof import('vuetify/components')['VTab']
|
606
606
|
VTabs: typeof import('vuetify/components')['VTabs']
|
607
607
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
608
608
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
609
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
609
610
|
VTable: typeof import('vuetify/components')['VTable']
|
610
611
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
612
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
611
613
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
612
614
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
613
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
614
615
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
615
616
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
616
617
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
617
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
618
618
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
619
619
|
VWindow: typeof import('vuetify/components')['VWindow']
|
620
620
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
@@ -622,24 +622,24 @@ declare module '@vue/runtime-core' {
|
|
622
622
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
623
623
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
624
624
|
VForm: typeof import('vuetify/components')['VForm']
|
625
|
+
VHover: typeof import('vuetify/components')['VHover']
|
625
626
|
VContainer: typeof import('vuetify/components')['VContainer']
|
626
627
|
VCol: typeof import('vuetify/components')['VCol']
|
627
628
|
VRow: typeof import('vuetify/components')['VRow']
|
628
629
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
629
|
-
VHover: typeof import('vuetify/components')['VHover']
|
630
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
631
630
|
VLayout: typeof import('vuetify/components')['VLayout']
|
632
631
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
633
632
|
VLazy: typeof import('vuetify/components')['VLazy']
|
633
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
634
634
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
635
635
|
VParallax: typeof import('vuetify/components')['VParallax']
|
636
636
|
VRadio: typeof import('vuetify/components')['VRadio']
|
637
637
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
638
638
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
639
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
640
639
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
641
|
-
|
640
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
642
641
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
642
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
643
643
|
VValidation: typeof import('vuetify/components')['VValidation']
|
644
644
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
645
645
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
@@ -666,14 +666,14 @@ declare module '@vue/runtime-core' {
|
|
666
666
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
667
667
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
668
668
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
669
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
670
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
671
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
672
669
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
673
670
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
674
671
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
675
|
-
|
676
|
-
|
672
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
673
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
674
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
677
675
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
676
|
+
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
677
|
+
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
678
678
|
}
|
679
679
|
}
|