@vuetify/nightly 3.10.6-dev.2025-10-22 → 3.10.7-dev.2025-10-23

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 (44) hide show
  1. package/CHANGELOG.md +3 -3
  2. package/dist/json/attributes.json +3418 -3418
  3. package/dist/json/importMap-labs.json +32 -32
  4. package/dist/json/importMap.json +156 -156
  5. package/dist/json/web-types.json +6633 -6633
  6. package/dist/vuetify-labs.cjs +28 -26
  7. package/dist/vuetify-labs.css +4200 -4200
  8. package/dist/vuetify-labs.d.ts +59 -59
  9. package/dist/vuetify-labs.esm.js +28 -26
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +28 -26
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.cjs +28 -26
  14. package/dist/vuetify.cjs.map +1 -1
  15. package/dist/vuetify.css +3573 -3573
  16. package/dist/vuetify.d.ts +59 -59
  17. package/dist/vuetify.esm.js +28 -26
  18. package/dist/vuetify.esm.js.map +1 -1
  19. package/dist/vuetify.js +28 -26
  20. package/dist/vuetify.js.map +1 -1
  21. package/dist/vuetify.min.css +2 -2
  22. package/dist/vuetify.min.js +19 -19
  23. package/dist/vuetify.min.js.map +1 -1
  24. package/lib/components/VAutocomplete/VAutocomplete.js +2 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  26. package/lib/components/VCombobox/VCombobox.js +3 -2
  27. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  28. package/lib/components/VFileInput/VFileInput.js +3 -2
  29. package/lib/components/VFileInput/VFileInput.js.map +1 -1
  30. package/lib/components/VMenu/VMenu.js +1 -1
  31. package/lib/components/VMenu/VMenu.js.map +1 -1
  32. package/lib/components/VSelect/VSelect.js +2 -1
  33. package/lib/components/VSelect/VSelect.js.map +1 -1
  34. package/lib/components/VTextField/VTextField.js +3 -2
  35. package/lib/components/VTextField/VTextField.js.map +1 -1
  36. package/lib/components/VTextarea/VTextarea.d.ts +3 -3
  37. package/lib/components/VTextarea/VTextarea.js +3 -2
  38. package/lib/components/VTextarea/VTextarea.js.map +1 -1
  39. package/lib/components/VWindow/VWindow.js +8 -12
  40. package/lib/components/VWindow/VWindow.js.map +1 -1
  41. package/lib/entry-bundler.js +1 -1
  42. package/lib/framework.d.ts +56 -56
  43. package/lib/framework.js +1 -1
  44. package/package.json +1 -1
package/dist/vuetify.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.10.6-dev.2025-10-22
2
+ * Vuetify v3.10.7-dev.2025-10-23
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -12356,7 +12356,7 @@
12356
12356
  // It isn't inside the menu body
