@vuetify/nightly 3.8.3-master.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 (52) hide show
  1. package/CHANGELOG.md +10 -3
  2. package/dist/json/attributes.json +2916 -2916
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +120 -120
  5. package/dist/json/web-types.json +5199 -5199
  6. package/dist/vuetify-labs.cjs +19 -16
  7. package/dist/vuetify-labs.css +3752 -3752
  8. package/dist/vuetify-labs.d.ts +4023 -859
  9. package/dist/vuetify-labs.esm.js +19 -16
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +19 -16
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +19 -16
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +4587 -4587
  16. package/dist/vuetify.d.ts +4023 -859
  17. package/dist/vuetify.esm.js +19 -16
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +19 -16
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +9 -9
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VAutocomplete/VAutocomplete.d.ts +792 -74
  25. package/lib/components/VBadge/VBadge.d.ts +22 -46
  26. package/lib/components/VBottomSheet/VBottomSheet.d.ts +1434 -80
  27. package/lib/components/VCombobox/VCombobox.d.ts +792 -74
  28. package/lib/components/VCounter/VCounter.d.ts +22 -46
  29. package/lib/components/VDataIterator/VDataIterator.d.ts +22 -46
  30. package/lib/components/VDialog/VDialog.d.ts +1048 -146
  31. package/lib/components/VDialog/VDialog.js.map +1 -1
  32. package/lib/components/VFab/VFab.d.ts +22 -46
  33. package/lib/components/VImg/VImg.d.ts +22 -49
  34. package/lib/components/VLazy/VLazy.d.ts +22 -46
  35. package/lib/components/VMenu/VMenu.d.ts +1048 -146
  36. package/lib/components/VMenu/VMenu.js.map +1 -1
  37. package/lib/components/VMessages/VMessages.d.ts +22 -46
  38. package/lib/components/VOverlay/VOverlay.d.ts +22 -49
  39. package/lib/components/VSelect/VSelect.d.ts +1232 -90
  40. package/lib/components/VSnackbar/VSnackbar.d.ts +58 -109
  41. package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +22 -46
  42. package/lib/components/VSpeedDial/VSpeedDial.d.ts +1434 -80
  43. package/lib/components/VTooltip/VTooltip.d.ts +58 -109
  44. package/lib/components/VTooltip/VTooltip.js +2 -2
  45. package/lib/components/VTooltip/VTooltip.js.map +1 -1
  46. package/lib/composables/transition.d.ts +10 -20
  47. package/lib/composables/transition.js +15 -12
  48. package/lib/composables/transition.js.map +1 -1
  49. package/lib/entry-bundler.js +1 -1
  50. package/lib/framework.d.ts +95 -134
  51. package/lib/framework.js +1 -1
  52. package/package.json +1 -1
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.3-master.2025-04-29
2
+ * Vuetify v3.8.3-master.2025-04-30
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -3741,7 +3741,7 @@
3741
3741
 
3742
3742
  const makeTransitionProps = propsFactory({
3743
3743
  transition: {
3744
- type: [Boolean, String, Object],
3744
+ type: null,
3745
3745
  default: 'fade-transition',
3746
3746
  validator: val => val !== true
3747
3747
  }
@@ -3759,16 +3759,19 @@
3759
3759
  const {
3760
3760
  component = group ? vue.TransitionGroup : vue.Transition,
3761
3761
  ...customProps
3762
- } = typeof transition === 'object' ? transition : {};
3763
- return vue.h(component, vue.mergeProps(typeof transition === 'string' ? {
3764
- name: disabled ? '' : transition
3765
- } : customProps, typeof transition === 'string' ? {} : Object.fromEntries(Object.entries({
3766
- disabled,
3767
- group
3768
- }).filter(_ref2 => {
3769
- let [_, v] = _ref2;
3770
- return v !== undefined;
3771
- })), rest), slots);
3762
+ } = isObject(transition) ? transition : {};
3763
+ let transitionProps;
3764
+ if (isObject(transition)) {
3765
+ transitionProps = vue.mergeProps(customProps, JSON.parse(JSON.stringify({
3766
+ disabled,
3767
+ group
3768
+ })), rest);
3769
+ } else {
3770
+ transitionProps = vue.mergeProps({
3771
+ name: disabled || !transition ? '' : transition
3772
+ }, rest);
3773
+ }
3774
+ return vue.h(component, transitionProps, slots);
3772
3775
  };
3773
3776
 
3774
3777
  // Utilities
@@ -28642,7 +28645,7 @@
28642
28645
  origin: 'auto',
28643
28646
  scrim: false,
28644
28647
  scrollStrategy: 'reposition',
28645
- transition: false
28648
+ transition: null
28646
28649
  }), ['absolute', 'persistent'])
28647
28650
  }, 'VTooltip');
28648
28651
  const VTooltip = genericComponent()({
@@ -28669,7 +28672,7 @@
28669
28672
  return props.origin === 'auto' || props.origin === 'overlap' || props.origin.split(' ').length > 1 || props.location.split(' ').length > 1 ? props.origin : props.origin + ' center';
28670
28673
  });
28671
28674
  const transition = vue.toRef(() => {
28672
- if (props.transition) return props.transition;
28675
+ if (props.transition != null) return props.transition;
28673
28676
  return isActive.value ? 'scale-transition' : 'fade-transition';
28674
28677
  });
28675
28678
  const activatorProps = vue.computed(() => vue.mergeProps({
@@ -29215,7 +29218,7 @@
29215
29218
  };
29216
29219
  });
29217
29220
  }
29218
- const version$1 = "3.8.3-master.2025-04-29";
29221
+ const version$1 = "3.8.3-master.2025-04-30";
29219
29222
  createVuetify$1.version = version$1;
29220
29223
 
29221
29224
  // Vue's inject() can only be used in setup
@@ -29240,7 +29243,7 @@
29240
29243
  ...options
29241
29244
  });
29242
29245
  };
29243
- const version = "3.8.3-master.2025-04-29";
29246
+ const version = "3.8.3-master.2025-04-30";
29244
29247
  createVuetify.version = version;
29245
29248
 
29246
29249
  exports.blueprints = index;