@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.
Files changed (60) hide show
  1. package/CHANGELOG.md +24 -3
  2. package/dist/json/attributes.json +1686 -1682
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +128 -128
  5. package/dist/json/tags.json +1 -0
  6. package/dist/json/web-types.json +3486 -3476
  7. package/dist/vuetify-labs.cjs +47 -24
  8. package/dist/vuetify-labs.css +3884 -3888
  9. package/dist/vuetify-labs.d.ts +4043 -859
  10. package/dist/vuetify-labs.esm.js +47 -24
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +47 -24
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +20 -17
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +2938 -2942
  17. package/dist/vuetify.d.ts +4021 -857
  18. package/dist/vuetify.esm.js +20 -17
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +20 -17
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +10 -10
  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/VCombobox/VCombobox.d.ts +792 -74
  29. package/lib/components/VCounter/VCounter.d.ts +22 -46
  30. package/lib/components/VDataIterator/VDataIterator.d.ts +22 -46
  31. package/lib/components/VDataTable/composables/select.js +1 -1
  32. package/lib/components/VDataTable/composables/select.js.map +1 -1
  33. package/lib/components/VDialog/VDialog.d.ts +1048 -146
  34. package/lib/components/VDialog/VDialog.js.map +1 -1
  35. package/lib/components/VFab/VFab.d.ts +22 -46
  36. package/lib/components/VImg/VImg.d.ts +22 -49
  37. package/lib/components/VLazy/VLazy.d.ts +22 -46
  38. package/lib/components/VMenu/VMenu.d.ts +1048 -146
  39. package/lib/components/VMenu/VMenu.js.map +1 -1
  40. package/lib/components/VMessages/VMessages.d.ts +22 -46
  41. package/lib/components/VOverlay/VOverlay.d.ts +22 -49
  42. package/lib/components/VSelect/VSelect.d.ts +1232 -90
  43. package/lib/components/VSnackbar/VSnackbar.d.ts +58 -109
  44. package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +22 -46
  45. package/lib/components/VSpeedDial/VSpeedDial.d.ts +1434 -80
  46. package/lib/components/VTable/VTable.css +2 -6
  47. package/lib/components/VTable/VTable.sass +4 -22
  48. package/lib/components/VTooltip/VTooltip.d.ts +58 -109
  49. package/lib/components/VTooltip/VTooltip.js +2 -2
  50. package/lib/components/VTooltip/VTooltip.js.map +1 -1
  51. package/lib/composables/transition.d.ts +10 -20
  52. package/lib/composables/transition.js +15 -12
  53. package/lib/composables/transition.js.map +1 -1
  54. package/lib/entry-bundler.js +1 -1
  55. package/lib/framework.d.ts +93 -132
  56. package/lib/framework.js +1 -1
  57. package/lib/labs/VDateInput/VDateInput.d.ts +41 -4
  58. package/lib/labs/VDateInput/VDateInput.js +27 -7
  59. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  60. package/package.json +1 -1
@@ -146,43 +146,31 @@ export declare const makeVSnackbarQueueProps: <Defaults extends {
146
146
  type: PropType<unknown extends Defaults["position"] ? "fixed" | "absolute" | "relative" | "static" | "sticky" : "fixed" | "absolute" | "relative" | "static" | "sticky" | Defaults["position"]>;
147
147
  default: unknown extends Defaults["position"] ? "fixed" | "absolute" | "relative" | "static" | "sticky" : NonNullable<"fixed" | "absolute" | "relative" | "static" | "sticky"> | Defaults["position"];
148
148
  };
149
- transition: unknown extends Defaults["transition"] ? Omit<{
149
+ transition: unknown extends Defaults["transition"] ? {
150
150
  type: PropType<string | boolean | (import("vue").TransitionProps & {
151
151
  component?: import("vue").Component;
152
- })>;
153
- default: string;
154
- validator: (val: unknown) => boolean;
155
- }, "type" | "default"> & {
156
- type: PropType<string | boolean | (import("vue").TransitionProps & {
157
- component?: import("vue").Component;
158
- })>;
152
+ }) | null>;
159
153
  default: NonNullable<string | boolean | (import("vue").TransitionProps & {
160
154
  component?: import("vue").Component;
161
- })>;
162
- } : Omit<Omit<{
163
- type: PropType<string | boolean | (import("vue").TransitionProps & {
164
- component?: import("vue").Component;
165
- })>;
166
- default: string;
167
- validator: (val: unknown) => boolean;
168
- }, "type" | "default"> & {
155
+ }) | null>;
156
+ } : Omit<{
169
157
  type: PropType<string | boolean | (import("vue").TransitionProps & {
170
158
  component?: import("vue").Component;
171
- })>;
159
+ }) | null>;
172
160
  default: NonNullable<string | boolean | (import("vue").TransitionProps & {
173
161
  component?: import("vue").Component;
174
- })>;
162
+ }) | null>;
175
163
  }, "type" | "default"> & {
176
164
  type: PropType<unknown extends Defaults["transition"] ? string | boolean | (import("vue").TransitionProps & {
177
165
  component?: import("vue").Component;
178
- }) : string | boolean | (import("vue").TransitionProps & {
166
+ }) | null : string | boolean | (import("vue").TransitionProps & {
179
167
  component?: import("vue").Component;
180
- }) | Defaults["transition"]>;
168
+ }) | Defaults["transition"] | null>;
181
169
  default: unknown extends Defaults["transition"] ? string | boolean | (import("vue").TransitionProps & {
182
170
  component?: import("vue").Component;
183
- }) : NonNullable<string | boolean | (import("vue").TransitionProps & {
171
+ }) | null : NonNullable<string | boolean | (import("vue").TransitionProps & {
184
172
  component?: import("vue").Component;
185
- })> | Defaults["transition"];
173
+ }) | null> | Defaults["transition"];
186
174
  };
