vuetify 3.10.6 → 3.10.7

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 (43) hide show
  1. package/dist/json/attributes.json +1705 -1705
  2. package/dist/json/importMap-labs.json +22 -22
  3. package/dist/json/importMap.json +164 -164
  4. package/dist/json/web-types.json +3230 -3230
  5. package/dist/vuetify-labs.cjs +28 -26
  6. package/dist/vuetify-labs.css +4841 -4841
  7. package/dist/vuetify-labs.d.ts +58 -58
  8. package/dist/vuetify-labs.esm.js +28 -26
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +28 -26
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.cjs +28 -26
  13. package/dist/vuetify.cjs.map +1 -1
  14. package/dist/vuetify.css +3692 -3692
  15. package/dist/vuetify.d.ts +58 -58
  16. package/dist/vuetify.esm.js +28 -26
  17. package/dist/vuetify.esm.js.map +1 -1
  18. package/dist/vuetify.js +28 -26
  19. package/dist/vuetify.js.map +1 -1
  20. package/dist/vuetify.min.css +2 -2
  21. package/dist/vuetify.min.js +19 -19
  22. package/dist/vuetify.min.js.map +1 -1
  23. package/lib/components/VAutocomplete/VAutocomplete.js +2 -1
  24. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  25. package/lib/components/VCombobox/VCombobox.js +3 -2
  26. package/lib/components/VCombobox/VCombobox.js.map +1 -1
  27. package/lib/components/VFileInput/VFileInput.js +3 -2
  28. package/lib/components/VFileInput/VFileInput.js.map +1 -1
  29. package/lib/components/VMenu/VMenu.js +1 -1
  30. package/lib/components/VMenu/VMenu.js.map +1 -1
  31. package/lib/components/VSelect/VSelect.js +2 -1
  32. package/lib/components/VSelect/VSelect.js.map +1 -1
  33. package/lib/components/VTextField/VTextField.js +3 -2
  34. package/lib/components/VTextField/VTextField.js.map +1 -1
  35. package/lib/components/VTextarea/VTextarea.d.ts +3 -3
  36. package/lib/components/VTextarea/VTextarea.js +3 -2
  37. package/lib/components/VTextarea/VTextarea.js.map +1 -1
  38. package/lib/components/VWindow/VWindow.js +8 -12
  39. package/lib/components/VWindow/VWindow.js.map +1 -1
  40. package/lib/entry-bundler.js +1 -1
  41. package/lib/framework.d.ts +55 -55
  42. package/lib/framework.js +1 -1
  43. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.10.6
2
+ * Vuetify v3.10.7
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -12099,7 +12099,7 @@
12099
12099
  // It isn't inside the menu body
