@vuetify/nightly 3.8.3-master.2025-04-29 → 3.8.3-master.2025-05-01
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -3
- package/dist/json/attributes.json +1686 -1682
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +128 -128
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +3486 -3476
- package/dist/vuetify-labs.cjs +47 -24
- package/dist/vuetify-labs.css +3884 -3888
- package/dist/vuetify-labs.d.ts +4043 -859
- package/dist/vuetify-labs.esm.js +47 -24
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +47 -24
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +20 -17
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2938 -2942
- package/dist/vuetify.d.ts +4021 -857
- package/dist/vuetify.esm.js +20 -17
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +20 -17
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +792 -74
- package/lib/components/VBadge/VBadge.d.ts +22 -46
- package/lib/components/VBottomSheet/VBottomSheet.d.ts +1434 -80
- package/lib/components/VCombobox/VCombobox.d.ts +792 -74
- package/lib/components/VCounter/VCounter.d.ts +22 -46
- package/lib/components/VDataIterator/VDataIterator.d.ts +22 -46
- package/lib/components/VDataTable/composables/select.js +1 -1
- package/lib/components/VDataTable/composables/select.js.map +1 -1
- package/lib/components/VDialog/VDialog.d.ts +1048 -146
- package/lib/components/VDialog/VDialog.js.map +1 -1
- package/lib/components/VFab/VFab.d.ts +22 -46
- package/lib/components/VImg/VImg.d.ts +22 -49
- package/lib/components/VLazy/VLazy.d.ts +22 -46
- package/lib/components/VMenu/VMenu.d.ts +1048 -146
- package/lib/components/VMenu/VMenu.js.map +1 -1
- package/lib/components/VMessages/VMessages.d.ts +22 -46
- package/lib/components/VOverlay/VOverlay.d.ts +22 -49
- package/lib/components/VSelect/VSelect.d.ts +1232 -90
- package/lib/components/VSnackbar/VSnackbar.d.ts +58 -109
- package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +22 -46
- package/lib/components/VSpeedDial/VSpeedDial.d.ts +1434 -80
- package/lib/components/VTable/VTable.css +2 -6
- package/lib/components/VTable/VTable.sass +4 -22
- package/lib/components/VTooltip/VTooltip.d.ts +58 -109
- package/lib/components/VTooltip/VTooltip.js +2 -2
- package/lib/components/VTooltip/VTooltip.js.map +1 -1
- package/lib/composables/transition.d.ts +10 -20
- package/lib/composables/transition.js +15 -12
- package/lib/composables/transition.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +93 -132
- package/lib/framework.js +1 -1
- package/lib/labs/VDateInput/VDateInput.d.ts +41 -4
- package/lib/labs/VDateInput/VDateInput.js +27 -7
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/package.json +1 -1
@@ -26,43 +26,31 @@ export declare const makeVBadgeProps: <Defaults extends {
|
|
26
26
|
offsetY?: unknown;
|
27
27
|
textColor?: unknown;
|
28
28
|
} = {}>(defaults?: Defaults | undefined) => {
|
29
|
-
transition: unknown extends Defaults["transition"] ?
|
29
|
+
transition: unknown extends Defaults["transition"] ? {
|
30
30
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
31
31
|
component?: import("vue").Component;
|
32
|
-
})>;
|
33
|
-
default: string;
|
34
|
-
validator: (val: unknown) => boolean;
|
35
|
-
}, "type" | "default"> & {
|
36
|
-
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
37
|
-
component?: import("vue").Component;
|
38
|
-
})>;
|
32
|
+
}) | null>;
|
39
33
|
default: NonNullable<string | boolean | (import("vue").TransitionProps & {
|
40
34
|
component?: import("vue").Component;
|
41
|
-
})>;
|
42
|
-
} : Omit<
|
43
|
-
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
44
|
-
component?: import("vue").Component;
|
45
|
-
})>;
|
46
|
-
default: string;
|
47
|
-
validator: (val: unknown) => boolean;
|
48
|
-
}, "type" | "default"> & {
|
35
|
+
}) | null>;
|
36
|
+
} : Omit<{
|
49
37
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
50
38
|
component?: import("vue").Component;
|
51
|
-
})>;
|
39
|
+
}) | null>;
|
52
40
|
default: NonNullable<string | boolean | (import("vue").TransitionProps & {
|
53
41
|
component?: import("vue").Component;
|
54
|
-
})>;
|
42
|
+
}) | null>;
|
55
43
|
}, "type" | "default"> & {
|
56
44
|
type: import("vue").PropType<unknown extends Defaults["transition"] ? string | boolean | (import("vue").TransitionProps & {
|
57
45
|
component?: import("vue").Component;
|
58
|
-
}) : string | boolean | (import("vue").TransitionProps & {
|
46
|
+
}) | null : string | boolean | (import("vue").TransitionProps & {
|
59
47
|
component?: import("vue").Component;
|
60
|
-
}) | Defaults["transition"]>;
|
48
|
+
}) | Defaults["transition"] | null>;
|
61
49
|
default: unknown extends Defaults["transition"] ? string | boolean | (import("vue").TransitionProps & {
|
62
50
|
component?: import("vue").Component;
|
63
|
-
}) : NonNullable<string | boolean | (import("vue").TransitionProps & {
|
51
|
+
}) | null : NonNullable<string | boolean | (import("vue").TransitionProps & {
|
64
52
|
component?: import("vue").Component;
|
65
|
-
})> | Defaults["transition"];
|
53
|
+
}) | null> | Defaults["transition"];
|
66
54
|
};
|
67
55
|
theme: unknown extends Defaults["theme"] ? StringConstructor : {
|
68
56
|
type: import("vue").PropType<unknown extends Defaults["theme"] ? string : string | Defaults["theme"]>;
|
@@ -187,7 +175,7 @@ export declare const VBadge: {
|
|
187
175
|
location: import("../../util/index.js").Anchor | null;
|
188
176
|
transition: string | boolean | (import("vue").TransitionProps & {
|
189
177
|
component?: import("vue").Component;
|
190
|
-
});
|
178
|
+
}) | null;
|
191
179
|
label: string;
|
192
180
|
style: import("vue").StyleValue;
|
193
181
|
tag: string | import("../../util/index.js").JSXComponent;
|
@@ -224,7 +212,7 @@ export declare const VBadge: {
|
|
224
212
|
location: import("../../util/index.js").Anchor | null;
|
225
213
|
transition: string | boolean | (import("vue").TransitionProps & {
|
226
214
|
component?: import("vue").Component;
|
227
|
-
});
|
215
|
+
}) | null;
|
228
216
|
label: string;
|
229
217
|
style: import("vue").StyleValue;
|
230
218
|
tag: string | import("../../util/index.js").JSXComponent;
|
@@ -249,7 +237,7 @@ export declare const VBadge: {
|
|
249
237
|
location: import("../../util/index.js").Anchor | null;
|
250
238
|
transition: string | boolean | (import("vue").TransitionProps & {
|
251
239
|
component?: import("vue").Component;
|
252
|
-
});
|
240
|
+
}) | null;
|
253
241
|
label: string;
|
254
242
|
style: import("vue").StyleValue;
|
255
243
|
tag: string | import("../../util/index.js").JSXComponent;
|
@@ -286,7 +274,7 @@ export declare const VBadge: {
|
|
286
274
|
location: import("../../util/index.js").Anchor | null;
|
287
275
|
transition: string | boolean | (import("vue").TransitionProps & {
|
288
276
|
component?: import("vue").Component;
|
289
|
-
});
|
277
|
+
}) | null;
|
290
278
|
label: string;
|
291
279
|
style: import("vue").StyleValue;
|
292
280
|
tag: string | import("../../util/index.js").JSXComponent;
|
@@ -305,7 +293,7 @@ export declare const VBadge: {
|
|
305
293
|
location: import("../../util/index.js").Anchor | null;
|
306
294
|
transition: string | boolean | (import("vue").TransitionProps & {
|
307
295
|
component?: import("vue").Component;
|
308
|
-
});
|
296
|
+
}) | null;
|
309
297
|
label: string;
|
310
298
|
style: import("vue").StyleValue;
|
311
299
|
tag: string | import("../../util/index.js").JSXComponent;
|
@@ -342,7 +330,7 @@ export declare const VBadge: {
|
|
342
330
|
location: import("../../util/index.js").Anchor | null;
|
343
331
|
transition: string | boolean | (import("vue").TransitionProps & {
|
344
332
|
component?: import("vue").Component;
|
345
|
-
});
|
333
|
+
}) | null;
|
346
334
|
label: string;
|
347
335
|
style: import("vue").StyleValue;
|
348
336
|
tag: string | import("../../util/index.js").JSXComponent;
|
@@ -356,19 +344,13 @@ export declare const VBadge: {
|
|
356
344
|
default: () => import("vue").VNode[];
|
357
345
|
badge: () => import("vue").VNode[];
|
358
346
|
}>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
|
359
|
-
transition:
|
347
|
+
transition: {
|
360
348
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
361
349
|
component?: import("vue").Component;
|
362
|
-
})>;
|
363
|
-
default: string;
|
364
|
-
validator: (val: unknown) => boolean;
|
365
|
-
}, "type" | "default"> & {
|
366
|
-
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
367
|
-
component?: import("vue").Component;
|
368
|
-
})>;
|
350
|
+
}) | null>;
|
369
351
|
default: NonNullable<string | boolean | (import("vue").TransitionProps & {
|
370
352
|
component?: import("vue").Component;
|
371
|
-
})>;
|
353
|
+
}) | null>;
|
372
354
|
};
|
373
355
|
theme: StringConstructor;
|
374
356
|
tag: {
|
@@ -409,19 +391,13 @@ export declare const VBadge: {
|
|
409
391
|
offsetY: (StringConstructor | NumberConstructor)[];
|
410
392
|
textColor: StringConstructor;
|
411
393
|
}, import("vue").ExtractPropTypes<{
|
412
|
-
transition:
|
413
|
-
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
414
|
-
component?: import("vue").Component;
|
415
|
-
})>;
|
416
|
-
default: string;
|
417
|
-
validator: (val: unknown) => boolean;
|
418
|
-
}, "type" | "default"> & {
|
394
|
+
transition: {
|
419
395
|
type: import("vue").PropType<string | boolean | (import("vue").TransitionProps & {
|
420
396
|
component?: import("vue").Component;
|
421
|
-
})>;
|
397
|
+
}) | null>;
|
422
398
|
default: NonNullable<string | boolean | (import("vue").TransitionProps & {
|
423
399
|
component?: import("vue").Component;
|
424
|
-
})>;
|
400
|
+
}) | null>;
|
425
401
|
};
|
426
402
|
theme: StringConstructor;
|
427
403
|
tag: {
|