@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
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.3-master.2025-04-29
2
+ * Vuetify v3.8.3-master.2025-05-01
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -3737,7 +3737,7 @@ function useRounded(props) {
3737
3737
 
3738
3738
  const makeTransitionProps = propsFactory({
3739
3739
  transition: {
3740
- type: [Boolean, String, Object],
3740
+ type: null,
3741
3741
  default: 'fade-transition',
3742
3742
  validator: val => val !== true
3743
3743
  }
@@ -3755,16 +3755,19 @@ const MaybeTransition = (props, _ref) => {
3755
3755
  const {
3756
3756
  component = group ? TransitionGroup : Transition,
3757
3757
  ...customProps
3758
- } = typeof transition === 'object' ? transition : {};
3759
- return h(component, mergeProps(typeof transition === 'string' ? {
3760
- name: disabled ? '' : transition
3761
- } : customProps, typeof transition === 'string' ? {} : Object.fromEntries(Object.entries({
3762
- disabled,
3763
- group
3764
- }).filter(_ref2 => {
3765
- let [_, v] = _ref2;
3766
- return v !== undefined;
3767
- })), rest), slots);
3758
+ } = isObject(transition) ? transition : {};
3759
+ let transitionProps;
3760
+ if (isObject(transition)) {
3761
+ transitionProps = mergeProps(customProps, JSON.parse(JSON.stringify({
3762
+ disabled,
3763
+ group
3764
+ })), rest);
3765
+ } else {
3766
+ transitionProps = mergeProps({
3767
+ name: disabled || !transition ? '' : transition
3768
+ }, rest);
3769
+ }
3770
+ return h(component, transitionProps, slots);
3768
3771
  };
3769
3772
 
3770
3773
  // Utilities
@@ -19266,7 +19269,7 @@ function provideSelection(props, _ref9) {
19266
19269
  index = index ?? currentPage.value.findIndex(i => i.value === item.value);
19267
19270
  if (props.selectStrategy !== 'single' && event?.shiftKey && lastSelectedIndex.value !== null) {
19268
19271
  const [start, end] = [lastSelectedIndex.value, index].sort((a, b) => a - b);
19269
- items.push(...currentPage.value.slice(start, end + 1));
19272
+ items.push(...currentPage.value.slice(start, end + 1).filter(item => item.selectable));
19270
19273
  } else {
19271
19274
  items.push(item);
19272
19275
  lastSelectedIndex.value = index;
@@ -28638,7 +28641,7 @@ const makeVTooltipProps = propsFactory({
28638
28641
  origin: 'auto',
28639
28642
  scrim: false,
28640
28643
  scrollStrategy: 'reposition',
28641
- transition: false
28644
+ transition: null
28642
28645
  }), ['absolute', 'persistent'])
28643
28646
  }, 'VTooltip');
28644
28647
  const VTooltip = genericComponent()({
@@ -28665,7 +28668,7 @@ const VTooltip = genericComponent()({
28665
28668
  return props.origin === 'auto' || props.origin === 'overlap' || props.origin.split(' ').length > 1 || props.location.split(' ').length > 1 ? props.origin : props.origin + ' center';
28666
28669
  });
28667
28670
  const transition = toRef(() => {
28668
- if (props.transition) return props.transition;
28671
+ if (props.transition != null) return props.transition;
28669
28672
  return isActive.value ? 'scale-transition' : 'fade-transition';
28670
28673
  });
28671
28674
  const activatorProps = computed(() => mergeProps({
@@ -29211,7 +29214,7 @@ function createVuetify$1() {
29211
29214
  };
29212
29215
  });
29213
29216
  }
29214
- const version$1 = "3.8.3-master.2025-04-29";
29217
+ const version$1 = "3.8.3-master.2025-05-01";
29215
29218
  createVuetify$1.version = version$1;
29216
29219
 
29217
29220
  // Vue's inject() can only be used in setup
@@ -29236,7 +29239,7 @@ const createVuetify = function () {
29236
29239
  ...options
29237
29240
  });
29238
29241
  };
29239
- const version = "3.8.3-master.2025-04-29";
29242
+ const version = "3.8.3-master.2025-05-01";
29240
29243
  createVuetify.version = version;
29241
29244
 
29242
29245
  export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };