@vuetify/nightly 3.10.9-dev.2025-11-06 → 3.10.9-dev.2025-11-09
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.
- package/CHANGELOG.md +5 -3
- package/dist/json/attributes.json +1208 -1208
- package/dist/json/importMap-labs.json +14 -14
- package/dist/json/importMap.json +164 -164
- package/dist/json/web-types.json +2146 -2146
- package/dist/vuetify-labs.cjs +31 -13
- package/dist/vuetify-labs.css +4023 -4016
- package/dist/vuetify-labs.d.ts +59 -59
- package/dist/vuetify-labs.esm.js +31 -13
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +31 -13
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +31 -13
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2750 -2743
- package/dist/vuetify.d.ts +59 -59
- package/dist/vuetify.esm.js +31 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +31 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +17 -16
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.js +25 -9
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VInfiniteScroll/VInfiniteScroll.css +7 -0
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js +3 -1
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js.map +1 -1
- package/lib/components/VInfiniteScroll/VInfiniteScroll.sass +10 -0
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +59 -59
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.10.9-dev.2025-11-
|
|
2
|
+
* Vuetify v3.10.9-dev.2025-11-09
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -19797,16 +19797,9 @@
|
|
|
19797
19797
|
vue.nextTick(() => vVirtualScrollRef.value?.scrollToIndex(0));
|
|
19798
19798
|
}
|
|
19799
19799
|
if (val && props.multiple && props.delimiters?.length) {
|
|
19800
|
-
const
|
|
19801
|
-
const values = val.split(new RegExp(`(?:${signsToMatch})+`));
|
|
19800
|
+
const values = splitByDelimiters(val);
|
|
19802
19801
|
if (values.length > 1) {
|
|
19803
|
-
|
|
19804
|
-
v = v.trim();
|
|
19805
|
-
if (v) {
|
|
19806
|
-
select(transformItem$3(props, v));
|
|
19807
|
-
await vue.nextTick();
|
|
19808
|
-
}
|
|
19809
|
-
}
|
|
19802
|
+
selectMultiple(values);
|
|
19810
19803
|
_search.value = '';
|
|
19811
19804
|
}
|
|
19812
19805
|
}
|
|
@@ -19953,6 +19946,14 @@
|
|
|
19953
19946
|
selectionIndex.value = -1;
|
|
19954
19947
|
}
|
|
19955
19948
|
}
|
|
19949
|
+
function onPaste(e) {
|
|
19950
|
+
const clipboardText = e?.clipboardData?.getData('Text') ?? '';
|
|
19951
|
+
const values = splitByDelimiters(clipboardText);
|
|
19952
|
+
if (values.length > 1 && props.multiple) {
|
|
19953
|
+
e.preventDefault();
|
|
19954
|
+
selectMultiple(values);
|
|
19955
|
+
}
|
|
19956
|
+
}
|
|
19956
19957
|
function onAfterEnter() {
|
|
19957
19958
|
if (props.eager) {
|
|
19958
19959
|
vVirtualScrollRef.value?.calculateVisibleItems();
|
|
@@ -19998,6 +19999,20 @@
|
|
|
19998
19999
|
});
|
|
19999
20000
|
}
|
|
20000
20001
|
}
|
|
20002
|
+
function splitByDelimiters(val) {
|
|
20003
|
+
const effectiveDelimiters = ['\n', ...(props.delimiters ?? [])];
|
|
20004
|
+
const signsToMatch = effectiveDelimiters.map(escapeForRegex).join('|');
|
|
20005
|
+
return val.split(new RegExp(`(?:${signsToMatch})+`));
|
|
20006
|
+
}
|
|
20007
|
+
async function selectMultiple(values) {
|
|
20008
|
+
for (let value of values) {
|
|
20009
|
+
value = value.trim();
|
|
20010
|
+
if (value) {
|
|
20011
|
+
select(transformItem$3(props, value));
|
|
20012
|
+
await vue.nextTick();
|
|
20013
|
+
}
|
|
20014
|
+
}
|
|
20015
|
+
}
|
|
20001
20016
|
function onFocusin(e) {
|
|
20002
20017
|
isFocused.value = true;
|
|
20003
20018
|
setTimeout(() => {
|
|
@@ -20071,6 +20086,7 @@
|
|
|
20071
20086
|
"onClick:clear": onClear,
|
|
20072
20087
|
"onMousedown:control": onMousedownControl,
|
|
20073
20088
|
"onKeydown": onKeydown,
|
|
20089
|
+
"onPaste": onPaste,
|
|
20074
20090
|
"aria-expanded": ariaExpanded.value,
|
|
20075
20091
|
"aria-controls": ariaControls.value
|
|
20076
20092
|
}), {
|
|
@@ -26147,7 +26163,9 @@
|
|
|
26147
26163
|
const effectiveSide = side ?? props.side;
|
|
26148
26164
|
setStatus(effectiveSide, 'ok');
|
|
26149
26165
|
vue.nextTick(() => {
|
|
26150
|
-
|
|
26166
|
+
if (effectiveSide !== 'end') {
|
|
26167
|
+
setScrollAmount(getScrollSize() - previousScrollSize + getScrollAmount());
|
|
26168
|
+
}
|
|
26151
26169
|
if (props.mode !== 'manual') {
|
|
26152
26170
|
vue.nextTick(() => {
|
|
26153
26171
|
// See #17475
|
|
@@ -32757,7 +32775,7 @@
|
|
|
32757
32775
|
};
|
|
32758
32776
|
});
|
|
32759
32777
|
}
|
|
32760
|
-
const version$1 = "3.10.9-dev.2025-11-
|
|
32778
|
+
const version$1 = "3.10.9-dev.2025-11-09";
|
|
32761
32779
|
createVuetify$1.version = version$1;
|
|
32762
32780
|
|
|
32763
32781
|
// Vue's inject() can only be used in setup
|
|
@@ -32782,7 +32800,7 @@
|
|
|
32782
32800
|
...options
|
|
32783
32801
|
});
|
|
32784
32802
|
};
|
|
32785
|
-
const version = "3.10.9-dev.2025-11-
|
|
32803
|
+
const version = "3.10.9-dev.2025-11-09";
|
|
32786
32804
|
createVuetify.version = version;
|
|
32787
32805
|
|
|
32788
32806
|
exports.blueprints = index;
|