@vuetify/nightly 3.4.0-dev.2023-11-09 → 3.4.0-dev.2023-12-01
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 +7 -2
- package/dist/json/attributes.json +1918 -1902
- package/dist/json/importMap.json +126 -126
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +3793 -3757
- package/dist/vuetify-labs.css +1943 -1940
- package/dist/vuetify-labs.d.ts +48 -2
- package/dist/vuetify-labs.esm.js +110 -101
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +109 -100
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +198 -195
- package/dist/vuetify.d.ts +85 -39
- package/dist/vuetify.esm.js +110 -101
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +109 -100
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +132 -131
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VCarousel/index.d.mts +24 -1
- package/lib/components/VImg/VImg.css +3 -0
- package/lib/components/VImg/VImg.mjs +14 -3
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VImg/VImg.sass +3 -0
- package/lib/components/VImg/_variables.scss +3 -0
- package/lib/components/VImg/index.d.mts +24 -1
- package/lib/components/index.d.mts +48 -2
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +37 -37
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
|
@@ -14719,6 +14719,7 @@ declare const VImg: {
|
|
|
14719
14719
|
options: IntersectionObserverInit;
|
|
14720
14720
|
cover: boolean;
|
|
14721
14721
|
src: string | srcObject;
|
|
14722
|
+
rounded: string | number | boolean;
|
|
14722
14723
|
}> & Omit<{
|
|
14723
14724
|
inline: boolean;
|
|
14724
14725
|
transition: string | boolean | (vue.TransitionProps & {
|
|
@@ -14732,6 +14733,7 @@ declare const VImg: {
|
|
|
14732
14733
|
height?: string | number | undefined;
|
|
14733
14734
|
width?: string | number | undefined;
|
|
14734
14735
|
aspectRatio?: string | number | undefined;
|
|
14736
|
+
color?: string | undefined;
|
|
14735
14737
|
maxHeight?: string | number | undefined;
|
|
14736
14738
|
maxWidth?: string | number | undefined;
|
|
14737
14739
|
minHeight?: string | number | undefined;
|
|
@@ -14745,6 +14747,7 @@ declare const VImg: {
|
|
|
14745
14747
|
sizes?: string | undefined;
|
|
14746
14748
|
srcset?: string | undefined;
|
|
14747
14749
|
contentClass?: string | undefined;
|
|
14750
|
+
rounded?: string | number | boolean | undefined;
|
|
14748
14751
|
gradient?: string | undefined;
|
|
14749
14752
|
lazySrc?: string | undefined;
|
|
14750
14753
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -14780,6 +14783,7 @@ declare const VImg: {
|
|
|
14780
14783
|
height?: string | number | undefined;
|
|
14781
14784
|
width?: string | number | undefined;
|
|
14782
14785
|
aspectRatio?: string | number | undefined;
|
|
14786
|
+
color?: string | undefined;
|
|
14783
14787
|
maxHeight?: string | number | undefined;
|
|
14784
14788
|
maxWidth?: string | number | undefined;
|
|
14785
14789
|
minHeight?: string | number | undefined;
|
|
@@ -14793,6 +14797,7 @@ declare const VImg: {
|
|
|
14793
14797
|
sizes?: string | undefined;
|
|
14794
14798
|
srcset?: string | undefined;
|
|
14795
14799
|
contentClass?: string | undefined;
|
|
14800
|
+
rounded?: string | number | boolean | undefined;
|
|
14796
14801
|
gradient?: string | undefined;
|
|
14797
14802
|
lazySrc?: string | undefined;
|
|
14798
14803
|
} & {
|
|
@@ -14817,7 +14822,7 @@ declare const VImg: {
|
|
|
14817
14822
|
onError?: ((value: string | undefined) => any) | undefined;
|
|
14818
14823
|
onLoad?: ((value: string | undefined) => any) | undefined;
|
|
14819
14824
|
onLoadstart?: ((value: string | undefined) => any) | undefined;
|
|
14820
|
-
}, "inline" | "transition" | "style" | "draggable" | "eager" | "options" | "cover" | "src">;
|
|
14825
|
+
}, "inline" | "transition" | "style" | "draggable" | "eager" | "options" | "cover" | "src" | "rounded">;
|
|
14821
14826
|
$attrs: {
|
|
14822
14827
|
[x: string]: unknown;
|
|
14823
14828
|
};
|
|
@@ -14856,6 +14861,7 @@ declare const VImg: {
|
|
|
14856
14861
|
height?: string | number | undefined;
|
|
14857
14862
|
width?: string | number | undefined;
|
|
14858
14863
|
aspectRatio?: string | number | undefined;
|
|
14864
|
+
color?: string | undefined;
|
|
14859
14865
|
maxHeight?: string | number | undefined;
|
|
14860
14866
|
maxWidth?: string | number | undefined;
|
|
14861
14867
|
minHeight?: string | number | undefined;
|
|
@@ -14869,6 +14875,7 @@ declare const VImg: {
|
|
|
14869
14875
|
sizes?: string | undefined;
|
|
14870
14876
|
srcset?: string | undefined;
|
|
14871
14877
|
contentClass?: string | undefined;
|
|
14878
|
+
rounded?: string | number | boolean | undefined;
|
|
14872
14879
|
gradient?: string | undefined;
|
|
14873
14880
|
lazySrc?: string | undefined;
|
|
14874
14881
|
} & {
|
|
@@ -14914,6 +14921,7 @@ declare const VImg: {
|
|
|
14914
14921
|
options: IntersectionObserverInit;
|
|
14915
14922
|
cover: boolean;
|
|
14916
14923
|
src: string | srcObject;
|
|
14924
|
+
rounded: string | number | boolean;
|
|
14917
14925
|
}, {}, string, vue.SlotsType<Partial<{
|
|
14918
14926
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
14919
14927
|
[key: string]: any;
|
|
@@ -14961,6 +14969,7 @@ declare const VImg: {
|
|
|
14961
14969
|
height?: string | number | undefined;
|
|
14962
14970
|
width?: string | number | undefined;
|
|
14963
14971
|
aspectRatio?: string | number | undefined;
|
|
14972
|
+
color?: string | undefined;
|
|
14964
14973
|
maxHeight?: string | number | undefined;
|
|
14965
14974
|
maxWidth?: string | number | undefined;
|
|
14966
14975
|
minHeight?: string | number | undefined;
|
|
@@ -14974,6 +14983,7 @@ declare const VImg: {
|
|
|
14974
14983
|
sizes?: string | undefined;
|
|
14975
14984
|
srcset?: string | undefined;
|
|
14976
14985
|
contentClass?: string | undefined;
|
|
14986
|
+
rounded?: string | number | boolean | undefined;
|
|
14977
14987
|
gradient?: string | undefined;
|
|
14978
14988
|
lazySrc?: string | undefined;
|
|
14979
14989
|
} & {
|
|
@@ -15022,6 +15032,7 @@ declare const VImg: {
|
|
|
15022
15032
|
height?: string | number | undefined;
|
|
15023
15033
|
width?: string | number | undefined;
|
|
15024
15034
|
aspectRatio?: string | number | undefined;
|
|
15035
|
+
color?: string | undefined;
|
|
15025
15036
|
maxHeight?: string | number | undefined;
|
|
15026
15037
|
maxWidth?: string | number | undefined;
|
|
15027
15038
|
minHeight?: string | number | undefined;
|
|
@@ -15035,6 +15046,7 @@ declare const VImg: {
|
|
|
15035
15046
|
sizes?: string | undefined;
|
|
15036
15047
|
srcset?: string | undefined;
|
|
15037
15048
|
contentClass?: string | undefined;
|
|
15049
|
+
rounded?: string | number | boolean | undefined;
|
|
15038
15050
|
gradient?: string | undefined;
|
|
15039
15051
|
lazySrc?: string | undefined;
|
|
15040
15052
|
} & {
|
|
@@ -15080,6 +15092,7 @@ declare const VImg: {
|
|
|
15080
15092
|
options: IntersectionObserverInit;
|
|
15081
15093
|
cover: boolean;
|
|
15082
15094
|
src: string | srcObject;
|
|
15095
|
+
rounded: string | number | boolean;
|
|
15083
15096
|
}, {}, string, vue.SlotsType<Partial<{
|
|
15084
15097
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
15085
15098
|
[key: string]: any;
|
|
@@ -15101,6 +15114,10 @@ declare const VImg: {
|
|
|
15101
15114
|
default: string;
|
|
15102
15115
|
validator: (val: unknown) => boolean;
|
|
15103
15116
|
};
|
|
15117
|
+
rounded: {
|
|
15118
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
15119
|
+
default: undefined;
|
|
15120
|
+
};
|
|
15104
15121
|
class: PropType<any>;
|
|
15105
15122
|
style: {
|
|
15106
15123
|
type: PropType<vue.StyleValue>;
|
|
@@ -15117,6 +15134,7 @@ declare const VImg: {
|
|
|
15117
15134
|
inline: BooleanConstructor;
|
|
15118
15135
|
alt: StringConstructor;
|
|
15119
15136
|
cover: BooleanConstructor;
|
|
15137
|
+
color: StringConstructor;
|
|
15120
15138
|
draggable: {
|
|
15121
15139
|
type: PropType<boolean | "false" | "true">;
|
|
15122
15140
|
default: undefined;
|
|
@@ -15149,6 +15167,10 @@ declare const VImg: {
|
|
|
15149
15167
|
default: string;
|
|
15150
15168
|
validator: (val: unknown) => boolean;
|
|
15151
15169
|
};
|
|
15170
|
+
rounded: {
|
|
15171
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
15172
|
+
default: undefined;
|
|
15173
|
+
};
|
|
15152
15174
|
class: PropType<any>;
|
|
15153
15175
|
style: {
|
|
15154
15176
|
type: PropType<vue.StyleValue>;
|
|
@@ -15165,6 +15187,7 @@ declare const VImg: {
|
|
|
15165
15187
|
inline: BooleanConstructor;
|
|
15166
15188
|
alt: StringConstructor;
|
|
15167
15189
|
cover: BooleanConstructor;
|
|
15190
|
+
color: StringConstructor;
|
|
15168
15191
|
draggable: {
|
|
15169
15192
|
type: PropType<boolean | "false" | "true">;
|
|
15170
15193
|
default: undefined;
|
|
@@ -15206,6 +15229,7 @@ declare const VCarouselItem: {
|
|
|
15206
15229
|
options: IntersectionObserverInit;
|
|
15207
15230
|
cover: boolean;
|
|
15208
15231
|
src: string | srcObject;
|
|
15232
|
+
rounded: string | number | boolean;
|
|
15209
15233
|
reverseTransition: string | boolean;
|
|
15210
15234
|
}> & Omit<{
|
|
15211
15235
|
inline: boolean;
|
|
@@ -15218,6 +15242,7 @@ declare const VCarouselItem: {
|
|
|
15218
15242
|
height?: string | number | undefined;
|
|
15219
15243
|
width?: string | number | undefined;
|
|
15220
15244
|
aspectRatio?: string | number | undefined;
|
|
15245
|
+
color?: string | undefined;
|
|
15221
15246
|
maxHeight?: string | number | undefined;
|
|
15222
15247
|
maxWidth?: string | number | undefined;
|
|
15223
15248
|
minHeight?: string | number | undefined;
|
|
@@ -15233,6 +15258,7 @@ declare const VCarouselItem: {
|
|
|
15233
15258
|
sizes?: string | undefined;
|
|
15234
15259
|
srcset?: string | undefined;
|
|
15235
15260
|
contentClass?: string | undefined;
|
|
15261
|
+
rounded?: string | number | boolean | undefined;
|
|
15236
15262
|
gradient?: string | undefined;
|
|
15237
15263
|
lazySrc?: string | undefined;
|
|
15238
15264
|
selectedClass?: string | undefined;
|
|
@@ -15265,6 +15291,7 @@ declare const VCarouselItem: {
|
|
|
15265
15291
|
height?: string | number | undefined;
|
|
15266
15292
|
width?: string | number | undefined;
|
|
15267
15293
|
aspectRatio?: string | number | undefined;
|
|
15294
|
+
color?: string | undefined;
|
|
15268
15295
|
maxHeight?: string | number | undefined;
|
|
15269
15296
|
maxWidth?: string | number | undefined;
|
|
15270
15297
|
minHeight?: string | number | undefined;
|
|
@@ -15280,6 +15307,7 @@ declare const VCarouselItem: {
|
|
|
15280
15307
|
sizes?: string | undefined;
|
|
15281
15308
|
srcset?: string | undefined;
|
|
15282
15309
|
contentClass?: string | undefined;
|
|
15310
|
+
rounded?: string | number | boolean | undefined;
|
|
15283
15311
|
gradient?: string | undefined;
|
|
15284
15312
|
lazySrc?: string | undefined;
|
|
15285
15313
|
selectedClass?: string | undefined;
|
|
@@ -15302,7 +15330,7 @@ declare const VCarouselItem: {
|
|
|
15302
15330
|
"v-slot:placeholder"?: false | (() => vue.VNodeChild) | undefined;
|
|
15303
15331
|
"v-slot:error"?: false | (() => vue.VNodeChild) | undefined;
|
|
15304
15332
|
"v-slot:sources"?: false | (() => vue.VNodeChild) | undefined;
|
|
15305
|
-
}, "inline" | "transition" | "style" | "draggable" | "eager" | "disabled" | "options" | "cover" | "src" | "reverseTransition">;
|
|
15333
|
+
}, "inline" | "transition" | "style" | "draggable" | "eager" | "disabled" | "options" | "cover" | "src" | "rounded" | "reverseTransition">;
|
|
15306
15334
|
$attrs: {
|
|
15307
15335
|
[x: string]: unknown;
|
|
15308
15336
|
};
|
|
@@ -15339,6 +15367,7 @@ declare const VCarouselItem: {
|
|
|
15339
15367
|
height?: string | number | undefined;
|
|
15340
15368
|
width?: string | number | undefined;
|
|
15341
15369
|
aspectRatio?: string | number | undefined;
|
|
15370
|
+
color?: string | undefined;
|
|
15342
15371
|
maxHeight?: string | number | undefined;
|
|
15343
15372
|
maxWidth?: string | number | undefined;
|
|
15344
15373
|
minHeight?: string | number | undefined;
|
|
@@ -15354,6 +15383,7 @@ declare const VCarouselItem: {
|
|
|
15354
15383
|
sizes?: string | undefined;
|
|
15355
15384
|
srcset?: string | undefined;
|
|
15356
15385
|
contentClass?: string | undefined;
|
|
15386
|
+
rounded?: string | number | boolean | undefined;
|
|
15357
15387
|
gradient?: string | undefined;
|
|
15358
15388
|
lazySrc?: string | undefined;
|
|
15359
15389
|
selectedClass?: string | undefined;
|
|
@@ -15386,6 +15416,7 @@ declare const VCarouselItem: {
|
|
|
15386
15416
|
options: IntersectionObserverInit;
|
|
15387
15417
|
cover: boolean;
|
|
15388
15418
|
src: string | srcObject;
|
|
15419
|
+
rounded: string | number | boolean;
|
|
15389
15420
|
reverseTransition: string | boolean;
|
|
15390
15421
|
}, {}, string, vue.SlotsType<Partial<{
|
|
15391
15422
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -15432,6 +15463,7 @@ declare const VCarouselItem: {
|
|
|
15432
15463
|
height?: string | number | undefined;
|
|
15433
15464
|
width?: string | number | undefined;
|
|
15434
15465
|
aspectRatio?: string | number | undefined;
|
|
15466
|
+
color?: string | undefined;
|
|
15435
15467
|
maxHeight?: string | number | undefined;
|
|
15436
15468
|
maxWidth?: string | number | undefined;
|
|
15437
15469
|
minHeight?: string | number | undefined;
|
|
@@ -15447,6 +15479,7 @@ declare const VCarouselItem: {
|
|
|
15447
15479
|
sizes?: string | undefined;
|
|
15448
15480
|
srcset?: string | undefined;
|
|
15449
15481
|
contentClass?: string | undefined;
|
|
15482
|
+
rounded?: string | number | boolean | undefined;
|
|
15450
15483
|
gradient?: string | undefined;
|
|
15451
15484
|
lazySrc?: string | undefined;
|
|
15452
15485
|
selectedClass?: string | undefined;
|
|
@@ -15485,6 +15518,7 @@ declare const VCarouselItem: {
|
|
|
15485
15518
|
height?: string | number | undefined;
|
|
15486
15519
|
width?: string | number | undefined;
|
|
15487
15520
|
aspectRatio?: string | number | undefined;
|
|
15521
|
+
color?: string | undefined;
|
|
15488
15522
|
maxHeight?: string | number | undefined;
|
|
15489
15523
|
maxWidth?: string | number | undefined;
|
|
15490
15524
|
minHeight?: string | number | undefined;
|
|
@@ -15500,6 +15534,7 @@ declare const VCarouselItem: {
|
|
|
15500
15534
|
sizes?: string | undefined;
|
|
15501
15535
|
srcset?: string | undefined;
|
|
15502
15536
|
contentClass?: string | undefined;
|
|
15537
|
+
rounded?: string | number | boolean | undefined;
|
|
15503
15538
|
gradient?: string | undefined;
|
|
15504
15539
|
lazySrc?: string | undefined;
|
|
15505
15540
|
selectedClass?: string | undefined;
|
|
@@ -15532,6 +15567,7 @@ declare const VCarouselItem: {
|
|
|
15532
15567
|
options: IntersectionObserverInit;
|
|
15533
15568
|
cover: boolean;
|
|
15534
15569
|
src: string | srcObject;
|
|
15570
|
+
rounded: string | number | boolean;
|
|
15535
15571
|
reverseTransition: string | boolean;
|
|
15536
15572
|
}, {}, string, vue.SlotsType<Partial<{
|
|
15537
15573
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -15564,6 +15600,10 @@ declare const VCarouselItem: {
|
|
|
15564
15600
|
type: (StringConstructor | BooleanConstructor)[];
|
|
15565
15601
|
default: undefined;
|
|
15566
15602
|
};
|
|
15603
|
+
rounded: {
|
|
15604
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
15605
|
+
default: undefined;
|
|
15606
|
+
};
|
|
15567
15607
|
height: (StringConstructor | NumberConstructor)[];
|
|
15568
15608
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
15569
15609
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
@@ -15575,6 +15615,7 @@ declare const VCarouselItem: {
|
|
|
15575
15615
|
inline: BooleanConstructor;
|
|
15576
15616
|
alt: StringConstructor;
|
|
15577
15617
|
cover: BooleanConstructor;
|
|
15618
|
+
color: StringConstructor;
|
|
15578
15619
|
draggable: {
|
|
15579
15620
|
type: vue.PropType<boolean | "false" | "true">;
|
|
15580
15621
|
default: undefined;
|
|
@@ -15616,6 +15657,10 @@ declare const VCarouselItem: {
|
|
|
15616
15657
|
type: (StringConstructor | BooleanConstructor)[];
|
|
15617
15658
|
default: undefined;
|
|
15618
15659
|
};
|
|
15660
|
+
rounded: {
|
|
15661
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
15662
|
+
default: undefined;
|
|
15663
|
+
};
|
|
15619
15664
|
height: (StringConstructor | NumberConstructor)[];
|
|
15620
15665
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
15621
15666
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
@@ -15627,6 +15672,7 @@ declare const VCarouselItem: {
|
|
|
15627
15672
|
inline: BooleanConstructor;
|
|
15628
15673
|
alt: StringConstructor;
|
|
15629
15674
|
cover: BooleanConstructor;
|
|
15675
|
+
color: StringConstructor;
|
|
15630
15676
|
draggable: {
|
|
15631
15677
|
type: vue.PropType<boolean | "false" | "true">;
|
|
15632
15678
|
default: undefined;
|
|
@@ -80040,41 +80086,40 @@ declare module '@vue/runtime-core' {
|
|
|
80040
80086
|
}
|
|
80041
80087
|
|
|
80042
80088
|
export interface GlobalComponents {
|
|
80043
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
80044
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
|
80045
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
80046
80089
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
80047
80090
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
80048
80091
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
80092
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
80049
80093
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
80050
|
-
|
|
80094
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
80095
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
80051
80096
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
80097
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
80052
80098
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
80099
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
|
80100
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
80101
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
80053
80102
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
80054
80103
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
80055
80104
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
80056
80105
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
80057
|
-
VBanner: typeof import('vuetify/components')['VBanner']
|
|
80058
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
80059
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
80060
80106
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
80061
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
80062
80107
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
80108
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
80109
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
80110
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
80111
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
80112
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
80113
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
80063
80114
|
VCard: typeof import('vuetify/components')['VCard']
|
|
80064
80115
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
80065
80116
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
80066
80117
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
80067
80118
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
80068
80119
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
80069
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
80070
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
80071
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
80072
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
80073
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
80074
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
80075
80120
|
VCode: typeof import('vuetify/components')['VCode']
|
|
80121
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
80076
80122
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
80077
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
80078
80123
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
80079
80124
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
80080
80125
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -80083,6 +80128,13 @@ declare module '@vue/runtime-core' {
|
|
|
80083
80128
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
80084
80129
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
80085
80130
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
80131
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
80132
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
80133
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
80134
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
80135
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
80136
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
80137
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
80086
80138
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
80087
80139
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
80088
80140
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
@@ -80090,20 +80142,21 @@ declare module '@vue/runtime-core' {
|
|
|
80090
80142
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
80091
80143
|
VField: typeof import('vuetify/components')['VField']
|
|
80092
80144
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
80093
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
80094
80145
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
80095
80146
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
80096
80147
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
80097
80148
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
80098
80149
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
80099
80150
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
80151
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
80100
80152
|
VImg: typeof import('vuetify/components')['VImg']
|
|
80101
80153
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
80102
80154
|
VInput: typeof import('vuetify/components')['VInput']
|
|
80155
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
80103
80156
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
80104
80157
|
VItem: typeof import('vuetify/components')['VItem']
|
|
80105
80158
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
80106
|
-
|
|
80159
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
80107
80160
|
VList: typeof import('vuetify/components')['VList']
|
|
80108
80161
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
80109
80162
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -80113,7 +80166,6 @@ declare module '@vue/runtime-core' {
|
|
|
80113
80166
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
80114
80167
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
80115
80168
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
80116
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
80117
80169
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
80118
80170
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
80119
80171
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
@@ -80121,37 +80173,37 @@ declare module '@vue/runtime-core' {
|
|
|
80121
80173
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
80122
80174
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
80123
80175
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
80124
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
80125
80176
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
80177
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
80126
80178
|
VRating: typeof import('vuetify/components')['VRating']
|
|
80127
80179
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
80128
80180
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
80129
80181
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
80130
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
|
80131
80182
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
80183
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
80184
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
80185
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
80132
80186
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
80133
80187
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
80134
|
-
|
|
80135
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
80188
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
80136
80189
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
80137
80190
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
80138
80191
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
80139
80192
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
80140
80193
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
80141
80194
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
80142
|
-
|
|
80195
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
80196
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
80143
80197
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
80144
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
|
80145
|
-
VTab: typeof import('vuetify/components')['VTab']
|
|
80146
|
-
VTable: typeof import('vuetify/components')['VTable']
|
|
80147
80198
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
80148
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
|
80149
80199
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
80150
80200
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
80201
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
80202
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
|
80203
|
+
VTab: typeof import('vuetify/components')['VTab']
|
|
80151
80204
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
80152
80205
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
80153
80206
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
80154
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
80155
80207
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
80156
80208
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
80157
80209
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
@@ -80167,12 +80219,11 @@ declare module '@vue/runtime-core' {
|
|
|
80167
80219
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
80168
80220
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
80169
80221
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
80170
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
|
80171
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
|
80172
80222
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
80223
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
|
80224
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
|
80173
80225
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
80174
80226
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
80175
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
|
80176
80227
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
80177
80228
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
80178
80229
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
@@ -80190,12 +80241,7 @@ declare module '@vue/runtime-core' {
|
|
|
80190
80241
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
80191
80242
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
80192
80243
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
80193
|
-
|
|
80194
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
80195
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
80196
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
80197
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
80198
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
80244
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
80199
80245
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
80200
80246
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
80201
80247
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|