@vuetify/nightly 3.8.5-dev.2025-05-17 → 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 +6 -3
- package/dist/json/attributes.json +2855 -2851
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +154 -154
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +5580 -5480
- package/dist/vuetify-labs.cjs +136 -69
- package/dist/vuetify-labs.css +5215 -5215
- package/dist/vuetify-labs.d.ts +151 -65
- package/dist/vuetify-labs.esm.js +136 -69
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +136 -69
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +136 -69
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5450 -5450
- package/dist/vuetify.d.ts +148 -62
- package/dist/vuetify.esm.js +136 -69
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +136 -69
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +73 -71
- 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 +19 -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 +56 -56
- 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;
|
@@ -85928,38 +86014,41 @@ declare module 'vue' {
|
|
85928
86014
|
$children?: VNodeChild
|
85929
86015
|
}
|
85930
86016
|
export interface GlobalComponents {
|
85931
|
-
VApp: VApp
|
85932
86017
|
VAppBar: VAppBar
|
85933
86018
|
VAppBarNavIcon: VAppBarNavIcon
|
85934
86019
|
VAppBarTitle: VAppBarTitle
|
86020
|
+
VAlert: VAlert
|
86021
|
+
VAlertTitle: VAlertTitle
|
85935
86022
|
VAutocomplete: VAutocomplete
|
86023
|
+
VApp: VApp
|
85936
86024
|
VBadge: VBadge
|
86025
|
+
VAvatar: VAvatar
|
86026
|
+
VBtnToggle: VBtnToggle
|
86027
|
+
VBottomNavigation: VBottomNavigation
|
86028
|
+
VBreadcrumbs: VBreadcrumbs
|
86029
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
86030
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
86031
|
+
VBottomSheet: VBottomSheet
|
86032
|
+
VBtnGroup: VBtnGroup
|
86033
|
+
VBtn: VBtn
|
85937
86034
|
VBanner: VBanner
|
85938
86035
|
VBannerActions: VBannerActions
|
85939
86036
|
VBannerText: VBannerText
|
85940
|
-
VAlert: VAlert
|
85941
|
-
VAlertTitle: VAlertTitle
|
85942
|
-
VBottomNavigation: VBottomNavigation
|
85943
|
-
VBottomSheet: VBottomSheet
|
85944
86037
|
VCard: VCard
|
85945
86038
|
VCardActions: VCardActions
|
85946
86039
|
VCardItem: VCardItem
|
85947
86040
|
VCardSubtitle: VCardSubtitle
|
85948
86041
|
VCardText: VCardText
|
85949
86042
|
VCardTitle: VCardTitle
|
85950
|
-
VBtn: VBtn
|
85951
|
-
VBtnGroup: VBtnGroup
|
85952
|
-
VCheckbox: VCheckbox
|
85953
|
-
VCheckboxBtn: VCheckboxBtn
|
85954
86043
|
VCarousel: VCarousel
|
85955
86044
|
VCarouselItem: VCarouselItem
|
85956
|
-
|
85957
|
-
|
85958
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
85959
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
85960
|
-
VChipGroup: VChipGroup
|
85961
|
-
VBtnToggle: VBtnToggle
|
86045
|
+
VCheckbox: VCheckbox
|
86046
|
+
VCheckboxBtn: VCheckboxBtn
|
85962
86047
|
VChip: VChip
|
86048
|
+
VChipGroup: VChipGroup
|
86049
|
+
VCode: VCode
|
86050
|
+
VColorPicker: VColorPicker
|
86051
|
+
VCombobox: VCombobox
|
85963
86052
|
VDataTable: VDataTable
|
85964
86053
|
VDataTableHeaders: VDataTableHeaders
|
85965
86054
|
VDataTableFooter: VDataTableFooter
|
@@ -85967,38 +86056,37 @@ declare module 'vue' {
|
|
85967
86056
|
VDataTableRow: VDataTableRow
|
85968
86057
|
VDataTableVirtual: VDataTableVirtual
|
85969
86058
|
VDataTableServer: VDataTableServer
|
85970
|
-
VCombobox: VCombobox
|
85971
|
-
VColorPicker: VColorPicker
|
85972
|
-
VDialog: VDialog
|
85973
86059
|
VCounter: VCounter
|
86060
|
+
VDialog: VDialog
|
86061
|
+
VDivider: VDivider
|
85974
86062
|
VDatePicker: VDatePicker
|
85975
86063
|
VDatePickerControls: VDatePickerControls
|
85976
86064
|
VDatePickerHeader: VDatePickerHeader
|
85977
86065
|
VDatePickerMonth: VDatePickerMonth
|
85978
86066
|
VDatePickerMonths: VDatePickerMonths
|
85979
86067
|
VDatePickerYears: VDatePickerYears
|
86068
|
+
VEmptyState: VEmptyState
|
85980
86069
|
VExpansionPanels: VExpansionPanels
|
85981
86070
|
VExpansionPanel: VExpansionPanel
|
85982
86071
|
VExpansionPanelText: VExpansionPanelText
|
85983
86072
|
VExpansionPanelTitle: VExpansionPanelTitle
|
85984
|
-
|
85985
|
-
VEmptyState: VEmptyState
|
85986
|
-
VFooter: VFooter
|
86073
|
+
VFileInput: VFileInput
|
85987
86074
|
VFab: VFab
|
86075
|
+
VFooter: VFooter
|
85988
86076
|
VField: VField
|
85989
86077
|
VFieldLabel: VFieldLabel
|
85990
|
-
VFileInput: VFileInput
|
85991
86078
|
VIcon: VIcon
|
85992
86079
|
VComponentIcon: VComponentIcon
|
85993
86080
|
VSvgIcon: VSvgIcon
|
85994
86081
|
VLigatureIcon: VLigatureIcon
|
85995
86082
|
VClassIcon: VClassIcon
|
85996
|
-
VItemGroup: VItemGroup
|
85997
|
-
VItem: VItem
|
85998
86083
|
VImg: VImg
|
85999
|
-
VInfiniteScroll: VInfiniteScroll
|
86000
86084
|
VInput: VInput
|
86085
|
+
VInfiniteScroll: VInfiniteScroll
|
86001
86086
|
VKbd: VKbd
|
86087
|
+
VItemGroup: VItemGroup
|
86088
|
+
VItem: VItem
|
86089
|
+
VLabel: VLabel
|
86002
86090
|
VList: VList
|
86003
86091
|
VListGroup: VListGroup
|
86004
86092
|
VListImg: VListImg
|
@@ -86010,26 +86098,21 @@ declare module 'vue' {
|
|
86010
86098
|
VListSubheader: VListSubheader
|
86011
86099
|
VMessages: VMessages
|
86012
86100
|
VMain: VMain
|
86013
|
-
VLabel: VLabel
|
86014
86101
|
VMenu: VMenu
|
86015
86102
|
VNumberInput: VNumberInput
|
86016
86103
|
VOverlay: VOverlay
|
86017
|
-
VOtpInput: VOtpInput
|
86018
86104
|
VNavigationDrawer: VNavigationDrawer
|
86105
|
+
VOtpInput: VOtpInput
|
86019
86106
|
VPagination: VPagination
|
86020
|
-
VProgressLinear: VProgressLinear
|
86021
|
-
VAvatar: VAvatar
|
86022
86107
|
VProgressCircular: VProgressCircular
|
86023
|
-
VRating: VRating
|
86024
|
-
VSelect: VSelect
|
86025
86108
|
VRadioGroup: VRadioGroup
|
86026
|
-
|
86027
|
-
VSlideGroup: VSlideGroup
|
86028
|
-
VSlideGroupItem: VSlideGroupItem
|
86109
|
+
VProgressLinear: VProgressLinear
|
86029
86110
|
VSheet: VSheet
|
86030
86111
|
VSelectionControl: VSelectionControl
|
86031
|
-
|
86112
|
+
VSlideGroup: VSlideGroup
|
86113
|
+
VSlideGroupItem: VSlideGroupItem
|
86032
86114
|
VSkeletonLoader: VSkeletonLoader
|
86115
|
+
VSnackbar: VSnackbar
|
86033
86116
|
VSlider: VSlider
|
86034
86117
|
VStepper: VStepper
|
86035
86118
|
VStepperActions: VStepperActions
|
@@ -86037,46 +86120,46 @@ declare module 'vue' {
|
|
86037
86120
|
VStepperItem: VStepperItem
|
86038
86121
|
VStepperWindow: VStepperWindow
|
86039
86122
|
VStepperWindowItem: VStepperWindowItem
|
86123
|
+
VSwitch: VSwitch
|
86124
|
+
VSelectionControlGroup: VSelectionControlGroup
|
86040
86125
|
VSystemBar: VSystemBar
|
86041
|
-
|
86042
|
-
|
86043
|
-
VTabsWindow: VTabsWindow
|
86044
|
-
VTabsWindowItem: VTabsWindowItem
|
86126
|
+
VSelect: VSelect
|
86127
|
+
VTextField: VTextField
|
86045
86128
|
VTable: VTable
|
86046
|
-
|
86129
|
+
VTooltip: VTooltip
|
86047
86130
|
VTimeline: VTimeline
|
86048
86131
|
VTimelineItem: VTimelineItem
|
86132
|
+
VWindow: VWindow
|
86133
|
+
VWindowItem: VWindowItem
|
86049
86134
|
VToolbar: VToolbar
|
86050
86135
|
VToolbarTitle: VToolbarTitle
|
86051
86136
|
VToolbarItems: VToolbarItems
|
86052
86137
|
VTextarea: VTextarea
|
86053
|
-
|
86054
|
-
|
86055
|
-
|
86056
|
-
|
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
86144
|
VContainer: VContainer
|
86062
86145
|
VCol: VCol
|
86063
86146
|
VRow: VRow
|
86064
86147
|
VSpacer: VSpacer
|
86065
86148
|
VHover: VHover
|
86149
|
+
VForm: VForm
|
86066
86150
|
VLayout: VLayout
|
86067
86151
|
VLayoutItem: VLayoutItem
|
86068
|
-
VLocaleProvider: VLocaleProvider
|
86069
86152
|
VNoSsr: VNoSsr
|
86070
|
-
|
86153
|
+
VLazy: VLazy
|
86071
86154
|
VRadio: VRadio
|
86155
|
+
VParallax: VParallax
|
86072
86156
|
VRangeSlider: VRangeSlider
|
86073
86157
|
VResponsive: VResponsive
|
86158
|
+
VSpeedDial: VSpeedDial
|
86074
86159
|
VSnackbarQueue: VSnackbarQueue
|
86075
86160
|
VSparkline: VSparkline
|
86076
|
-
VSpeedDial: VSpeedDial
|
86077
86161
|
VThemeProvider: VThemeProvider
|
86078
86162
|
VValidation: VValidation
|
86079
|
-
VVirtualScroll: VVirtualScroll
|
86080
86163
|
VFabTransition: VFabTransition
|
86081
86164
|
VDialogBottomTransition: VDialogBottomTransition
|
86082
86165
|
VDialogTopTransition: VDialogTopTransition
|
@@ -86093,19 +86176,21 @@ declare module 'vue' {
|
|
86093
86176
|
VExpandTransition: VExpandTransition
|
86094
86177
|
VExpandXTransition: VExpandXTransition
|
86095
86178
|
VDialogTransition: VDialogTransition
|
86096
|
-
|
86179
|
+
VVirtualScroll: VVirtualScroll
|
86180
|
+
VLocaleProvider: VLocaleProvider
|
86181
|
+
VConfirmEdit: VConfirmEdit
|
86182
|
+
VRating: VRating
|
86183
|
+
VColorInput: VColorInput
|
86184
|
+
VFileUpload: VFileUpload
|
86185
|
+
VFileUploadItem: VFileUploadItem
|
86097
86186
|
VCalendar: VCalendar
|
86098
86187
|
VCalendarDay: VCalendarDay
|
86099
86188
|
VCalendarHeader: VCalendarHeader
|
86100
86189
|
VCalendarInterval: VCalendarInterval
|
86101
86190
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
86102
86191
|
VCalendarMonthDay: VCalendarMonthDay
|
86103
|
-
VFileUpload: VFileUpload
|
86104
|
-
VFileUploadItem: VFileUploadItem
|
86105
86192
|
VPicker: VPicker
|
86106
86193
|
VPickerTitle: VPickerTitle
|
86107
|
-
VColorInput: VColorInput
|
86108
|
-
VIconBtn: VIconBtn
|
86109
86194
|
VStepperVertical: VStepperVertical
|
86110
86195
|
VStepperVerticalItem: VStepperVerticalItem
|
86111
86196
|
VStepperVerticalActions: VStepperVerticalActions
|
@@ -86115,7 +86200,8 @@ declare module 'vue' {
|
|
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
|
}
|