12100
12100
  !overlay.value.contentEl.contains(after)) {
12101
12101
  if (focusTrapSuppressed) {
12102
- if (!props.openOnHover || !overlay.value.activatorEl?.contains(after)) {
12102
+ if (!props.openOnHover && !overlay.value.activatorEl?.contains(after)) {
12103
12103
  isActive.value = false;
12104
12104
  }
12105
12105
  } else {
@@ -12786,10 +12786,11 @@
12786
12786
  props: {
12787
12787
  class: fieldClass,
12788
12788
  ...slotProps
12789
- }
12789
+ },
12790
+ controlRef
12790
12791
  } = _ref3;
12791
12792
  const inputNode = vue.withDirectives(vue.createElementVNode("input", vue.mergeProps({
12792
- "ref": inputRef,
12793
+ "ref": val => inputRef.value = controlRef.value = val,
12793
12794
  "value": model.value,
12794
12795
  "onInput": onInput,
12795
12796
  "autofocus": props.autofocus,
@@ -13713,7 +13714,8 @@
13713
13714
  "key": item.value,
13714
13715
  "modelValue": isSelected,
13715
13716
  "ripple": false,
13716
- "tabindex": "-1"
13717
+ "tabindex": "-1",
13718
+ "onClick": event => event.preventDefault()
13717
13719
  }, null) : undefined, camelizedProps.prependAvatar && vue.createVNode(VAvatar, {
13718
13720
  "image": camelizedProps.prependAvatar
13719
13721
  }, null), camelizedProps.prependIcon && vue.createVNode(VIcon, {
@@ -14360,7 +14362,8 @@
14360
14362
  "key": item.value,
14361
14363
  "modelValue": isSelected,
14362
14364
  "ripple": false,
14363
- "tabindex": "-1"
14365
+ "tabindex": "-1",
14366
+ "onClick": event => event.preventDefault()
14364
14367
  }, null) : undefined, item.props.prependAvatar && vue.createVNode(VAvatar, {
14365
14368
  "image": item.props.prependAvatar
14366
14369
  }, null), item.props.prependIcon && vue.createVNode(VIcon, {
@@ -15723,15 +15726,13 @@
15723
15726
  vue.watch(activeIndex, (newVal, oldVal) => {
15724
15727
  let scrollableParent;
15725
15728
  const savedScrollPosition = {
15726
- x: 0,
15727
- y: 0
15729
+ left: 0,
15730
+ top: 0
15728
15731
  };
15729
15732
  if (IN_BROWSER && oldVal >= 0) {
15730
15733
  scrollableParent = getScrollParent(rootRef.value);
15731
-
15732
- // Save current scroll position
15733
- savedScrollPosition.x = scrollableParent.scrollLeft;
15734
- savedScrollPosition.y = scrollableParent.scrollTop;
15734
+ savedScrollPosition.left = scrollableParent?.scrollLeft;
15735
+ savedScrollPosition.top = scrollableParent?.scrollTop;
15735
15736
  }
15736
15737
  const itemsLength = group.items.value.length;
15737
15738
  const lastIndex = itemsLength - 1;
@@ -15747,20 +15748,18 @@
15747
15748
  vue.nextTick(() => {
15748
15749
  if (!IN_BROWSER || !scrollableParent) return;
15749
15750
  const currentScrollY = scrollableParent.scrollTop;
15750
- if (currentScrollY !== savedScrollPosition.y) {
15751
+ if (currentScrollY !== savedScrollPosition.top) {
15751
15752
  scrollableParent.scrollTo({
15752
- left: savedScrollPosition.x,
15753
- top: savedScrollPosition.y,
15753
+ ...savedScrollPosition,
15754
15754
  behavior: 'instant'
15755
15755
  });
15756
15756
  }
15757
15757
  requestAnimationFrame(() => {
15758
15758
  if (!scrollableParent) return;
15759
15759
  const rafScrollY = scrollableParent.scrollTop;
15760
- if (rafScrollY !== savedScrollPosition.y) {
15760
+ if (rafScrollY !== savedScrollPosition.top) {
15761
15761
  scrollableParent.scrollTo({
15762
- left: savedScrollPosition.x,
15763
- top: savedScrollPosition.y,
15762
+ ...savedScrollPosition,
15764
15763
  behavior: 'instant'
15765
15764
  });
15766
15765
  }
@@ -19578,9 +19577,9 @@
19578
19577
  }
19579
19578
  function onAfterLeave() {
19580
19579
  if (isFocused.value) {
19581
- isPristine.value = true;
19582
19580
  vTextFieldRef.value?.focus();
19583
19581
  }
19582
+ isPristine.value = true;
19584
19583
  _searchLock.value = null;
19585
19584
  }
19586
19585
  /** @param set - null means toggle */
@@ -19774,7 +19773,8 @@
19774
19773
  "key": item.value,
19775
19774
  "modelValue": isSelected,
19776
19775
  "ripple": false,
19777
- "tabindex": "-1"
19776
+ "tabindex": "-1",
19777
+ "onClick": event => event.preventDefault()
19778
19778
  }, null) : undefined, item.props.prependAvatar && vue.createVNode(VAvatar, {
19779
19779
  "image": item.props.prependAvatar
19780
19780
  }, null), item.props.prependIcon && vue.createVNode(VIcon, {
@@ -25207,10 +25207,11 @@
25207
25207
  props: {
25208
25208
  class: fieldClass,
25209
25209
  ...slotProps
25210
- }
25210
+ },
25211
+ controlRef
25211
25212
  } = _ref4;
25212
25213
  return vue.createElementVNode(vue.Fragment, null, [vue.createElementVNode("input", vue.mergeProps({
25213
- "ref": inputRef,
25214
+ "ref": val => inputRef.value = controlRef.value = val,
25214
25215
  "type": "file",
25215
25216
  "accept": inputAccept,
25216
25217
  "readonly": isReadonly.value,
@@ -30026,12 +30027,13 @@
30026
30027
  props: {
30027
30028
  class: fieldClass,
30028
30029
  ...slotProps
30029
- }
30030
+ },
30031
+ controlRef
30030
30032
  } = _ref3;
30031
30033
  return vue.createElementVNode(vue.Fragment, null, [props.prefix && vue.createElementVNode("span", {
30032
30034
  "class": "v-text-field__prefix"
30033
30035
  }, [props.prefix]), vue.withDirectives(vue.createElementVNode("textarea", vue.mergeProps({
30034
- "ref": textareaRef,
30036
+ "ref": val => textareaRef.value = controlRef.value = val,
30035
30037
  "class": fieldClass,
30036
30038
  "value": model.value,
30037
30039
  "onInput": onInput,
@@ -38013,7 +38015,7 @@
38013
38015
  };
38014
38016
  });
38015
38017
  }
38016
- const version$1 = "3.10.6";
38018
+ const version$1 = "3.10.7";
38017
38019
  createVuetify$1.version = version$1;
38018
38020
 
38019
38021
  // Vue's inject() can only be used in setup
@@ -38311,7 +38313,7 @@
38311
38313
 
38312
38314
  /* eslint-disable local-rules/sort-imports */
38313
38315
 
38314
- const version = "3.10.6";
38316
+ const version = "3.10.7";
38315
38317
 
38316
38318
  /* eslint-disable local-rules/sort-imports */
38317
38319