@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
|
@@ -14420,6 +14420,7 @@ declare const VImg: {
|
|
|
14420
14420
|
options: IntersectionObserverInit;
|
|
14421
14421
|
cover: boolean;
|
|
14422
14422
|
src: string | srcObject;
|
|
14423
|
+
rounded: string | number | boolean;
|
|
14423
14424
|
}> & Omit<{
|
|
14424
14425
|
inline: boolean;
|
|
14425
14426
|
transition: string | boolean | (vue.TransitionProps & {
|
|
@@ -14433,6 +14434,7 @@ declare const VImg: {
|
|
|
14433
14434
|
height?: string | number | undefined;
|
|
14434
14435
|
width?: string | number | undefined;
|
|
14435
14436
|
aspectRatio?: string | number | undefined;
|
|
14437
|
+
color?: string | undefined;
|
|
14436
14438
|
maxHeight?: string | number | undefined;
|
|
14437
14439
|
maxWidth?: string | number | undefined;
|
|
14438
14440
|
minHeight?: string | number | undefined;
|
|
@@ -14446,6 +14448,7 @@ declare const VImg: {
|
|
|
14446
14448
|
sizes?: string | undefined;
|
|
14447
14449
|
srcset?: string | undefined;
|
|
14448
14450
|
contentClass?: string | undefined;
|
|
14451
|
+
rounded?: string | number | boolean | undefined;
|
|
14449
14452
|
gradient?: string | undefined;
|
|
14450
14453
|
lazySrc?: string | undefined;
|
|
14451
14454
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -14481,6 +14484,7 @@ declare const VImg: {
|
|
|
14481
14484
|
height?: string | number | undefined;
|
|
14482
14485
|
width?: string | number | undefined;
|
|
14483
14486
|
aspectRatio?: string | number | undefined;
|
|
14487
|
+
color?: string | undefined;
|
|
14484
14488
|
maxHeight?: string | number | undefined;
|
|
14485
14489
|
maxWidth?: string | number | undefined;
|
|
14486
14490
|
minHeight?: string | number | undefined;
|
|
@@ -14494,6 +14498,7 @@ declare const VImg: {
|
|
|
14494
14498
|
sizes?: string | undefined;
|
|
14495
14499
|
srcset?: string | undefined;
|
|
14496
14500
|
contentClass?: string | undefined;
|
|
14501
|
+
rounded?: string | number | boolean | undefined;
|
|
14497
14502
|
gradient?: string | undefined;
|
|
14498
14503
|
lazySrc?: string | undefined;
|
|
14499
14504
|
} & {
|
|
@@ -14518,7 +14523,7 @@ declare const VImg: {
|
|
|
14518
14523
|
onError?: ((value: string | undefined) => any) | undefined;
|
|
14519
14524
|
onLoad?: ((value: string | undefined) => any) | undefined;
|
|
14520
14525
|
onLoadstart?: ((value: string | undefined) => any) | undefined;
|
|
14521
|
-
}, "inline" | "transition" | "style" | "draggable" | "eager" | "options" | "cover" | "src">;
|
|
14526
|
+
}, "inline" | "transition" | "style" | "draggable" | "eager" | "options" | "cover" | "src" | "rounded">;
|
|
14522
14527
|
$attrs: {
|
|
14523
14528
|
[x: string]: unknown;
|
|
14524
14529
|
};
|
|
@@ -14557,6 +14562,7 @@ declare const VImg: {
|
|
|
14557
14562
|
height?: string | number | undefined;
|
|
14558
14563
|
width?: string | number | undefined;
|
|
14559
14564
|
aspectRatio?: string | number | undefined;
|
|
14565
|
+
color?: string | undefined;
|
|
14560
14566
|
maxHeight?: string | number | undefined;
|
|
14561
14567
|
maxWidth?: string | number | undefined;
|
|
14562
14568
|
minHeight?: string | number | undefined;
|
|
@@ -14570,6 +14576,7 @@ declare const VImg: {
|
|
|
14570
14576
|
sizes?: string | undefined;
|
|
14571
14577
|
srcset?: string | undefined;
|
|
14572
14578
|
contentClass?: string | undefined;
|
|
14579
|
+
rounded?: string | number | boolean | undefined;
|
|
14573
14580
|
gradient?: string | undefined;
|
|
14574
14581
|
lazySrc?: string | undefined;
|
|
14575
14582
|
} & {
|
|
@@ -14615,6 +14622,7 @@ declare const VImg: {
|
|
|
14615
14622
|
options: IntersectionObserverInit;
|
|
14616
14623
|
cover: boolean;
|
|
14617
14624
|
src: string | srcObject;
|
|
14625
|
+
rounded: string | number | boolean;
|
|
14618
14626
|
}, {}, string, vue.SlotsType<Partial<{
|
|
14619
14627
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
14620
14628
|
[key: string]: any;
|
|
@@ -14662,6 +14670,7 @@ declare const VImg: {
|
|
|
14662
14670
|
height?: string | number | undefined;
|
|
14663
14671
|
width?: string | number | undefined;
|
|
14664
14672
|
aspectRatio?: string | number | undefined;
|
|
14673
|
+
color?: string | undefined;
|
|
14665
14674
|
maxHeight?: string | number | undefined;
|
|
14666
14675
|
maxWidth?: string | number | undefined;
|
|
14667
14676
|
minHeight?: string | number | undefined;
|
|
@@ -14675,6 +14684,7 @@ declare const VImg: {
|
|
|
14675
14684
|
sizes?: string | undefined;
|
|
14676
14685
|
srcset?: string | undefined;
|
|
14677
14686
|
contentClass?: string | undefined;
|
|
14687
|
+
rounded?: string | number | boolean | undefined;
|
|
14678
14688
|
gradient?: string | undefined;
|
|
14679
14689
|
lazySrc?: string | undefined;
|
|
14680
14690
|
} & {
|
|
@@ -14723,6 +14733,7 @@ declare const VImg: {
|
|
|
14723
14733
|
height?: string | number | undefined;
|
|
14724
14734
|
width?: string | number | undefined;
|
|
14725
14735
|
aspectRatio?: string | number | undefined;
|
|
14736
|
+
color?: string | undefined;
|
|
14726
14737
|
maxHeight?: string | number | undefined;
|
|
14727
14738
|
maxWidth?: string | number | undefined;
|
|
14728
14739
|
minHeight?: string | number | undefined;
|
|
@@ -14736,6 +14747,7 @@ declare const VImg: {
|
|
|
14736
14747
|
sizes?: string | undefined;
|
|
14737
14748
|
srcset?: string | undefined;
|
|
14738
14749
|
contentClass?: string | undefined;
|
|
14750
|
+
rounded?: string | number | boolean | undefined;
|
|
14739
14751
|
gradient?: string | undefined;
|
|
14740
14752
|
lazySrc?: string | undefined;
|
|
14741
14753
|
} & {
|
|
@@ -14781,6 +14793,7 @@ declare const VImg: {
|
|
|
14781
14793
|
options: IntersectionObserverInit;
|
|
14782
14794
|
cover: boolean;
|
|
14783
14795
|
src: string | srcObject;
|
|
14796
|
+
rounded: string | number | boolean;
|
|
14784
14797
|
}, {}, string, vue.SlotsType<Partial<{
|
|
14785
14798
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
14786
14799
|
[key: string]: any;
|
|
@@ -14802,6 +14815,10 @@ declare const VImg: {
|
|
|
14802
14815
|
default: string;
|
|
14803
14816
|
validator: (val: unknown) => boolean;
|
|
14804
14817
|
};
|
|
14818
|
+
rounded: {
|
|
14819
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14820
|
+
default: undefined;
|
|
14821
|
+
};
|
|
14805
14822
|
class: PropType<any>;
|
|
14806
14823
|
style: {
|
|
14807
14824
|
type: PropType<vue.StyleValue>;
|
|
@@ -14818,6 +14835,7 @@ declare const VImg: {
|
|
|
14818
14835
|
inline: BooleanConstructor;
|
|
14819
14836
|
alt: StringConstructor;
|
|
14820
14837
|
cover: BooleanConstructor;
|
|
14838
|
+
color: StringConstructor;
|
|
14821
14839
|
draggable: {
|
|
14822
14840
|
type: PropType<boolean | "false" | "true">;
|
|
14823
14841
|
default: undefined;
|
|
@@ -14850,6 +14868,10 @@ declare const VImg: {
|
|
|
14850
14868
|
default: string;
|
|
14851
14869
|
validator: (val: unknown) => boolean;
|
|
14852
14870
|
};
|
|
14871
|
+
rounded: {
|
|
14872
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
14873
|
+
default: undefined;
|
|
14874
|
+
};
|
|
14853
14875
|
class: PropType<any>;
|
|
14854
14876
|
style: {
|
|
14855
14877
|
type: PropType<vue.StyleValue>;
|
|
@@ -14866,6 +14888,7 @@ declare const VImg: {
|
|
|
14866
14888
|
inline: BooleanConstructor;
|
|
14867
14889
|
alt: StringConstructor;
|
|
14868
14890
|
cover: BooleanConstructor;
|
|
14891
|
+
color: StringConstructor;
|
|
14869
14892
|
draggable: {
|
|
14870
14893
|
type: PropType<boolean | "false" | "true">;
|
|
14871
14894
|
default: undefined;
|
|
@@ -14907,6 +14930,7 @@ declare const VCarouselItem: {
|
|
|
14907
14930
|
options: IntersectionObserverInit;
|
|
14908
14931
|
cover: boolean;
|
|
14909
14932
|
src: string | srcObject;
|
|
14933
|
+
rounded: string | number | boolean;
|
|
14910
14934
|
reverseTransition: string | boolean;
|
|
14911
14935
|
}> & Omit<{
|
|
14912
14936
|
inline: boolean;
|
|
@@ -14919,6 +14943,7 @@ declare const VCarouselItem: {
|
|
|
14919
14943
|
height?: string | number | undefined;
|
|
14920
14944
|
width?: string | number | undefined;
|
|
14921
14945
|
aspectRatio?: string | number | undefined;
|
|
14946
|
+
color?: string | undefined;
|
|
14922
14947
|
maxHeight?: string | number | undefined;
|
|
14923
14948
|
maxWidth?: string | number | undefined;
|
|
14924
14949
|
minHeight?: string | number | undefined;
|
|
@@ -14934,6 +14959,7 @@ declare const VCarouselItem: {
|
|
|
14934
14959
|
sizes?: string | undefined;
|
|
14935
14960
|
srcset?: string | undefined;
|
|
14936
14961
|
contentClass?: string | undefined;
|
|
14962
|
+
rounded?: string | number | boolean | undefined;
|
|
14937
14963
|
gradient?: string | undefined;
|
|
14938
14964
|
lazySrc?: string | undefined;
|
|
14939
14965
|
selectedClass?: string | undefined;
|
|
@@ -14966,6 +14992,7 @@ declare const VCarouselItem: {
|
|
|
14966
14992
|
height?: string | number | undefined;
|
|
14967
14993
|
width?: string | number | undefined;
|
|
14968
14994
|
aspectRatio?: string | number | undefined;
|
|
14995
|
+
color?: string | undefined;
|
|
14969
14996
|
maxHeight?: string | number | undefined;
|
|
14970
14997
|
maxWidth?: string | number | undefined;
|
|
14971
14998
|
minHeight?: string | number | undefined;
|
|
@@ -14981,6 +15008,7 @@ declare const VCarouselItem: {
|
|
|
14981
15008
|
sizes?: string | undefined;
|
|
14982
15009
|
srcset?: string | undefined;
|
|
14983
15010
|
contentClass?: string | undefined;
|
|
15011
|
+
rounded?: string | number | boolean | undefined;
|
|
14984
15012
|
gradient?: string | undefined;
|
|
14985
15013
|
lazySrc?: string | undefined;
|
|
14986
15014
|
selectedClass?: string | undefined;
|
|
@@ -15003,7 +15031,7 @@ declare const VCarouselItem: {
|
|
|
15003
15031
|
"v-slot:placeholder"?: false | (() => vue.VNodeChild) | undefined;
|
|
15004
15032
|
"v-slot:error"?: false | (() => vue.VNodeChild) | undefined;
|
|
15005
15033
|
"v-slot:sources"?: false | (() => vue.VNodeChild) | undefined;
|
|
15006
|
-
}, "inline" | "transition" | "style" | "draggable" | "eager" | "disabled" | "options" | "cover" | "src" | "reverseTransition">;
|
|
15034
|
+
}, "inline" | "transition" | "style" | "draggable" | "eager" | "disabled" | "options" | "cover" | "src" | "rounded" | "reverseTransition">;
|
|
15007
15035
|
$attrs: {
|
|
15008
15036
|
[x: string]: unknown;
|
|
15009
15037
|
};
|
|
@@ -15040,6 +15068,7 @@ declare const VCarouselItem: {
|
|
|
15040
15068
|
height?: string | number | undefined;
|
|
15041
15069
|
width?: string | number | undefined;
|
|
15042
15070
|
aspectRatio?: string | number | undefined;
|
|
15071
|
+
color?: string | undefined;
|
|
15043
15072
|
maxHeight?: string | number | undefined;
|
|
15044
15073
|
maxWidth?: string | number | undefined;
|
|
15045
15074
|
minHeight?: string | number | undefined;
|
|
@@ -15055,6 +15084,7 @@ declare const VCarouselItem: {
|
|
|
15055
15084
|
sizes?: string | undefined;
|
|
15056
15085
|
srcset?: string | undefined;
|
|
15057
15086
|
contentClass?: string | undefined;
|
|
15087
|
+
rounded?: string | number | boolean | undefined;
|
|
15058
15088
|
gradient?: string | undefined;
|
|
15059
15089
|
lazySrc?: string | undefined;
|
|
15060
15090
|
selectedClass?: string | undefined;
|
|
@@ -15087,6 +15117,7 @@ declare const VCarouselItem: {
|
|
|
15087
15117
|
options: IntersectionObserverInit;
|
|
15088
15118
|
cover: boolean;
|
|
15089
15119
|
src: string | srcObject;
|
|
15120
|
+
rounded: string | number | boolean;
|
|
15090
15121
|
reverseTransition: string | boolean;
|
|
15091
15122
|
}, {}, string, vue.SlotsType<Partial<{
|
|
15092
15123
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -15133,6 +15164,7 @@ declare const VCarouselItem: {
|
|
|
15133
15164
|
height?: string | number | undefined;
|
|
15134
15165
|
width?: string | number | undefined;
|
|
15135
15166
|
aspectRatio?: string | number | undefined;
|
|
15167
|
+
color?: string | undefined;
|
|
15136
15168
|
maxHeight?: string | number | undefined;
|
|
15137
15169
|
maxWidth?: string | number | undefined;
|
|
15138
15170
|
minHeight?: string | number | undefined;
|
|
@@ -15148,6 +15180,7 @@ declare const VCarouselItem: {
|
|
|
15148
15180
|
sizes?: string | undefined;
|
|
15149
15181
|
srcset?: string | undefined;
|
|
15150
15182
|
contentClass?: string | undefined;
|
|
15183
|
+
rounded?: string | number | boolean | undefined;
|
|
15151
15184
|
gradient?: string | undefined;
|
|
15152
15185
|
lazySrc?: string | undefined;
|
|
15153
15186
|
selectedClass?: string | undefined;
|
|
@@ -15186,6 +15219,7 @@ declare const VCarouselItem: {
|
|
|
15186
15219
|
height?: string | number | undefined;
|
|
15187
15220
|
width?: string | number | undefined;
|
|
15188
15221
|
aspectRatio?: string | number | undefined;
|
|
15222
|
+
color?: string | undefined;
|
|
15189
15223
|
maxHeight?: string | number | undefined;
|
|
15190
15224
|
maxWidth?: string | number | undefined;
|
|
15191
15225
|
minHeight?: string | number | undefined;
|
|
@@ -15201,6 +15235,7 @@ declare const VCarouselItem: {
|
|
|
15201
15235
|
sizes?: string | undefined;
|
|
15202
15236
|
srcset?: string | undefined;
|
|
15203
15237
|
contentClass?: string | undefined;
|
|
15238
|
+
rounded?: string | number | boolean | undefined;
|
|
15204
15239
|
gradient?: string | undefined;
|
|
15205
15240
|
lazySrc?: string | undefined;
|
|
15206
15241
|
selectedClass?: string | undefined;
|
|
@@ -15233,6 +15268,7 @@ declare const VCarouselItem: {
|
|
|
15233
15268
|
options: IntersectionObserverInit;
|
|
15234
15269
|
cover: boolean;
|
|
15235
15270
|
src: string | srcObject;
|
|
15271
|
+
rounded: string | number | boolean;
|
|
15236
15272
|
reverseTransition: string | boolean;
|
|
15237
15273
|
}, {}, string, vue.SlotsType<Partial<{
|
|
15238
15274
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -15265,6 +15301,10 @@ declare const VCarouselItem: {
|
|
|
15265
15301
|
type: (StringConstructor | BooleanConstructor)[];
|
|
15266
15302
|
default: undefined;
|
|
15267
15303
|
};
|
|
15304
|
+
rounded: {
|
|
15305
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
15306
|
+
default: undefined;
|
|
15307
|
+
};
|
|
15268
15308
|
height: (StringConstructor | NumberConstructor)[];
|
|
15269
15309
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
15270
15310
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
@@ -15276,6 +15316,7 @@ declare const VCarouselItem: {
|
|
|
15276
15316
|
inline: BooleanConstructor;
|
|
15277
15317
|
alt: StringConstructor;
|
|
15278
15318
|
cover: BooleanConstructor;
|
|
15319
|
+
color: StringConstructor;
|
|
15279
15320
|
draggable: {
|
|
15280
15321
|
type: vue.PropType<boolean | "false" | "true">;
|
|
15281
15322
|
default: undefined;
|
|
@@ -15317,6 +15358,10 @@ declare const VCarouselItem: {
|
|
|
15317
15358
|
type: (StringConstructor | BooleanConstructor)[];
|
|
15318
15359
|
default: undefined;
|
|
15319
15360
|
};
|
|
15361
|
+
rounded: {
|
|
15362
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
15363
|
+
default: undefined;
|
|
15364
|
+
};
|
|
15320
15365
|
height: (StringConstructor | NumberConstructor)[];
|
|
15321
15366
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
15322
15367
|
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
@@ -15328,6 +15373,7 @@ declare const VCarouselItem: {
|
|
|
15328
15373
|
inline: BooleanConstructor;
|
|
15329
15374
|
alt: StringConstructor;
|
|
15330
15375
|
cover: BooleanConstructor;
|
|
15376
|
+
color: StringConstructor;
|
|
15331
15377
|
draggable: {
|
|
15332
15378
|
type: vue.PropType<boolean | "false" | "true">;
|
|
15333
15379
|
default: undefined;
|
package/lib/entry-bundler.mjs
CHANGED
|
@@ -15,7 +15,7 @@ export const createVuetify = function () {
|
|
|
15
15
|
...options
|
|
16
16
|
});
|
|
17
17
|
};
|
|
18
|
-
export const version = "3.4.0-dev.2023-
|
|
18
|
+
export const version = "3.4.0-dev.2023-12-01";
|
|
19
19
|
createVuetify.version = version;
|
|
20
20
|
export { components, directives };
|
|
21
21
|
export * from "./composables/index.mjs";
|
package/lib/framework.mjs
CHANGED
package/lib/index.d.mts
CHANGED
|
@@ -437,41 +437,40 @@ declare module '@vue/runtime-core' {
|
|
|
437
437
|
}
|
|
438
438
|
|
|
439
439
|
export interface GlobalComponents {
|
|
440
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
441
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
|
442
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
443
440
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
444
441
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
445
442
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
443
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
446
444
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
447
|
-
|
|
445
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
446
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
448
447
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
448
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
449
449
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
450
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
|
451
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
452
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
450
453
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
451
454
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
452
455
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
453
456
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
454
|
-
VBanner: typeof import('vuetify/components')['VBanner']
|
|
455
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
456
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
457
457
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
458
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
459
458
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
459
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
460
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
461
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
462
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
463
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
464
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
460
465
|
VCard: typeof import('vuetify/components')['VCard']
|
|
461
466
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
462
467
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
463
468
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
464
469
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
465
470
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
466
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
467
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
468
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
469
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
470
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
471
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
472
471
|
VCode: typeof import('vuetify/components')['VCode']
|
|
472
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
473
473
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
474
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
475
474
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
476
475
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
477
476
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -480,6 +479,13 @@ declare module '@vue/runtime-core' {
|
|
|
480
479
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
481
480
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
482
481
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
482
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
483
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
484
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
485
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
486
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
487
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
488
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
483
489
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
484
490
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
485
491
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
@@ -487,20 +493,21 @@ declare module '@vue/runtime-core' {
|
|
|
487
493
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
488
494
|
VField: typeof import('vuetify/components')['VField']
|
|
489
495
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
490
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
491
496
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
492
497
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
493
498
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
494
499
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
495
500
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
496
501
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
502
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
497
503
|
VImg: typeof import('vuetify/components')['VImg']
|
|
498
504
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
499
505
|
VInput: typeof import('vuetify/components')['VInput']
|
|
506
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
500
507
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
501
508
|
VItem: typeof import('vuetify/components')['VItem']
|
|
502
509
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
503
|
-
|
|
510
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
504
511
|
VList: typeof import('vuetify/components')['VList']
|
|
505
512
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
506
513
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -510,7 +517,6 @@ declare module '@vue/runtime-core' {
|
|
|
510
517
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
511
518
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
512
519
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
513
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
514
520
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
515
521
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
516
522
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
@@ -518,37 +524,37 @@ declare module '@vue/runtime-core' {
|
|
|
518
524
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
519
525
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
520
526
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
521
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
522
527
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
528
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
523
529
|
VRating: typeof import('vuetify/components')['VRating']
|
|
524
530
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
525
531
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
526
532
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
527
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
|
528
533
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
534
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
535
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
536
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
529
537
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
530
538
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
531
|
-
|
|
532
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
539
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
533
540
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
534
541
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
535
542
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
536
543
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
537
544
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
538
545
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
539
|
-
|
|
546
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
547
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
540
548
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
541
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
|
542
|
-
VTab: typeof import('vuetify/components')['VTab']
|
|
543
|
-
VTable: typeof import('vuetify/components')['VTable']
|
|
544
549
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
545
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
|
546
550
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
547
551
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
552
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
553
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
|
554
|
+
VTab: typeof import('vuetify/components')['VTab']
|
|
548
555
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
549
556
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
550
557
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
551
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
552
558
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
553
559
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
554
560
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
@@ -564,12 +570,11 @@ declare module '@vue/runtime-core' {
|
|
|
564
570
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
565
571
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
566
572
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
567
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
|
568
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
|
569
573
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
574
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
|
575
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
|
570
576
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
571
577
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
572
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
|
573
578
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
574
579
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
575
580
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
@@ -587,12 +592,7 @@ declare module '@vue/runtime-core' {
|
|
|
587
592
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
588
593
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
589
594
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
590
|
-
|
|
591
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
592
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
593
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
594
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
595
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
595
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
596
596
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
597
597
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
598
598
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|