12357
12357
  !overlay.value.contentEl.contains(after)) {
12358
12358
  if (focusTrapSuppressed) {
12359
- if (!props.openOnHover || !overlay.value.activatorEl?.contains(after)) {
12359
+ if (!props.openOnHover && !overlay.value.activatorEl?.contains(after)) {
12360
12360
  isActive.value = false;
12361
12361
  }
12362
12362
  } else {
@@ -13043,10 +13043,11 @@
13043
13043
  props: {
13044
13044
  class: fieldClass,
13045
13045
  ...slotProps
13046
- }
13046
+ },
13047
+ controlRef
13047
13048
  } = _ref3;
13048
13049
  const inputNode = vue.withDirectives(vue.createElementVNode("input", vue.mergeProps({
13049
- "ref": inputRef,
13050
+ "ref": val => inputRef.value = controlRef.value = val,
13050
13051
  "value": model.value,
13051
13052
  "onInput": onInput,
13052
13053
  "autofocus": props.autofocus,
@@ -13970,7 +13971,8 @@
13970
13971
  "key": item.value,
13971
13972
  "modelValue": isSelected,
13972
13973
  "ripple": false,
13973
- "tabindex": "-1"
13974
+ "tabindex": "-1",
13975
+ "onClick": event => event.preventDefault()
13974
13976
  }, null) : undefined, camelizedProps.prependAvatar && vue.createVNode(VAvatar, {
13975
13977
  "image": camelizedProps.prependAvatar
13976
13978
  }, null), camelizedProps.prependIcon && vue.createVNode(VIcon, {
@@ -14617,7 +14619,8 @@
14617
14619
  "key": item.value,
14618
14620
  "modelValue": isSelected,
14619
14621
  "ripple": false,
14620
- "tabindex": "-1"
14622
+ "tabindex": "-1",
14623
+ "onClick": event => event.preventDefault()
14621
14624
  }, null) : undefined, item.props.prependAvatar && vue.createVNode(VAvatar, {
14622
14625
  "image": item.props.prependAvatar
14623
14626
  }, null), item.props.prependIcon && vue.createVNode(VIcon, {
@@ -15980,15 +15983,13 @@
15980
15983
  vue.watch(activeIndex, (newVal, oldVal) => {
15981
15984
  let scrollableParent;
15982
15985
  const savedScrollPosition = {
15983
- x: 0,
15984
- y: 0
15986
+ left: 0,
15987
+ top: 0
15985
15988
  };
15986
15989
  if (IN_BROWSER && oldVal >= 0) {
15987
15990
  scrollableParent = getScrollParent(rootRef.value);
15988
-
15989
- // Save current scroll position
15990
- savedScrollPosition.x = scrollableParent.scrollLeft;
15991
- savedScrollPosition.y = scrollableParent.scrollTop;
15991
+ savedScrollPosition.left = scrollableParent?.scrollLeft;
15992
+ savedScrollPosition.top = scrollableParent?.scrollTop;
15992
15993
  }
15993
15994
  const itemsLength = group.items.value.length;
15994
15995
  const lastIndex = itemsLength - 1;
@@ -16004,20 +16005,18 @@
16004
16005
  vue.nextTick(() => {
16005
16006
  if (!IN_BROWSER || !scrollableParent) return;
16006
16007
  const currentScrollY = scrollableParent.scrollTop;
16007
- if (currentScrollY !== savedScrollPosition.y) {
16008
+ if (currentScrollY !== savedScrollPosition.top) {
16008
16009
  scrollableParent.scrollTo({
16009
- left: savedScrollPosition.x,
16010
- top: savedScrollPosition.y,
16010
+ ...savedScrollPosition,
16011
16011
  behavior: 'instant'
16012
16012
  });
16013
16013
  }
16014
16014
  requestAnimationFrame(() => {
16015
16015
  if (!scrollableParent) return;
16016
16016
  const rafScrollY = scrollableParent.scrollTop;
16017
- if (rafScrollY !== savedScrollPosition.y) {
16017
+ if (rafScrollY !== savedScrollPosition.top) {
16018
16018
  scrollableParent.scrollTo({
16019
- left: savedScrollPosition.x,
16020
- top: savedScrollPosition.y,
16019
+ ...savedScrollPosition,
16021
16020
  behavior: 'instant'
16022
16021
  });
16023
16022
  }
@@ -19826,9 +19825,9 @@
19826
19825
  }
19827
19826
  function onAfterLeave() {
19828
19827
  if (isFocused.value) {
19829
- isPristine.value = true;
19830
19828
  vTextFieldRef.value?.focus();
19831
19829
  }
19830
+ isPristine.value = true;
19832
19831
  _searchLock.value = null;
19833
19832
  }
19834
19833
  /** @param set - null means toggle */
@@ -20022,7 +20021,8 @@
20022
20021
  "key": item.value,
20023
20022
  "modelValue": isSelected,
20024
20023
  "ripple": false,
20025
- "tabindex": "-1"
20024
+ "tabindex": "-1",
20025
+ "onClick": event => event.preventDefault()
20026
20026
  }, null) : undefined, item.props.prependAvatar && vue.createVNode(VAvatar, {
20027
20027
  "image": item.props.prependAvatar
20028
20028
  }, null), item.props.prependIcon && vue.createVNode(VIcon, {
@@ -25520,10 +25520,11 @@
25520
25520
  props: {
25521
25521
  class: fieldClass,
25522
25522
  ...slotProps
25523
- }
25523
+ },
25524
+ controlRef
25524
25525
  } = _ref4;
25525
25526
  return vue.createElementVNode(vue.Fragment, null, [vue.createElementVNode("input", vue.mergeProps({
25526
- "ref": inputRef,
25527
+ "ref": val => inputRef.value = controlRef.value = val,
25527
25528
  "type": "file",
25528
25529
  "accept": inputAccept,
25529
25530
  "readonly": isReadonly.value,
@@ -30356,12 +30357,13 @@
30356
30357
  props: {
30357
30358
  class: fieldClass,
30358
30359
  ...slotProps
30359
- }
30360
+ },
30361
+ controlRef
30360
30362
  } = _ref3;
30361
30363
  return vue.createElementVNode(vue.Fragment, null, [props.prefix && vue.createElementVNode("span", {
30362
30364
  "class": "v-text-field__prefix"
30363
30365
  }, [props.prefix]), vue.withDirectives(vue.createElementVNode("textarea", vue.mergeProps({
30364
- "ref": textareaRef,
30366
+ "ref": val => textareaRef.value = controlRef.value = val,
30365
30367
  "class": fieldClass,
30366
30368
  "value": model.value,
30367
30369
  "onInput": onInput,
@@ -32525,7 +32527,7 @@
32525
32527
  };
32526
32528
  });
32527
32529
  }
32528
- const version$1 = "3.10.6-dev.2025-10-22";
32530
+ const version$1 = "3.10.7-dev.2025-10-23";
32529
32531
  createVuetify$1.version = version$1;
32530
32532
 
32531
32533
  // Vue's inject() can only be used in setup
@@ -32550,7 +32552,7 @@
32550
32552
  ...options
32551
32553
  });
32552
32554
  };
32553
- const version = "3.10.6-dev.2025-10-22";
32555
+ const version = "3.10.7-dev.2025-10-23";
32554
32556
  createVuetify.version = version;
32555
32557
 
32556
32558
  exports.blueprints = index;