187
175
  zIndex: unknown extends Defaults["zIndex"] ? {
188
176
  type: (StringConstructor | NumberConstructor)[];
@@ -385,7 +373,7 @@ export declare const VSnackbarQueue: {
385
373
  origin: "auto" | import("../../util/index.js").Anchor | "overlap";
386
374
  transition: string | boolean | (import("vue").TransitionProps & {
387
375
  component?: import("vue").Component;
388
- });
376
+ }) | null;
389
377
  zIndex: string | number;
390
378
  style: import("vue").StyleValue;
391
379
  eager: boolean;
@@ -436,7 +424,7 @@ export declare const VSnackbarQueue: {
436
424
  origin: "auto" | import("../../util/index.js").Anchor | "overlap";
437
425
  transition: string | boolean | (import("vue").TransitionProps & {
438
426
  component?: import("vue").Component;
439
- });
427
+ }) | null;
440
428
  zIndex: string | number;
441
429
  style: import("vue").StyleValue;
442
430
  eager: boolean;
@@ -482,7 +470,7 @@ export declare const VSnackbarQueue: {
482
470
  origin: "auto" | import("../../util/index.js").Anchor | "overlap";
483
471
  transition: string | boolean | (import("vue").TransitionProps & {
484
472
  component?: import("vue").Component;
485
- });
473
+ }) | null;
486
474
  zIndex: string | number;
487
475
  style: import("vue").StyleValue;
488
476
  eager: boolean;
@@ -531,7 +519,7 @@ export declare const VSnackbarQueue: {
531
519
  origin: "auto" | import("../../util/index.js").Anchor | "overlap";
532
520
  transition: string | boolean | (import("vue").TransitionProps & {
533
521
  component?: import("vue").Component;
534
- });
522
+ }) | null;
535
523
  zIndex: string | number;
536
524
  style: import("vue").StyleValue;
537
525
  eager: boolean;
@@ -561,7 +549,7 @@ export declare const VSnackbarQueue: {
561
549
  origin: "auto" | import("../../util/index.js").Anchor | "overlap";
562
550
  transition: string | boolean | (import("vue").TransitionProps & {
563
551
  component?: import("vue").Component;
564
- });
552
+ }) | null;
565
553
  zIndex: string | number;
566
554
  style: import("vue").StyleValue;
567
555
  eager: boolean;
@@ -612,7 +600,7 @@ export declare const VSnackbarQueue: {
612
600
  origin: "auto" | import("../../util/index.js").Anchor | "overlap";
613
601
  transition: string | boolean | (import("vue").TransitionProps & {
614
602
  component?: import("vue").Component;
615
- });
603
+ }) | null;
616
604
  zIndex: string | number;
617
605
  style: import("vue").StyleValue;
618
606
  eager: boolean;
@@ -675,19 +663,13 @@ export declare const VSnackbarQueue: {
675
663
  type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
676
664
  validator: (v: any) => boolean;
677
665
  };
678
- transition: Omit<{
666
+ transition: {
679
667
  type: PropType<string | boolean | (import("vue").TransitionProps & {
680
668
  component?: import("vue").Component;
681
- })>;
682
- default: string;
683
- validator: (val: unknown) => boolean;
684
- }, "type" | "default"> & {
685
- type: PropType<string | boolean | (import("vue").TransitionProps & {
686
- component?: import("vue").Component;
687
- })>;
669
+ }) | null>;
688
670
  default: NonNullable<string | boolean | (import("vue").TransitionProps & {
689
671
  component?: import("vue").Component;
690
- })>;
672
+ }) | null>;
691
673
  };
692
674
  zIndex: {
693
675
  type: (StringConstructor | NumberConstructor)[];
@@ -782,19 +764,13 @@ export declare const VSnackbarQueue: {
782
764
  type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
783
765
  validator: (v: any) => boolean;
784
766
  };
785
- transition: Omit<{
786
- type: PropType<string | boolean | (import("vue").TransitionProps & {
787
- component?: import("vue").Component;
788
- })>;
789
- default: string;
790
- validator: (val: unknown) => boolean;
791
- }, "type" | "default"> & {
767
+ transition: {
792
768
  type: PropType<string | boolean | (import("vue").TransitionProps & {
793
769
  component?: import("vue").Component;
794
- })>;
770
+ }) | null>;
795
771
  default: NonNullable<string | boolean | (import("vue").TransitionProps & {
796
772
  component?: import("vue").Component;
797
- })>;
773
+ }) | null>;
798
774
  };
799
775
  zIndex: {
800
776
  type: (StringConstructor | NumberConstructor)[];