@vuetify/nightly 3.8.3-dev.2025-04-29 → 3.8.3-master.2025-04-30

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.
Files changed (74) hide show
  1. package/CHANGELOG.md +8 -17
  2. package/dist/json/attributes.json +2876 -2884
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +130 -130
  5. package/dist/json/tags.json +0 -2
  6. package/dist/json/web-types.json +5265 -5285
  7. package/dist/vuetify-labs.cjs +47 -124
  8. package/dist/vuetify-labs.css +3531 -3554
  9. package/dist/vuetify-labs.d.ts +4036 -905
  10. package/dist/vuetify-labs.esm.js +48 -125
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +47 -124
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +47 -124
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +5454 -5477
  17. package/dist/vuetify.d.ts +4036 -905
  18. package/dist/vuetify.esm.js +48 -125
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +47 -124
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +1173 -1179
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.d.ts +792 -74
  26. package/lib/components/VBadge/VBadge.d.ts +22 -46
  27. package/lib/components/VBottomSheet/VBottomSheet.d.ts +1434 -80
  28. package/lib/components/VBtnGroup/VBtnGroup.css +7 -30
  29. package/lib/components/VBtnGroup/VBtnGroup.d.ts +32 -58
  30. package/lib/components/VBtnGroup/VBtnGroup.js +3 -7
  31. package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
  32. package/lib/components/VBtnGroup/VBtnGroup.sass +17 -44
  33. package/lib/components/VBtnToggle/VBtnToggle.d.ts +0 -25
  34. package/lib/components/VCombobox/VCombobox.d.ts +792 -74
  35. package/lib/components/VCounter/VCounter.d.ts +22 -46
  36. package/lib/components/VDataIterator/VDataIterator.d.ts +22 -46
  37. package/lib/components/VDialog/VDialog.d.ts +1048 -146
  38. package/lib/components/VDialog/VDialog.js.map +1 -1
  39. package/lib/components/VFab/VFab.d.ts +22 -46
  40. package/lib/components/VImg/VImg.d.ts +22 -49
  41. package/lib/components/VInput/VInput.d.ts +1 -1
  42. package/lib/components/VLazy/VLazy.d.ts +22 -46
  43. package/lib/components/VMenu/VMenu.d.ts +1048 -146
  44. package/lib/components/VMenu/VMenu.js.map +1 -1
  45. package/lib/components/VMessages/VMessages.d.ts +22 -46
  46. package/lib/components/VOverlay/VOverlay.css +1 -1
  47. package/lib/components/VOverlay/VOverlay.d.ts +22 -49
  48. package/lib/components/VOverlay/_variables.scss +1 -1
  49. package/lib/components/VSelect/VSelect.d.ts +1232 -90
  50. package/lib/components/VSnackbar/VSnackbar.d.ts +58 -109
  51. package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +22 -46
  52. package/lib/components/VSpeedDial/VSpeedDial.d.ts +1434 -80
  53. package/lib/components/VTooltip/VTooltip.d.ts +58 -109
  54. package/lib/components/VTooltip/VTooltip.js +2 -2
  55. package/lib/components/VTooltip/VTooltip.js.map +1 -1
  56. package/lib/composables/calendar.d.ts +0 -1
  57. package/lib/composables/calendar.js.map +1 -1
  58. package/lib/composables/theme.d.ts +1 -6
  59. package/lib/composables/theme.js +26 -94
  60. package/lib/composables/theme.js.map +1 -1
  61. package/lib/composables/transition.d.ts +10 -20
  62. package/lib/composables/transition.js +15 -12
  63. package/lib/composables/transition.js.map +1 -1
  64. package/lib/composables/virtual.js +1 -6
  65. package/lib/composables/virtual.js.map +1 -1
  66. package/lib/entry-bundler.js +1 -1
  67. package/lib/entry-bundler.js.map +1 -1
  68. package/lib/framework.d.ts +98 -142
  69. package/lib/framework.js +1 -1
  70. package/lib/framework.js.map +1 -1
  71. package/lib/util/globals.d.ts +0 -1
  72. package/lib/util/globals.js +0 -1
  73. package/lib/util/globals.js.map +1 -1
  74. 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"] ? Omit<{
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<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: Omit<{
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: Omit<{
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: {