@vuetify/nightly 3.8.5-dev.2025-05-18 → 3.8.5-dev.2025-05-20
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 +5 -3
- package/dist/json/attributes.json +1597 -1593
- package/dist/json/importMap-labs.json +22 -22
- package/dist/json/importMap.json +176 -176
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +3310 -3210
- package/dist/vuetify-labs.cjs +135 -69
- package/dist/vuetify-labs.css +5912 -5912
- package/dist/vuetify-labs.d.ts +161 -75
- package/dist/vuetify-labs.esm.js +135 -69
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +135 -69
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +135 -69
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +1708 -1708
- package/dist/vuetify.d.ts +158 -72
- package/dist/vuetify.esm.js +135 -69
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +135 -69
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +71 -69
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +26 -2
- package/lib/components/VAutocomplete/VAutocomplete.js +18 -1
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.d.ts +26 -2
- package/lib/components/VCombobox/VCombobox.js +18 -1
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VList/VListChildren.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.d.ts +14 -0
- package/lib/components/VNumberInput/VNumberInput.js +19 -4
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/components/VSelect/VSelect.d.ts +26 -2
- package/lib/components/VSelect/VSelect.js +18 -1
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/composables/filter.js +3 -0
- package/lib/composables/filter.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +66 -66
- package/lib/framework.js +1 -1
- package/lib/labs/VFileUpload/VFileUpload.d.ts +3 -3
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -13141,7 +13141,7 @@ declare const VAutocomplete: {
|
|
13141
13141
|
'update:search': (value: any) => true;
|
13142
13142
|
'update:modelValue': (value: any) => true;
|
13143
13143
|
'update:menu': (value: boolean) => true;
|
13144
|
-
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
13144
|
+
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "v-slot:divider" | "v-slot:subheader" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
13145
13145
|
flat: boolean;
|
13146
13146
|
reverse: boolean;
|
13147
13147
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
@@ -13220,6 +13220,14 @@ declare const VAutocomplete: {
|
|
13220
13220
|
item: ListItem<unknown>;
|
13221
13221
|
index: number;
|
13222
13222
|
}) => vue.VNode[];
|
13223
|
+
subheader: (arg: {
|
13224
|
+
props: Record<string, unknown>;
|
13225
|
+
index: number;
|
13226
|
+
}) => vue.VNode[];
|
13227
|
+
divider: (arg: {
|
13228
|
+
props: Record<string, unknown>;
|
13229
|
+
index: number;
|
13230
|
+
}) => vue.VNode[];
|
13223
13231
|
'prepend-item': () => vue.VNode[];
|
13224
13232
|
'append-item': () => vue.VNode[];
|
13225
13233
|
'no-data': () => vue.VNode[];
|
@@ -18133,7 +18141,7 @@ declare const VAutocomplete: {
|
|
18133
18141
|
'update:search': (value: any) => true;
|
18134
18142
|
'update:modelValue': (value: any) => true;
|
18135
18143
|
'update:menu': (value: boolean) => true;
|
18136
|
-
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
18144
|
+
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "v-slot:divider" | "v-slot:subheader" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
18137
18145
|
flat: boolean;
|
18138
18146
|
reverse: boolean;
|
18139
18147
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
@@ -18212,6 +18220,14 @@ declare const VAutocomplete: {
|
|
18212
18220
|
item: ListItem<unknown>;
|
18213
18221
|
index: number;
|
18214
18222
|
}) => vue.VNode[];
|
18223
|
+
subheader: (arg: {
|
18224
|
+
props: Record<string, unknown>;
|
18225
|
+
index: number;
|
18226
|
+
}) => vue.VNode[];
|
18227
|
+
divider: (arg: {
|
18228
|
+
props: Record<string, unknown>;
|
18229
|
+
index: number;
|
18230
|
+
}) => vue.VNode[];
|
18215
18231
|
'prepend-item': () => vue.VNode[];
|
18216
18232
|
'append-item': () => vue.VNode[];
|
18217
18233
|
'no-data': () => vue.VNode[];
|
@@ -18239,6 +18255,14 @@ declare const VAutocomplete: {
|
|
18239
18255
|
item: ListItem<Item>;
|
18240
18256
|
index: number;
|
18241
18257
|
};
|
18258
|
+
subheader: {
|
18259
|
+
props: Record<string, unknown>;
|
18260
|
+
index: number;
|
18261
|
+
};
|
18262
|
+
divider: {
|
18263
|
+
props: Record<string, unknown>;
|
18264
|
+
index: number;
|
18265
|
+
};
|
18242
18266
|
"prepend-item": never;
|
18243
18267
|
"append-item": never;
|
18244
18268
|
"no-data": never;
|
@@ -30209,7 +30233,7 @@ declare const VCombobox: {
|
|
30209
30233
|
'update:modelValue': (value: any) => true;
|
30210
30234
|
'update:search': (value: string) => true;
|
30211
30235
|
'update:menu': (value: boolean) => true;
|
30212
|
-
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
30236
|
+
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "v-slot:divider" | "v-slot:subheader" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
30213
30237
|
flat: boolean;
|
30214
30238
|
reverse: boolean;
|
30215
30239
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
@@ -30288,6 +30312,14 @@ declare const VCombobox: {
|
|
30288
30312
|
item: ListItem<unknown>;
|
30289
30313
|
index: number;
|
30290
30314
|
}) => vue.VNode[];
|
30315
|
+
subheader: (arg: {
|
30316
|
+
props: Record<string, unknown>;
|
30317
|
+
index: number;
|
30318
|
+
}) => vue.VNode[];
|
30319
|
+
divider: (arg: {
|
30320
|
+
props: Record<string, unknown>;
|
30321
|
+
index: number;
|
30322
|
+
}) => vue.VNode[];
|
30291
30323
|
'prepend-item': () => vue.VNode[];
|
30292
30324
|
'append-item': () => vue.VNode[];
|
30293
30325
|
'no-data': () => vue.VNode[];
|
@@ -35197,7 +35229,7 @@ declare const VCombobox: {
|
|
35197
35229
|
'update:modelValue': (value: any) => true;
|
35198
35230
|
'update:search': (value: string) => true;
|
35199
35231
|
'update:menu': (value: boolean) => true;
|
35200
|
-
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
35232
|
+
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "v-slot:divider" | "v-slot:subheader" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
35201
35233
|
flat: boolean;
|
35202
35234
|
reverse: boolean;
|
35203
35235
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
@@ -35276,6 +35308,14 @@ declare const VCombobox: {
|
|
35276
35308
|
item: ListItem<unknown>;
|
35277
35309
|
index: number;
|
35278
35310
|
}) => vue.VNode[];
|
35311
|
+
subheader: (arg: {
|
35312
|
+
props: Record<string, unknown>;
|
35313
|
+
index: number;
|
35314
|
+
}) => vue.VNode[];
|
35315
|
+
divider: (arg: {
|
35316
|
+
props: Record<string, unknown>;
|
35317
|
+
index: number;
|
35318
|
+
}) => vue.VNode[];
|
35279
35319
|
'prepend-item': () => vue.VNode[];
|
35280
35320
|
'append-item': () => vue.VNode[];
|
35281
35321
|
'no-data': () => vue.VNode[];
|
@@ -35303,6 +35343,14 @@ declare const VCombobox: {
|
|
35303
35343
|
item: ListItem<Item>;
|
35304
35344
|
index: number;
|
35305
35345
|
};
|
35346
|
+
subheader: {
|
35347
|
+
props: Record<string, unknown>;
|
35348
|
+
index: number;
|
35349
|
+
};
|
35350
|
+
divider: {
|
35351
|
+
props: Record<string, unknown>;
|
35352
|
+
index: number;
|
35353
|
+
};
|
35306
35354
|
"prepend-item": never;
|
35307
35355
|
"append-item": never;
|
35308
35356
|
"no-data": never;
|
@@ -51005,6 +51053,7 @@ declare const VNumberInput: {
|
|
51005
51053
|
hideInput: boolean;
|
51006
51054
|
controlVariant: ControlVariant;
|
51007
51055
|
precision: number | null;
|
51056
|
+
minFractionDigits: number | null;
|
51008
51057
|
} & {
|
51009
51058
|
name?: string | undefined;
|
51010
51059
|
id?: string | undefined;
|
@@ -53079,6 +53128,7 @@ declare const VNumberInput: {
|
|
53079
53128
|
hideInput: boolean;
|
53080
53129
|
controlVariant: ControlVariant;
|
53081
53130
|
precision: number | null;
|
53131
|
+
minFractionDigits: number | null;
|
53082
53132
|
}, true, {}, vue.SlotsType<Partial<{
|
53083
53133
|
message: (arg: VMessageSlot) => vue.VNode[];
|
53084
53134
|
clear: (arg: DefaultInputSlot & {
|
@@ -53141,6 +53191,7 @@ declare const VNumberInput: {
|
|
53141
53191
|
hideInput: boolean;
|
53142
53192
|
controlVariant: ControlVariant;
|
53143
53193
|
precision: number | null;
|
53194
|
+
minFractionDigits: number | null;
|
53144
53195
|
} & {
|
53145
53196
|
name?: string | undefined;
|
53146
53197
|
id?: string | undefined;
|
@@ -55213,6 +55264,7 @@ declare const VNumberInput: {
|
|
55213
55264
|
hideInput: boolean;
|
55214
55265
|
controlVariant: ControlVariant;
|
55215
55266
|
precision: number | null;
|
55267
|
+
minFractionDigits: number | null;
|
55216
55268
|
}>;
|
55217
55269
|
__isFragment?: never;
|
55218
55270
|
__isTeleport?: never;
|
@@ -55254,6 +55306,7 @@ declare const VNumberInput: {
|
|
55254
55306
|
hideInput: boolean;
|
55255
55307
|
controlVariant: ControlVariant;
|
55256
55308
|
precision: number | null;
|
55309
|
+
minFractionDigits: number | null;
|
55257
55310
|
} & {
|
55258
55311
|
name?: string | undefined;
|
55259
55312
|
id?: string | undefined;
|
@@ -57328,6 +57381,7 @@ declare const VNumberInput: {
|
|
57328
57381
|
hideInput: boolean;
|
57329
57382
|
controlVariant: ControlVariant;
|
57330
57383
|
precision: number | null;
|
57384
|
+
minFractionDigits: number | null;
|
57331
57385
|
}, {}, string, vue.SlotsType<Partial<{
|
57332
57386
|
message: (arg: VMessageSlot) => vue.VNode[];
|
57333
57387
|
clear: (arg: DefaultInputSlot & {
|
@@ -57481,6 +57535,10 @@ declare const VNumberInput: {
|
|
57481
57535
|
type: PropType<number | null>;
|
57482
57536
|
default: number;
|
57483
57537
|
};
|
57538
|
+
minFractionDigits: {
|
57539
|
+
type: PropType<number | null>;
|
57540
|
+
default: null;
|
57541
|
+
};
|
57484
57542
|
}, vue.ExtractPropTypes<{
|
57485
57543
|
flat: BooleanConstructor;
|
57486
57544
|
reverse: BooleanConstructor;
|
@@ -57616,6 +57674,10 @@ declare const VNumberInput: {
|
|
57616
57674
|
type: PropType<number | null>;
|
57617
57675
|
default: number;
|
57618
57676
|
};
|
57677
|
+
minFractionDigits: {
|
57678
|
+
type: PropType<number | null>;
|
57679
|
+
default: null;
|
57680
|
+
};
|
57619
57681
|
}>>;
|
57620
57682
|
type VNumberInput = InstanceType<typeof VNumberInput>;
|
57621
57683
|
|
@@ -64097,7 +64159,7 @@ declare const VSelect: {
|
|
64097
64159
|
'update:focused': (focused: boolean) => true;
|
64098
64160
|
'update:modelValue': (value: any) => true;
|
64099
64161
|
'update:menu': (ue: boolean) => true;
|
64100
|
-
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
64162
|
+
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "v-slot:divider" | "v-slot:subheader" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
64101
64163
|
flat: boolean;
|
64102
64164
|
reverse: boolean;
|
64103
64165
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
@@ -64174,6 +64236,14 @@ declare const VSelect: {
|
|
64174
64236
|
item: ListItem<unknown>;
|
64175
64237
|
index: number;
|
64176
64238
|
}) => vue.VNode[];
|
64239
|
+
subheader: (arg: {
|
64240
|
+
props: Record<string, unknown>;
|
64241
|
+
index: number;
|
64242
|
+
}) => vue.VNode[];
|
64243
|
+
divider: (arg: {
|
64244
|
+
props: Record<string, unknown>;
|
64245
|
+
index: number;
|
64246
|
+
}) => vue.VNode[];
|
64177
64247
|
'prepend-item': () => vue.VNode[];
|
64178
64248
|
'append-item': () => vue.VNode[];
|
64179
64249
|
'no-data': () => vue.VNode[];
|
@@ -69050,7 +69120,7 @@ declare const VSelect: {
|
|
69050
69120
|
'update:focused': (focused: boolean) => true;
|
69051
69121
|
'update:modelValue': (value: any) => true;
|
69052
69122
|
'update:menu': (ue: boolean) => true;
|
69053
|
-
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
69123
|
+
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "v-slot:divider" | "v-slot:subheader" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
69054
69124
|
flat: boolean;
|
69055
69125
|
reverse: boolean;
|
69056
69126
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
@@ -69127,6 +69197,14 @@ declare const VSelect: {
|
|
69127
69197
|
item: ListItem<unknown>;
|
69128
69198
|
index: number;
|
69129
69199
|
}) => vue.VNode[];
|
69200
|
+
subheader: (arg: {
|
69201
|
+
props: Record<string, unknown>;
|
69202
|
+
index: number;
|
69203
|
+
}) => vue.VNode[];
|
69204
|
+
divider: (arg: {
|
69205
|
+
props: Record<string, unknown>;
|
69206
|
+
index: number;
|
69207
|
+
}) => vue.VNode[];
|
69130
69208
|
'prepend-item': () => vue.VNode[];
|
69131
69209
|
'append-item': () => vue.VNode[];
|
69132
69210
|
'no-data': () => vue.VNode[];
|
@@ -69154,6 +69232,14 @@ declare const VSelect: {
|
|
69154
69232
|
item: ListItem<Item>;
|
69155
69233
|
index: number;
|
69156
69234
|
};
|
69235
|
+
subheader: {
|
69236
|
+
props: Record<string, unknown>;
|
69237
|
+
index: number;
|
69238
|
+
};
|
69239
|
+
divider: {
|
69240
|
+
props: Record<string, unknown>;
|
69241
|
+
index: number;
|
69242
|
+
};
|
69157
69243
|
"prepend-item": never;
|
69158
69244
|
"append-item": never;
|
69159
69245
|
"no-data": never;
|
@@ -85933,35 +86019,36 @@ declare module 'vue' {
|
|
85933
86019
|
VAppBarTitle: VAppBarTitle
|
85934
86020
|
VAlert: VAlert
|
85935
86021
|
VAlertTitle: VAlertTitle
|
86022
|
+
VAutocomplete: VAutocomplete
|
86023
|
+
VApp: VApp
|
85936
86024
|
VBadge: VBadge
|
85937
86025
|
VAvatar: VAvatar
|
85938
|
-
|
85939
|
-
|
85940
|
-
VBannerText: VBannerText
|
85941
|
-
VApp: VApp
|
85942
|
-
VAutocomplete: VAutocomplete
|
85943
|
-
VBtn: VBtn
|
86026
|
+
VBtnToggle: VBtnToggle
|
86027
|
+
VBottomNavigation: VBottomNavigation
|
85944
86028
|
VBreadcrumbs: VBreadcrumbs
|
85945
86029
|
VBreadcrumbsItem: VBreadcrumbsItem
|
85946
86030
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
85947
|
-
|
85948
|
-
|
86031
|
+
VBottomSheet: VBottomSheet
|
86032
|
+
VBtnGroup: VBtnGroup
|
86033
|
+
VBtn: VBtn
|
86034
|
+
VBanner: VBanner
|
86035
|
+
VBannerActions: VBannerActions
|
86036
|
+
VBannerText: VBannerText
|
85949
86037
|
VCard: VCard
|
85950
86038
|
VCardActions: VCardActions
|
85951
86039
|
VCardItem: VCardItem
|
85952
86040
|
VCardSubtitle: VCardSubtitle
|
85953
86041
|
VCardText: VCardText
|
85954
86042
|
VCardTitle: VCardTitle
|
85955
|
-
VBtnGroup: VBtnGroup
|
85956
|
-
VBtnToggle: VBtnToggle
|
85957
|
-
VColorPicker: VColorPicker
|
85958
|
-
VCode: VCode
|
85959
|
-
VChip: VChip
|
85960
86043
|
VCarousel: VCarousel
|
85961
86044
|
VCarouselItem: VCarouselItem
|
85962
|
-
|
86045
|
+
VCheckbox: VCheckbox
|
86046
|
+
VCheckboxBtn: VCheckboxBtn
|
86047
|
+
VChip: VChip
|
85963
86048
|
VChipGroup: VChipGroup
|
85964
|
-
|
86049
|
+
VCode: VCode
|
86050
|
+
VColorPicker: VColorPicker
|
86051
|
+
VCombobox: VCombobox
|
85965
86052
|
VDataTable: VDataTable
|
85966
86053
|
VDataTableHeaders: VDataTableHeaders
|
85967
86054
|
VDataTableFooter: VDataTableFooter
|
@@ -85969,6 +86056,9 @@ declare module 'vue' {
|
|
85969
86056
|
VDataTableRow: VDataTableRow
|
85970
86057
|
VDataTableVirtual: VDataTableVirtual
|
85971
86058
|
VDataTableServer: VDataTableServer
|
86059
|
+
VCounter: VCounter
|
86060
|
+
VDialog: VDialog
|
86061
|
+
VDivider: VDivider
|
85972
86062
|
VDatePicker: VDatePicker
|
85973
86063
|
VDatePickerControls: VDatePickerControls
|
85974
86064
|
VDatePickerHeader: VDatePickerHeader
|
@@ -85976,23 +86066,27 @@ declare module 'vue' {
|
|
85976
86066
|
VDatePickerMonths: VDatePickerMonths
|
85977
86067
|
VDatePickerYears: VDatePickerYears
|
85978
86068
|
VEmptyState: VEmptyState
|
85979
|
-
VDivider: VDivider
|
85980
|
-
VFab: VFab
|
85981
|
-
VField: VField
|
85982
|
-
VFieldLabel: VFieldLabel
|
85983
|
-
VFileInput: VFileInput
|
85984
|
-
VFooter: VFooter
|
85985
86069
|
VExpansionPanels: VExpansionPanels
|
85986
86070
|
VExpansionPanel: VExpansionPanel
|
85987
86071
|
VExpansionPanelText: VExpansionPanelText
|
85988
86072
|
VExpansionPanelTitle: VExpansionPanelTitle
|
86073
|
+
VFileInput: VFileInput
|
86074
|
+
VFab: VFab
|
86075
|
+
VFooter: VFooter
|
86076
|
+
VField: VField
|
86077
|
+
VFieldLabel: VFieldLabel
|
86078
|
+
VIcon: VIcon
|
86079
|
+
VComponentIcon: VComponentIcon
|
86080
|
+
VSvgIcon: VSvgIcon
|
86081
|
+
VLigatureIcon: VLigatureIcon
|
86082
|
+
VClassIcon: VClassIcon
|
85989
86083
|
VImg: VImg
|
85990
|
-
|
86084
|
+
VInput: VInput
|
85991
86085
|
VInfiniteScroll: VInfiniteScroll
|
86086
|
+
VKbd: VKbd
|
85992
86087
|
VItemGroup: VItemGroup
|
85993
86088
|
VItem: VItem
|
85994
86089
|
VLabel: VLabel
|
85995
|
-
VKbd: VKbd
|
85996
86090
|
VList: VList
|
85997
86091
|
VListGroup: VListGroup
|
85998
86092
|
VListImg: VListImg
|
@@ -86003,77 +86097,69 @@ declare module 'vue' {
|
|
86003
86097
|
VListItemTitle: VListItemTitle
|
86004
86098
|
VListSubheader: VListSubheader
|
86005
86099
|
VMessages: VMessages
|
86006
|
-
VInput: VInput
|
86007
|
-
VNavigationDrawer: VNavigationDrawer
|
86008
|
-
VMenu: VMenu
|
86009
86100
|
VMain: VMain
|
86010
|
-
|
86011
|
-
VOverlay: VOverlay
|
86101
|
+
VMenu: VMenu
|
86012
86102
|
VNumberInput: VNumberInput
|
86103
|
+
VOverlay: VOverlay
|
86104
|
+
VNavigationDrawer: VNavigationDrawer
|
86105
|
+
VOtpInput: VOtpInput
|
86013
86106
|
VPagination: VPagination
|
86014
86107
|
VProgressCircular: VProgressCircular
|
86015
86108
|
VRadioGroup: VRadioGroup
|
86016
86109
|
VProgressLinear: VProgressLinear
|
86017
|
-
VRating: VRating
|
86018
|
-
VSelectionControl: VSelectionControl
|
86019
|
-
VSelectionControlGroup: VSelectionControlGroup
|
86020
|
-
VSelect: VSelect
|
86021
86110
|
VSheet: VSheet
|
86111
|
+
VSelectionControl: VSelectionControl
|
86022
86112
|
VSlideGroup: VSlideGroup
|
86023
86113
|
VSlideGroupItem: VSlideGroupItem
|
86024
86114
|
VSkeletonLoader: VSkeletonLoader
|
86025
|
-
VSlider: VSlider
|
86026
|
-
VBottomSheet: VBottomSheet
|
86027
86115
|
VSnackbar: VSnackbar
|
86028
|
-
|
86116
|
+
VSlider: VSlider
|
86029
86117
|
VStepper: VStepper
|
86030
86118
|
VStepperActions: VStepperActions
|
86031
86119
|
VStepperHeader: VStepperHeader
|
86032
86120
|
VStepperItem: VStepperItem
|
86033
86121
|
VStepperWindow: VStepperWindow
|
86034
86122
|
VStepperWindowItem: VStepperWindowItem
|
86123
|
+
VSwitch: VSwitch
|
86124
|
+
VSelectionControlGroup: VSelectionControlGroup
|
86035
86125
|
VSystemBar: VSystemBar
|
86126
|
+
VSelect: VSelect
|
86127
|
+
VTextField: VTextField
|
86036
86128
|
VTable: VTable
|
86037
|
-
|
86038
|
-
VTabs: VTabs
|
86039
|
-
VTabsWindow: VTabsWindow
|
86040
|
-
VTabsWindowItem: VTabsWindowItem
|
86129
|
+
VTooltip: VTooltip
|
86041
86130
|
VTimeline: VTimeline
|
86042
86131
|
VTimelineItem: VTimelineItem
|
86132
|
+
VWindow: VWindow
|
86133
|
+
VWindowItem: VWindowItem
|
86043
86134
|
VToolbar: VToolbar
|
86044
86135
|
VToolbarTitle: VToolbarTitle
|
86045
86136
|
VToolbarItems: VToolbarItems
|
86046
|
-
VTooltip: VTooltip
|
86047
|
-
VBottomNavigation: VBottomNavigation
|
86048
86137
|
VTextarea: VTextarea
|
86049
|
-
|
86050
|
-
|
86051
|
-
|
86052
|
-
|
86053
|
-
VComponentIcon: VComponentIcon
|
86054
|
-
VSvgIcon: VSvgIcon
|
86055
|
-
VLigatureIcon: VLigatureIcon
|
86056
|
-
VClassIcon: VClassIcon
|
86057
|
-
VConfirmEdit: VConfirmEdit
|
86138
|
+
VTab: VTab
|
86139
|
+
VTabs: VTabs
|
86140
|
+
VTabsWindow: VTabsWindow
|
86141
|
+
VTabsWindowItem: VTabsWindowItem
|
86058
86142
|
VDataIterator: VDataIterator
|
86059
86143
|
VDefaultsProvider: VDefaultsProvider
|
86060
|
-
VForm: VForm
|
86061
|
-
VHover: VHover
|
86062
86144
|
VContainer: VContainer
|
86063
86145
|
VCol: VCol
|
86064
86146
|
VRow: VRow
|
86065
86147
|
VSpacer: VSpacer
|
86148
|
+
VHover: VHover
|
86149
|
+
VForm: VForm
|
86066
86150
|
VLayout: VLayout
|
86067
86151
|
VLayoutItem: VLayoutItem
|
86068
|
-
VLazy: VLazy
|
86069
|
-
VLocaleProvider: VLocaleProvider
|
86070
86152
|
VNoSsr: VNoSsr
|
86153
|
+
VLazy: VLazy
|
86071
86154
|
VRadio: VRadio
|
86072
86155
|
VParallax: VParallax
|
86073
86156
|
VRangeSlider: VRangeSlider
|
86074
86157
|
VResponsive: VResponsive
|
86075
|
-
VSparkline: VSparkline
|
86076
86158
|
VSpeedDial: VSpeedDial
|
86159
|
+
VSnackbarQueue: VSnackbarQueue
|
86160
|
+
VSparkline: VSparkline
|
86161
|
+
VThemeProvider: VThemeProvider
|
86162
|
+
VValidation: VValidation
|
86077
86163
|
VFabTransition: VFabTransition
|
86078
86164
|
VDialogBottomTransition: VDialogBottomTransition
|
86079
86165
|
VDialogTopTransition: VDialogTopTransition
|
@@ -86090,10 +86176,11 @@ declare module 'vue' {
|
|
86090
86176
|
VExpandTransition: VExpandTransition
|
86091
86177
|
VExpandXTransition: VExpandXTransition
|
86092
86178
|
VDialogTransition: VDialogTransition
|
86093
|
-
VValidation: VValidation
|
86094
|
-
VSnackbarQueue: VSnackbarQueue
|
86095
86179
|
VVirtualScroll: VVirtualScroll
|
86096
|
-
|
86180
|
+
VLocaleProvider: VLocaleProvider
|
86181
|
+
VConfirmEdit: VConfirmEdit
|
86182
|
+
VRating: VRating
|
86183
|
+
VColorInput: VColorInput
|
86097
86184
|
VFileUpload: VFileUpload
|
86098
86185
|
VFileUploadItem: VFileUploadItem
|
86099
86186
|
VCalendar: VCalendar
|
@@ -86102,20 +86189,19 @@ declare module 'vue' {
|
|
86102
86189
|
VCalendarInterval: VCalendarInterval
|
86103
86190
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
86104
86191
|
VCalendarMonthDay: VCalendarMonthDay
|
86105
|
-
|
86106
|
-
|
86107
|
-
VTimePickerControls: VTimePickerControls
|
86108
|
-
VColorInput: VColorInput
|
86109
|
-
VIconBtn: VIconBtn
|
86192
|
+
VPicker: VPicker
|
86193
|
+
VPickerTitle: VPickerTitle
|
86110
86194
|
VStepperVertical: VStepperVertical
|
86111
86195
|
VStepperVerticalItem: VStepperVerticalItem
|
86112
86196
|
VStepperVerticalActions: VStepperVerticalActions
|
86113
|
-
|
86114
|
-
|
86197
|
+
VTimePicker: VTimePicker
|
86198
|
+
VTimePickerClock: VTimePickerClock
|
86199
|
+
VTimePickerControls: VTimePickerControls
|
86115
86200
|
VTreeview: VTreeview
|
86116
86201
|
VTreeviewItem: VTreeviewItem
|
86117
86202
|
VTreeviewGroup: VTreeviewGroup
|
86118
|
-
|
86203
|
+
VIconBtn: VIconBtn
|
86119
86204
|
VPullToRefresh: VPullToRefresh
|
86205
|
+
VDateInput: VDateInput
|
86120
86206
|
}
|
86121
86207
|
}
|