@vuetify/nightly 3.5.9-dev.2024-03-17 → 3.5.9-dev.2024-03-29
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 +4 -2
- package/dist/json/attributes.json +51 -7
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +126 -126
- package/dist/json/tags.json +12 -1
- package/dist/json/web-types.json +114 -13
- package/dist/vuetify-labs.css +1894 -1894
- package/dist/vuetify-labs.d.ts +106 -19
- package/dist/vuetify-labs.esm.js +105 -98
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +105 -98
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +804 -804
- package/dist/vuetify.d.ts +147 -60
- package/dist/vuetify.esm.js +105 -98
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +105 -98
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +185 -185
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VMain/VMain.mjs +6 -1
- package/lib/components/VMain/VMain.mjs.map +1 -1
- package/lib/components/VMain/index.d.mts +36 -0
- package/lib/components/VTimeline/VTimeline.mjs +12 -6
- package/lib/components/VTimeline/VTimeline.mjs.map +1 -1
- package/lib/components/VTimeline/index.d.mts +70 -19
- package/lib/components/index.d.mts +106 -19
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +41 -41
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
|
@@ -39622,6 +39622,12 @@ declare const VMain: {
|
|
|
39622
39622
|
tag: string;
|
|
39623
39623
|
scrollable: boolean;
|
|
39624
39624
|
} & {
|
|
39625
|
+
height?: string | number | undefined;
|
|
39626
|
+
width?: string | number | undefined;
|
|
39627
|
+
maxHeight?: string | number | undefined;
|
|
39628
|
+
maxWidth?: string | number | undefined;
|
|
39629
|
+
minHeight?: string | number | undefined;
|
|
39630
|
+
minWidth?: string | number | undefined;
|
|
39625
39631
|
class?: any;
|
|
39626
39632
|
} & {
|
|
39627
39633
|
$children?: vue.VNodeChild | {
|
|
@@ -39637,6 +39643,12 @@ declare const VMain: {
|
|
|
39637
39643
|
tag: string;
|
|
39638
39644
|
scrollable: boolean;
|
|
39639
39645
|
} & {
|
|
39646
|
+
height?: string | number | undefined;
|
|
39647
|
+
width?: string | number | undefined;
|
|
39648
|
+
maxHeight?: string | number | undefined;
|
|
39649
|
+
maxWidth?: string | number | undefined;
|
|
39650
|
+
minHeight?: string | number | undefined;
|
|
39651
|
+
minWidth?: string | number | undefined;
|
|
39640
39652
|
class?: any;
|
|
39641
39653
|
} & {
|
|
39642
39654
|
$children?: vue.VNodeChild | {
|
|
@@ -39667,6 +39679,12 @@ declare const VMain: {
|
|
|
39667
39679
|
tag: string;
|
|
39668
39680
|
scrollable: boolean;
|
|
39669
39681
|
} & {
|
|
39682
|
+
height?: string | number | undefined;
|
|
39683
|
+
width?: string | number | undefined;
|
|
39684
|
+
maxHeight?: string | number | undefined;
|
|
39685
|
+
maxWidth?: string | number | undefined;
|
|
39686
|
+
minHeight?: string | number | undefined;
|
|
39687
|
+
minWidth?: string | number | undefined;
|
|
39670
39688
|
class?: any;
|
|
39671
39689
|
} & {
|
|
39672
39690
|
$children?: vue.VNodeChild | {
|
|
@@ -39690,6 +39708,12 @@ declare const VMain: {
|
|
|
39690
39708
|
tag: string;
|
|
39691
39709
|
scrollable: boolean;
|
|
39692
39710
|
} & {
|
|
39711
|
+
height?: string | number | undefined;
|
|
39712
|
+
width?: string | number | undefined;
|
|
39713
|
+
maxHeight?: string | number | undefined;
|
|
39714
|
+
maxWidth?: string | number | undefined;
|
|
39715
|
+
minHeight?: string | number | undefined;
|
|
39716
|
+
minWidth?: string | number | undefined;
|
|
39693
39717
|
class?: any;
|
|
39694
39718
|
} & {
|
|
39695
39719
|
$children?: vue.VNodeChild | {
|
|
@@ -39716,6 +39740,12 @@ declare const VMain: {
|
|
|
39716
39740
|
type: vue.PropType<string>;
|
|
39717
39741
|
default: string;
|
|
39718
39742
|
};
|
|
39743
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
39744
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
39745
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
39746
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
39747
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
39748
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
39719
39749
|
class: vue.PropType<any>;
|
|
39720
39750
|
style: {
|
|
39721
39751
|
type: vue.PropType<vue.StyleValue>;
|
|
@@ -39730,6 +39760,12 @@ declare const VMain: {
|
|
|
39730
39760
|
type: vue.PropType<string>;
|
|
39731
39761
|
default: string;
|
|
39732
39762
|
};
|
|
39763
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
39764
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
39765
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
39766
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
39767
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
39768
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
39733
39769
|
class: vue.PropType<any>;
|
|
39734
39770
|
style: {
|
|
39735
39771
|
type: vue.PropType<vue.StyleValue>;
|
|
@@ -63133,10 +63169,12 @@ type TimelineTruncateLine = 'start' | 'end' | 'both' | undefined;
|
|
|
63133
63169
|
declare const VTimeline: {
|
|
63134
63170
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
63135
63171
|
style: vue.StyleValue;
|
|
63172
|
+
size: string | number;
|
|
63136
63173
|
tag: string;
|
|
63137
63174
|
justify: string;
|
|
63138
63175
|
density: Density;
|
|
63139
|
-
|
|
63176
|
+
fillDot: boolean;
|
|
63177
|
+
lineInset: NonNullable<string | number>;
|
|
63140
63178
|
lineThickness: string | number;
|
|
63141
63179
|
} & {
|
|
63142
63180
|
direction?: TimelineDirection | undefined;
|
|
@@ -63144,7 +63182,10 @@ declare const VTimeline: {
|
|
|
63144
63182
|
align?: TimelineAlign | undefined;
|
|
63145
63183
|
side?: TimelineSide;
|
|
63146
63184
|
theme?: string | undefined;
|
|
63185
|
+
dotColor?: string | undefined;
|
|
63186
|
+
iconColor?: string | undefined;
|
|
63147
63187
|
lineColor?: string | undefined;
|
|
63188
|
+
hideOpposite?: boolean | undefined;
|
|
63148
63189
|
truncateLine?: TimelineTruncateLine;
|
|
63149
63190
|
} & {
|
|
63150
63191
|
$children?: vue.VNodeChild | {
|
|
@@ -63157,10 +63198,12 @@ declare const VTimeline: {
|
|
|
63157
63198
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
63158
63199
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
63159
63200
|
style: vue.StyleValue;
|
|
63201
|
+
size: string | number;
|
|
63160
63202
|
tag: string;
|
|
63161
63203
|
justify: string;
|
|
63162
63204
|
density: Density;
|
|
63163
|
-
|
|
63205
|
+
fillDot: boolean;
|
|
63206
|
+
lineInset: NonNullable<string | number>;
|
|
63164
63207
|
lineThickness: string | number;
|
|
63165
63208
|
} & {
|
|
63166
63209
|
direction?: TimelineDirection | undefined;
|
|
@@ -63168,7 +63211,10 @@ declare const VTimeline: {
|
|
|
63168
63211
|
align?: TimelineAlign | undefined;
|
|
63169
63212
|
side?: TimelineSide;
|
|
63170
63213
|
theme?: string | undefined;
|
|
63214
|
+
dotColor?: string | undefined;
|
|
63215
|
+
iconColor?: string | undefined;
|
|
63171
63216
|
lineColor?: string | undefined;
|
|
63217
|
+
hideOpposite?: boolean | undefined;
|
|
63172
63218
|
truncateLine?: TimelineTruncateLine;
|
|
63173
63219
|
} & {
|
|
63174
63220
|
$children?: vue.VNodeChild | {
|
|
@@ -63181,10 +63227,13 @@ declare const VTimeline: {
|
|
|
63181
63227
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
63182
63228
|
}, {
|
|
63183
63229
|
style: vue.StyleValue;
|
|
63230
|
+
size: string | number;
|
|
63184
63231
|
tag: string;
|
|
63185
63232
|
justify: string;
|
|
63186
63233
|
density: Density;
|
|
63187
|
-
|
|
63234
|
+
fillDot: boolean;
|
|
63235
|
+
hideOpposite: boolean;
|
|
63236
|
+
lineInset: NonNullable<string | number>;
|
|
63188
63237
|
lineThickness: string | number;
|
|
63189
63238
|
}, true, {}, vue.SlotsType<Partial<{
|
|
63190
63239
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -63199,10 +63248,12 @@ declare const VTimeline: {
|
|
|
63199
63248
|
Defaults: {};
|
|
63200
63249
|
}, {
|
|
63201
63250
|
style: vue.StyleValue;
|
|
63251
|
+
size: string | number;
|
|
63202
63252
|
tag: string;
|
|
63203
63253
|
justify: string;
|
|
63204
63254
|
density: Density;
|
|
63205
|
-
|
|
63255
|
+
fillDot: boolean;
|
|
63256
|
+
lineInset: NonNullable<string | number>;
|
|
63206
63257
|
lineThickness: string | number;
|
|
63207
63258
|
} & {
|
|
63208
63259
|
direction?: TimelineDirection | undefined;
|
|
@@ -63210,7 +63261,10 @@ declare const VTimeline: {
|
|
|
63210
63261
|
align?: TimelineAlign | undefined;
|
|
63211
63262
|
side?: TimelineSide;
|
|
63212
63263
|
theme?: string | undefined;
|
|
63264
|
+
dotColor?: string | undefined;
|
|
63265
|
+
iconColor?: string | undefined;
|
|
63213
63266
|
lineColor?: string | undefined;
|
|
63267
|
+
hideOpposite?: boolean | undefined;
|
|
63214
63268
|
truncateLine?: TimelineTruncateLine;
|
|
63215
63269
|
} & {
|
|
63216
63270
|
$children?: vue.VNodeChild | {
|
|
@@ -63223,10 +63277,13 @@ declare const VTimeline: {
|
|
|
63223
63277
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
63224
63278
|
}, {}, {}, {}, {}, {
|
|
63225
63279
|
style: vue.StyleValue;
|
|
63280
|
+
size: string | number;
|
|
63226
63281
|
tag: string;
|
|
63227
63282
|
justify: string;
|
|
63228
63283
|
density: Density;
|
|
63229
|
-
|
|
63284
|
+
fillDot: boolean;
|
|
63285
|
+
hideOpposite: boolean;
|
|
63286
|
+
lineInset: NonNullable<string | number>;
|
|
63230
63287
|
lineThickness: string | number;
|
|
63231
63288
|
}>;
|
|
63232
63289
|
__isFragment?: undefined;
|
|
@@ -63234,10 +63291,12 @@ declare const VTimeline: {
|
|
|
63234
63291
|
__isSuspense?: undefined;
|
|
63235
63292
|
} & vue.ComponentOptionsBase<{
|
|
63236
63293
|
style: vue.StyleValue;
|
|
63294
|
+
size: string | number;
|
|
63237
63295
|
tag: string;
|
|
63238
63296
|
justify: string;
|
|
63239
63297
|
density: Density;
|
|
63240
|
-
|
|
63298
|
+
fillDot: boolean;
|
|
63299
|
+
lineInset: NonNullable<string | number>;
|
|
63241
63300
|
lineThickness: string | number;
|
|
63242
63301
|
} & {
|
|
63243
63302
|
direction?: TimelineDirection | undefined;
|
|
@@ -63245,7 +63304,10 @@ declare const VTimeline: {
|
|
|
63245
63304
|
align?: TimelineAlign | undefined;
|
|
63246
63305
|
side?: TimelineSide;
|
|
63247
63306
|
theme?: string | undefined;
|
|
63307
|
+
dotColor?: string | undefined;
|
|
63308
|
+
iconColor?: string | undefined;
|
|
63248
63309
|
lineColor?: string | undefined;
|
|
63310
|
+
hideOpposite?: boolean | undefined;
|
|
63249
63311
|
truncateLine?: TimelineTruncateLine;
|
|
63250
63312
|
} & {
|
|
63251
63313
|
$children?: vue.VNodeChild | {
|
|
@@ -63258,10 +63320,13 @@ declare const VTimeline: {
|
|
|
63258
63320
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
63259
63321
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
63260
63322
|
style: vue.StyleValue;
|
|
63323
|
+
size: string | number;
|
|
63261
63324
|
tag: string;
|
|
63262
63325
|
justify: string;
|
|
63263
63326
|
density: Density;
|
|
63264
|
-
|
|
63327
|
+
fillDot: boolean;
|
|
63328
|
+
hideOpposite: boolean;
|
|
63329
|
+
lineInset: NonNullable<string | number>;
|
|
63265
63330
|
lineThickness: string | number;
|
|
63266
63331
|
}, {}, string, vue.SlotsType<Partial<{
|
|
63267
63332
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -63283,6 +63348,21 @@ declare const VTimeline: {
|
|
|
63283
63348
|
type: vue.PropType<vue.StyleValue>;
|
|
63284
63349
|
default: null;
|
|
63285
63350
|
};
|
|
63351
|
+
size: {
|
|
63352
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
63353
|
+
default: string;
|
|
63354
|
+
};
|
|
63355
|
+
dotColor: StringConstructor;
|
|
63356
|
+
fillDot: BooleanConstructor;
|
|
63357
|
+
iconColor: StringConstructor;
|
|
63358
|
+
hideOpposite: {
|
|
63359
|
+
type: BooleanConstructor;
|
|
63360
|
+
default: undefined;
|
|
63361
|
+
};
|
|
63362
|
+
lineInset: {
|
|
63363
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
63364
|
+
default: NonNullable<string | number>;
|
|
63365
|
+
};
|
|
63286
63366
|
align: Prop<TimelineAlign>;
|
|
63287
63367
|
direction: Prop<TimelineDirection>;
|
|
63288
63368
|
justify: {
|
|
@@ -63291,10 +63371,6 @@ declare const VTimeline: {
|
|
|
63291
63371
|
validator: (v: any) => boolean;
|
|
63292
63372
|
};
|
|
63293
63373
|
side: Prop<TimelineSide>;
|
|
63294
|
-
lineInset: {
|
|
63295
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
63296
|
-
default: number;
|
|
63297
|
-
};
|
|
63298
63374
|
lineThickness: {
|
|
63299
63375
|
type: (StringConstructor | NumberConstructor)[];
|
|
63300
63376
|
default: number;
|
|
@@ -63317,6 +63393,21 @@ declare const VTimeline: {
|
|
|
63317
63393
|
type: vue.PropType<vue.StyleValue>;
|
|
63318
63394
|
default: null;
|
|
63319
63395
|
};
|
|
63396
|
+
size: {
|
|
63397
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
63398
|
+
default: string;
|
|
63399
|
+
};
|
|
63400
|
+
dotColor: StringConstructor;
|
|
63401
|
+
fillDot: BooleanConstructor;
|
|
63402
|
+
iconColor: StringConstructor;
|
|
63403
|
+
hideOpposite: {
|
|
63404
|
+
type: BooleanConstructor;
|
|
63405
|
+
default: undefined;
|
|
63406
|
+
};
|
|
63407
|
+
lineInset: {
|
|
63408
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
63409
|
+
default: NonNullable<string | number>;
|
|
63410
|
+
};
|
|
63320
63411
|
align: Prop<TimelineAlign>;
|
|
63321
63412
|
direction: Prop<TimelineDirection>;
|
|
63322
63413
|
justify: {
|
|
@@ -63325,10 +63416,6 @@ declare const VTimeline: {
|
|
|
63325
63416
|
validator: (v: any) => boolean;
|
|
63326
63417
|
};
|
|
63327
63418
|
side: Prop<TimelineSide>;
|
|
63328
|
-
lineInset: {
|
|
63329
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
63330
|
-
default: number;
|
|
63331
|
-
};
|
|
63332
63419
|
lineThickness: {
|
|
63333
63420
|
type: (StringConstructor | NumberConstructor)[];
|
|
63334
63421
|
default: number;
|
|
@@ -63358,10 +63445,10 @@ declare const VTimelineItem: {
|
|
|
63358
63445
|
elevation?: string | number | undefined;
|
|
63359
63446
|
rounded?: string | number | boolean | undefined;
|
|
63360
63447
|
density?: "default" | "compact" | undefined;
|
|
63361
|
-
lineInset?: string | number | undefined;
|
|
63362
63448
|
dotColor?: string | undefined;
|
|
63363
63449
|
iconColor?: string | undefined;
|
|
63364
63450
|
hideOpposite?: boolean | undefined;
|
|
63451
|
+
lineInset?: string | number | undefined;
|
|
63365
63452
|
} & {
|
|
63366
63453
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63367
63454
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -63396,10 +63483,10 @@ declare const VTimelineItem: {
|
|
|
63396
63483
|
elevation?: string | number | undefined;
|
|
63397
63484
|
rounded?: string | number | boolean | undefined;
|
|
63398
63485
|
density?: "default" | "compact" | undefined;
|
|
63399
|
-
lineInset?: string | number | undefined;
|
|
63400
63486
|
dotColor?: string | undefined;
|
|
63401
63487
|
iconColor?: string | undefined;
|
|
63402
63488
|
hideOpposite?: boolean | undefined;
|
|
63489
|
+
lineInset?: string | number | undefined;
|
|
63403
63490
|
} & {
|
|
63404
63491
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63405
63492
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -63460,10 +63547,10 @@ declare const VTimelineItem: {
|
|
|
63460
63547
|
elevation?: string | number | undefined;
|
|
63461
63548
|
rounded?: string | number | boolean | undefined;
|
|
63462
63549
|
density?: "default" | "compact" | undefined;
|
|
63463
|
-
lineInset?: string | number | undefined;
|
|
63464
63550
|
dotColor?: string | undefined;
|
|
63465
63551
|
iconColor?: string | undefined;
|
|
63466
63552
|
hideOpposite?: boolean | undefined;
|
|
63553
|
+
lineInset?: string | number | undefined;
|
|
63467
63554
|
} & {
|
|
63468
63555
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63469
63556
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -63511,10 +63598,10 @@ declare const VTimelineItem: {
|
|
|
63511
63598
|
elevation?: string | number | undefined;
|
|
63512
63599
|
rounded?: string | number | boolean | undefined;
|
|
63513
63600
|
density?: "default" | "compact" | undefined;
|
|
63514
|
-
lineInset?: string | number | undefined;
|
|
63515
63601
|
dotColor?: string | undefined;
|
|
63516
63602
|
iconColor?: string | undefined;
|
|
63517
63603
|
hideOpposite?: boolean | undefined;
|
|
63604
|
+
lineInset?: string | number | undefined;
|
|
63518
63605
|
} & {
|
|
63519
63606
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63520
63607
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -68917,44 +69004,37 @@ declare module '@vue/runtime-core' {
|
|
|
68917
69004
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
68918
69005
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
68919
69006
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
68920
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
|
68921
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
68922
69007
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
68923
69008
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
69009
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
69010
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
68924
69011
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
69012
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
69013
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
68925
69014
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
68926
69015
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
68927
69016
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
68928
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
68929
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
68930
69017
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
68931
69018
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
68932
69019
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
68933
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
68934
69020
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
69021
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
69022
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
68935
69023
|
VCard: typeof import('vuetify/components')['VCard']
|
|
68936
69024
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
68937
69025
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
68938
69026
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
68939
69027
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
68940
69028
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
68941
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
68942
69029
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
68943
69030
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
69031
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
69032
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
69033
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
68944
69034
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
68945
69035
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
68946
69036
|
VCode: typeof import('vuetify/components')['VCode']
|
|
68947
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
68948
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
68949
69037
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
68950
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
68951
|
-
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
68952
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
68953
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
68954
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
68955
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
68956
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
68957
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
68958
69038
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
68959
69039
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
68960
69040
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -68962,27 +69042,34 @@ declare module '@vue/runtime-core' {
|
|
|
68962
69042
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
68963
69043
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
68964
69044
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
68965
|
-
|
|
69045
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
69046
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
69047
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
69048
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
69049
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
69050
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
69051
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
68966
69052
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
69053
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
68967
69054
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
68968
69055
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
68969
69056
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
68970
69057
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
68971
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
68972
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
68973
69058
|
VField: typeof import('vuetify/components')['VField']
|
|
68974
69059
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
69060
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
69061
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
69062
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
69063
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
68975
69064
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
68976
69065
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
68977
69066
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
68978
69067
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
68979
69068
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
68980
|
-
VImg: typeof import('vuetify/components')['VImg']
|
|
68981
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
68982
69069
|
VInput: typeof import('vuetify/components')['VInput']
|
|
69070
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
68983
69071
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
68984
69072
|
VItem: typeof import('vuetify/components')['VItem']
|
|
68985
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
|
68986
69073
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
68987
69074
|
VList: typeof import('vuetify/components')['VList']
|
|
68988
69075
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
@@ -68994,22 +69081,24 @@ declare module '@vue/runtime-core' {
|
|
|
68994
69081
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
68995
69082
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
68996
69083
|
VMain: typeof import('vuetify/components')['VMain']
|
|
68997
|
-
|
|
69084
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
68998
69085
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
69086
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
|
69087
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
68999
69088
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
69000
69089
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
69001
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
69002
69090
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
69003
69091
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
69004
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
69005
69092
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
69093
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
69006
69094
|
VRating: typeof import('vuetify/components')['VRating']
|
|
69095
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
69007
69096
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
69008
69097
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
69009
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
69010
69098
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
69011
69099
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
69012
69100
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
69101
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
69013
69102
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
69014
69103
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
69015
69104
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
@@ -69019,35 +69108,34 @@ declare module '@vue/runtime-core' {
|
|
|
69019
69108
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
69020
69109
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
69021
69110
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
69022
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
69023
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
69024
69111
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
69025
69112
|
VTab: typeof import('vuetify/components')['VTab']
|
|
69026
|
-
|
|
69113
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
69027
69114
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
69115
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
69028
69116
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
69029
69117
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
69030
69118
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
69031
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
69032
|
-
VWindow: typeof import('vuetify/components')['VWindow']
|
|
69033
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
69034
69119
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
69035
69120
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
69036
69121
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
69122
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
69123
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
|
69124
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
69037
69125
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
69038
69126
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
69039
69127
|
VForm: typeof import('vuetify/components')['VForm']
|
|
69128
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
69040
69129
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
69041
69130
|
VCol: typeof import('vuetify/components')['VCol']
|
|
69042
69131
|
VRow: typeof import('vuetify/components')['VRow']
|
|
69043
69132
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
69044
|
-
VHover: typeof import('vuetify/components')['VHover']
|
|
69045
69133
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
69046
69134
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
69047
69135
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
69048
69136
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
69049
|
-
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
69050
69137
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
69138
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
69051
69139
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
69052
69140
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
69053
69141
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
@@ -69070,22 +69158,21 @@ declare module '@vue/runtime-core' {
|
|
|
69070
69158
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
69071
69159
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
69072
69160
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
69073
|
-
|
|
69161
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
69162
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
69163
|
+
VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
|
|
69164
|
+
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
69074
69165
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
69075
69166
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
69076
69167
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
69077
69168
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
69078
69169
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
69079
69170
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
69080
|
-
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
69081
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
69082
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
69083
|
-
VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
|
|
69084
|
-
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
69085
69171
|
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
69172
|
+
VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
|
|
69173
|
+
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
69086
69174
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
|
69087
69175
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
|
69088
69176
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
|
69089
|
-
VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
|
|
69090
69177
|
}
|
|
69091
69178
|
}
|