vuetify 3.7.9 → 3.7.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +1041 -1037
- package/dist/json/importMap-labs.json +14 -14
- package/dist/json/importMap.json +154 -154
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +2437 -2427
- package/dist/vuetify-labs.css +4911 -4911
- package/dist/vuetify-labs.d.ts +41 -118
- package/dist/vuetify-labs.esm.js +72 -9
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +71 -8
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4741 -4741
- package/dist/vuetify.d.ts +81 -173
- package/dist/vuetify.esm.js +61 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +60 -7
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +462 -459
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +10 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +11 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs +2 -1
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.mjs +5 -1
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VTabs/VTabs.mjs +1 -1
- package/lib/components/VTabs/VTabs.mjs.map +1 -1
- package/lib/components/VTabs/index.d.mts +52 -119
- package/lib/components/index.d.mts +26 -118
- package/lib/components/transitions/expand-transition.mjs +2 -0
- package/lib/components/transitions/expand-transition.mjs.map +1 -1
- package/lib/composables/mousedown.mjs +30 -0
- package/lib/composables/mousedown.mjs.map +1 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.mts +55 -55
- package/lib/labs/VTreeview/VTreeview.mjs +1 -1
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewChildren.mjs +13 -2
- package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +15 -0
- package/lib/labs/components.d.mts +15 -0
- package/lib/locale/da.mjs +5 -5
- package/lib/locale/da.mjs.map +1 -1
- package/lib/locale/de.mjs +3 -3
- package/lib/locale/de.mjs.map +1 -1
- package/lib/locale/fi.mjs +5 -5
- package/lib/locale/fi.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify.d.ts
CHANGED
|
@@ -56295,8 +56295,17 @@ declare const VTab: {
|
|
|
56295
56295
|
type VTab = InstanceType<typeof VTab>;
|
|
56296
56296
|
|
|
56297
56297
|
type TabItem = string | number | Record<string, any>;
|
|
56298
|
-
type VTabsSlot = {
|
|
56299
|
-
item:
|
|
56298
|
+
type VTabsSlot<T> = {
|
|
56299
|
+
item: T;
|
|
56300
|
+
};
|
|
56301
|
+
type VTabsSlots<T> = {
|
|
56302
|
+
default: never;
|
|
56303
|
+
tab: VTabsSlot<T>;
|
|
56304
|
+
item: VTabsSlot<T>;
|
|
56305
|
+
window: never;
|
|
56306
|
+
} & {
|
|
56307
|
+
[key: `tab.${string}`]: VTabsSlot<T>;
|
|
56308
|
+
[key: `item.${string}`]: VTabsSlot<T>;
|
|
56300
56309
|
};
|
|
56301
56310
|
declare const VTabs: {
|
|
56302
56311
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
@@ -56308,7 +56317,6 @@ declare const VTabs: {
|
|
|
56308
56317
|
multiple: boolean;
|
|
56309
56318
|
tag: string;
|
|
56310
56319
|
mandatory: boolean | "force";
|
|
56311
|
-
items: readonly TabItem[];
|
|
56312
56320
|
density: Density;
|
|
56313
56321
|
selectedClass: string;
|
|
56314
56322
|
stacked: boolean;
|
|
@@ -56329,35 +56337,11 @@ declare const VTabs: {
|
|
|
56329
56337
|
bgColor?: string | undefined;
|
|
56330
56338
|
showArrows?: string | boolean | undefined;
|
|
56331
56339
|
sliderColor?: string | undefined;
|
|
56332
|
-
} & {
|
|
56333
|
-
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
56334
|
-
[x: `tab.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56335
|
-
[x: `item.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56336
|
-
default?: (() => vue.VNodeChild) | undefined;
|
|
56337
|
-
tab?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56338
|
-
item?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56339
|
-
window?: (() => vue.VNodeChild) | undefined;
|
|
56340
|
-
};
|
|
56341
|
-
'v-slots'?: {
|
|
56342
|
-
[x: `tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56343
|
-
[x: `item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56344
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
|
56345
|
-
tab?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56346
|
-
item?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56347
|
-
window?: false | (() => vue.VNodeChild) | undefined;
|
|
56348
|
-
} | undefined;
|
|
56349
|
-
} & {
|
|
56350
|
-
[x: `v-slot:tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56351
|
-
[x: `v-slot:item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56352
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
56353
|
-
"v-slot:tab"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56354
|
-
"v-slot:item"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56355
|
-
"v-slot:window"?: false | (() => vue.VNodeChild) | undefined;
|
|
56356
56340
|
} & {
|
|
56357
56341
|
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
56358
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
56342
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
56359
56343
|
'update:modelValue': (v: unknown) => true;
|
|
56360
|
-
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
56344
|
+
}, "$children" | "v-slots" | "v-slot:default" | "items" | "v-slot:item" | `v-slot:item.${string}` | "v-slot:window" | "v-slot:tab" | `v-slot:tab.${string}`>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
56361
56345
|
symbol: any;
|
|
56362
56346
|
direction: "horizontal" | "vertical";
|
|
56363
56347
|
style: vue.StyleValue;
|
|
@@ -56366,7 +56350,6 @@ declare const VTabs: {
|
|
|
56366
56350
|
multiple: boolean;
|
|
56367
56351
|
tag: string;
|
|
56368
56352
|
mandatory: boolean | "force";
|
|
56369
|
-
items: readonly TabItem[];
|
|
56370
56353
|
density: Density;
|
|
56371
56354
|
selectedClass: string;
|
|
56372
56355
|
stacked: boolean;
|
|
@@ -56387,30 +56370,6 @@ declare const VTabs: {
|
|
|
56387
56370
|
bgColor?: string | undefined;
|
|
56388
56371
|
showArrows?: string | boolean | undefined;
|
|
56389
56372
|
sliderColor?: string | undefined;
|
|
56390
|
-
} & {
|
|
56391
|
-
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
56392
|
-
[x: `tab.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56393
|
-
[x: `item.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56394
|
-
default?: (() => vue.VNodeChild) | undefined;
|
|
56395
|
-
tab?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56396
|
-
item?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56397
|
-
window?: (() => vue.VNodeChild) | undefined;
|
|
56398
|
-
};
|
|
56399
|
-
'v-slots'?: {
|
|
56400
|
-
[x: `tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56401
|
-
[x: `item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56402
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
|
56403
|
-
tab?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56404
|
-
item?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56405
|
-
window?: false | (() => vue.VNodeChild) | undefined;
|
|
56406
|
-
} | undefined;
|
|
56407
|
-
} & {
|
|
56408
|
-
[x: `v-slot:tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56409
|
-
[x: `v-slot:item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56410
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
56411
|
-
"v-slot:tab"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56412
|
-
"v-slot:item"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56413
|
-
"v-slot:window"?: false | (() => vue.VNodeChild) | undefined;
|
|
56414
56373
|
} & {
|
|
56415
56374
|
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
56416
56375
|
}, {
|
|
@@ -56424,7 +56383,6 @@ declare const VTabs: {
|
|
|
56424
56383
|
tag: string;
|
|
56425
56384
|
mandatory: boolean | "force";
|
|
56426
56385
|
modelValue: any;
|
|
56427
|
-
items: readonly TabItem[];
|
|
56428
56386
|
density: Density;
|
|
56429
56387
|
selectedClass: string;
|
|
56430
56388
|
stacked: boolean;
|
|
@@ -56436,11 +56394,11 @@ declare const VTabs: {
|
|
|
56436
56394
|
alignTabs: "center" | "end" | "start" | "title";
|
|
56437
56395
|
fixedTabs: boolean;
|
|
56438
56396
|
}, true, {}, vue.SlotsType<Partial<{
|
|
56439
|
-
[x: `tab.${string}`]: (arg: VTabsSlot) => vue.VNode[];
|
|
56440
|
-
[x: `item.${string}`]: (arg: VTabsSlot) => vue.VNode[];
|
|
56397
|
+
[x: `tab.${string}`]: (arg: VTabsSlot<unknown>) => vue.VNode[];
|
|
56398
|
+
[x: `item.${string}`]: (arg: VTabsSlot<unknown>) => vue.VNode[];
|
|
56441
56399
|
default: () => vue.VNode[];
|
|
56442
|
-
tab: (arg: VTabsSlot) => vue.VNode[];
|
|
56443
|
-
item: (arg: VTabsSlot) => vue.VNode[];
|
|
56400
|
+
tab: (arg: VTabsSlot<unknown>) => vue.VNode[];
|
|
56401
|
+
item: (arg: VTabsSlot<unknown>) => vue.VNode[];
|
|
56444
56402
|
window: () => vue.VNode[];
|
|
56445
56403
|
}>>, {
|
|
56446
56404
|
P: {};
|
|
@@ -56458,7 +56416,6 @@ declare const VTabs: {
|
|
|
56458
56416
|
multiple: boolean;
|
|
56459
56417
|
tag: string;
|
|
56460
56418
|
mandatory: boolean | "force";
|
|
56461
|
-
items: readonly TabItem[];
|
|
56462
56419
|
density: Density;
|
|
56463
56420
|
selectedClass: string;
|
|
56464
56421
|
stacked: boolean;
|
|
@@ -56479,30 +56436,6 @@ declare const VTabs: {
|
|
|
56479
56436
|
bgColor?: string | undefined;
|
|
56480
56437
|
showArrows?: string | boolean | undefined;
|
|
56481
56438
|
sliderColor?: string | undefined;
|
|
56482
|
-
} & {
|
|
56483
|
-
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
56484
|
-
[x: `tab.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56485
|
-
[x: `item.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56486
|
-
default?: (() => vue.VNodeChild) | undefined;
|
|
56487
|
-
tab?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56488
|
-
item?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56489
|
-
window?: (() => vue.VNodeChild) | undefined;
|
|
56490
|
-
};
|
|
56491
|
-
'v-slots'?: {
|
|
56492
|
-
[x: `tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56493
|
-
[x: `item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56494
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
|
56495
|
-
tab?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56496
|
-
item?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56497
|
-
window?: false | (() => vue.VNodeChild) | undefined;
|
|
56498
|
-
} | undefined;
|
|
56499
|
-
} & {
|
|
56500
|
-
[x: `v-slot:tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56501
|
-
[x: `v-slot:item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56502
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
56503
|
-
"v-slot:tab"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56504
|
-
"v-slot:item"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56505
|
-
"v-slot:window"?: false | (() => vue.VNodeChild) | undefined;
|
|
56506
56439
|
} & {
|
|
56507
56440
|
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
56508
56441
|
}, {}, {}, {}, {}, {
|
|
@@ -56516,7 +56449,6 @@ declare const VTabs: {
|
|
|
56516
56449
|
tag: string;
|
|
56517
56450
|
mandatory: boolean | "force";
|
|
56518
56451
|
modelValue: any;
|
|
56519
|
-
items: readonly TabItem[];
|
|
56520
56452
|
density: Density;
|
|
56521
56453
|
selectedClass: string;
|
|
56522
56454
|
stacked: boolean;
|
|
@@ -56540,7 +56472,6 @@ declare const VTabs: {
|
|
|
56540
56472
|
multiple: boolean;
|
|
56541
56473
|
tag: string;
|
|
56542
56474
|
mandatory: boolean | "force";
|
|
56543
|
-
items: readonly TabItem[];
|
|
56544
56475
|
density: Density;
|
|
56545
56476
|
selectedClass: string;
|
|
56546
56477
|
stacked: boolean;
|
|
@@ -56561,35 +56492,11 @@ declare const VTabs: {
|
|
|
56561
56492
|
bgColor?: string | undefined;
|
|
56562
56493
|
showArrows?: string | boolean | undefined;
|
|
56563
56494
|
sliderColor?: string | undefined;
|
|
56564
|
-
} & {
|
|
56565
|
-
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
56566
|
-
[x: `tab.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56567
|
-
[x: `item.${string}`]: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56568
|
-
default?: (() => vue.VNodeChild) | undefined;
|
|
56569
|
-
tab?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56570
|
-
item?: ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56571
|
-
window?: (() => vue.VNodeChild) | undefined;
|
|
56572
|
-
};
|
|
56573
|
-
'v-slots'?: {
|
|
56574
|
-
[x: `tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56575
|
-
[x: `item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56576
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
|
56577
|
-
tab?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56578
|
-
item?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56579
|
-
window?: false | (() => vue.VNodeChild) | undefined;
|
|
56580
|
-
} | undefined;
|
|
56581
|
-
} & {
|
|
56582
|
-
[x: `v-slot:tab.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56583
|
-
[x: `v-slot:item.${string}`]: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56584
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
56585
|
-
"v-slot:tab"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56586
|
-
"v-slot:item"?: false | ((arg: VTabsSlot) => vue.VNodeChild) | undefined;
|
|
56587
|
-
"v-slot:window"?: false | (() => vue.VNodeChild) | undefined;
|
|
56588
56495
|
} & {
|
|
56589
56496
|
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
56590
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
56497
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
56591
56498
|
'update:modelValue': (v: unknown) => true;
|
|
56592
|
-
}, string, {
|
|
56499
|
+
}, "$children" | "v-slots" | "v-slot:default" | "items" | "v-slot:item" | `v-slot:item.${string}` | "v-slot:window" | "v-slot:tab" | `v-slot:tab.${string}`>, string, {
|
|
56593
56500
|
symbol: any;
|
|
56594
56501
|
height: string | number;
|
|
56595
56502
|
direction: "horizontal" | "vertical";
|
|
@@ -56600,7 +56507,6 @@ declare const VTabs: {
|
|
|
56600
56507
|
tag: string;
|
|
56601
56508
|
mandatory: boolean | "force";
|
|
56602
56509
|
modelValue: any;
|
|
56603
|
-
items: readonly TabItem[];
|
|
56604
56510
|
density: Density;
|
|
56605
56511
|
selectedClass: string;
|
|
56606
56512
|
stacked: boolean;
|
|
@@ -56612,13 +56518,15 @@ declare const VTabs: {
|
|
|
56612
56518
|
alignTabs: "center" | "end" | "start" | "title";
|
|
56613
56519
|
fixedTabs: boolean;
|
|
56614
56520
|
}, {}, string, vue.SlotsType<Partial<{
|
|
56615
|
-
[x: `tab.${string}`]: (arg: VTabsSlot) => vue.VNode[];
|
|
56616
|
-
[x: `item.${string}`]: (arg: VTabsSlot) => vue.VNode[];
|
|
56521
|
+
[x: `tab.${string}`]: (arg: VTabsSlot<unknown>) => vue.VNode[];
|
|
56522
|
+
[x: `item.${string}`]: (arg: VTabsSlot<unknown>) => vue.VNode[];
|
|
56617
56523
|
default: () => vue.VNode[];
|
|
56618
|
-
tab: (arg: VTabsSlot) => vue.VNode[];
|
|
56619
|
-
item: (arg: VTabsSlot) => vue.VNode[];
|
|
56524
|
+
tab: (arg: VTabsSlot<unknown>) => vue.VNode[];
|
|
56525
|
+
item: (arg: VTabsSlot<unknown>) => vue.VNode[];
|
|
56620
56526
|
window: () => vue.VNode[];
|
|
56621
|
-
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps &
|
|
56527
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T = TabItem>(props: {
|
|
56528
|
+
items?: T;
|
|
56529
|
+
}, slots: VTabsSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
|
|
56622
56530
|
tag: {
|
|
56623
56531
|
type: StringConstructor;
|
|
56624
56532
|
default: string;
|
|
@@ -67088,43 +66996,42 @@ declare module 'vue' {
|
|
|
67088
66996
|
$children?: VNodeChild
|
|
67089
66997
|
}
|
|
67090
66998
|
export interface GlobalComponents {
|
|
67091
|
-
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
67092
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
67093
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
67094
66999
|
VApp: typeof import('vuetify/components')['VApp']
|
|
67095
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
67096
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
|
67097
67000
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
67098
67001
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
67099
|
-
|
|
67002
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
67100
67003
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
67101
67004
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
67102
67005
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
67103
|
-
|
|
67104
|
-
|
|
67105
|
-
|
|
67006
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
67007
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
67008
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
67009
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
67010
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
67106
67011
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
67107
67012
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
67108
|
-
|
|
67013
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
67109
67014
|
VCard: typeof import('vuetify/components')['VCard']
|
|
67110
67015
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
67111
67016
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
67112
67017
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
67113
67018
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
67114
67019
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
67115
|
-
|
|
67116
|
-
|
|
67117
|
-
|
|
67118
|
-
|
|
67119
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
67020
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
67021
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
67022
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
67023
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
67120
67024
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
67121
67025
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
67122
|
-
|
|
67026
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
67123
67027
|
VChip: typeof import('vuetify/components')['VChip']
|
|
67124
67028
|
VCode: typeof import('vuetify/components')['VCode']
|
|
67029
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
67030
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
67031
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
67125
67032
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
67126
67033
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
67127
|
-
|
|
67034
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
67128
67035
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
67129
67036
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
67130
67037
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -67132,36 +67039,34 @@ declare module 'vue' {
|
|
|
67132
67039
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
67133
67040
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
67134
67041
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
67042
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
67043
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
67135
67044
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
67136
67045
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
67137
67046
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
67138
67047
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
67139
67048
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
67140
67049
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
67050
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
67051
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
|
67141
67052
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
67142
67053
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
67143
67054
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
67144
67055
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
67145
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
|
67146
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
67147
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
|
67148
67056
|
VFab: typeof import('vuetify/components')['VFab']
|
|
67149
67057
|
VField: typeof import('vuetify/components')['VField']
|
|
67150
67058
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
67059
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
67151
67060
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
67152
67061
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
67153
67062
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
67154
67063
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
67155
67064
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
67156
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
67157
67065
|
VImg: typeof import('vuetify/components')['VImg']
|
|
67158
67066
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
67159
67067
|
VItem: typeof import('vuetify/components')['VItem']
|
|
67160
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
67161
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
|
67162
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
67163
|
-
VMain: typeof import('vuetify/components')['VMain']
|
|
67164
67068
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
67069
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
67165
67070
|
VList: typeof import('vuetify/components')['VList']
|
|
67166
67071
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
67167
67072
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -67171,71 +67076,74 @@ declare module 'vue' {
|
|
|
67171
67076
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
67172
67077
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
67173
67078
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
67174
|
-
|
|
67175
|
-
|
|
67079
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
67080
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
67081
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
67176
67082
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
67177
|
-
|
|
67083
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
|
67084
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
67178
67085
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
67179
|
-
|
|
67086
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
67180
67087
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
67088
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
67181
67089
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
67182
67090
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
67183
|
-
|
|
67184
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
67185
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
|
67186
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
67091
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
67187
67092
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
67093
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
67094
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
67095
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
67188
67096
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
67189
67097
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
67098
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
67190
67099
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
67191
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
67192
67100
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
67193
67101
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
67102
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
67103
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
67104
|
+
VTab: typeof import('vuetify/components')['VTab']
|
|
67105
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
|
67106
|
+
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
|
67107
|
+
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
|
67194
67108
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
67195
67109
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
67196
67110
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
67197
67111
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
67198
67112
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
67199
67113
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
67200
|
-
|
|
67201
|
-
|
|
67202
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
|
67203
|
-
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
|
67204
|
-
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
|
67114
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
67115
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
67205
67116
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
67206
|
-
|
|
67117
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
67207
67118
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
67208
67119
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
67209
67120
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
67210
|
-
|
|
67211
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
67212
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
67213
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
67121
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
67214
67122
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
67215
67123
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
67216
|
-
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
67217
67124
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
|
67125
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
67218
67126
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
67127
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
67219
67128
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
67220
67129
|
VCol: typeof import('vuetify/components')['VCol']
|
|
67221
67130
|
VRow: typeof import('vuetify/components')['VRow']
|
|
67222
67131
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
67223
67132
|
VHover: typeof import('vuetify/components')['VHover']
|
|
67224
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
67225
|
-
VLayout: typeof import('vuetify/components')['VLayout']
|
|
67226
|
-
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
67227
67133
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
67228
67134
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
67135
|
+
VLayout: typeof import('vuetify/components')['VLayout']
|
|
67136
|
+
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
67229
67137
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
67230
67138
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
67231
67139
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
67232
67140
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
67233
67141
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
67234
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
|
67235
67142
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
|
67236
|
-
|
|
67237
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
|
67143
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
|
67238
67144
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
67145
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
67146
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
67239
67147
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
67240
67148
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
67241
67149
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -67258,14 +67166,14 @@ declare module 'vue' {
|
|
|
67258
67166
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
67259
67167
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
67260
67168
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
67261
|
-
|
|
67169
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
|
67170
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
|
67171
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
|
67262
67172
|
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
|
67263
67173
|
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
|
67174
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
|
67264
67175
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
67265
67176
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
67266
|
-
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
|
67267
|
-
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
|
67268
|
-
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
|
67269
67177
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
|
67270
67178
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
|
67271
67179
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|