@vuetify/nightly 3.10.9-dev.2025-11-08 → 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 +4 -3
- package/dist/json/attributes.json +3718 -3718
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +204 -204
- package/dist/json/web-types.json +6625 -6625
- package/dist/vuetify-labs.cjs +28 -12
- package/dist/vuetify-labs.css +3957 -3957
- package/dist/vuetify-labs.d.ts +71 -71
- package/dist/vuetify-labs.esm.js +28 -12
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +28 -12
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +28 -12
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3465 -3465
- package/dist/vuetify.d.ts +71 -71
- package/dist/vuetify.esm.js +28 -12
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +28 -12
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +16 -15
- 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/entry-bundler.js +1 -1
- package/lib/framework.d.ts +71 -71
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.cjs
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
|
*/
|
|
@@ -19482,16 +19482,9 @@
|
|
|
19482
19482
|
vue.nextTick(() => vVirtualScrollRef.value?.scrollToIndex(0));
|
|
19483
19483
|
}
|
|
19484
19484
|
if (val && props.multiple && props.delimiters?.length) {
|
|
19485
|
-
const
|
|
19486
|
-
const values = val.split(new RegExp(`(?:${signsToMatch})+`));
|
|
19485
|
+
const values = splitByDelimiters(val);
|
|
19487
19486
|
if (values.length > 1) {
|
|
19488
|
-
|
|
19489
|
-
v = v.trim();
|
|
19490
|
-
if (v) {
|
|
19491
|
-
select(transformItem$3(props, v));
|
|
19492
|
-
await vue.nextTick();
|
|
19493
|
-
}
|
|
19494
|
-
}
|
|
19487
|
+
selectMultiple(values);
|
|
19495
19488
|
_search.value = '';
|
|
19496
19489
|
}
|
|
19497
19490
|
}
|
|
@@ -19638,6 +19631,14 @@
|
|
|
19638
19631
|
selectionIndex.value = -1;
|
|
19639
19632
|
}
|
|
19640
19633
|
}
|
|
19634
|
+
function onPaste(e) {
|
|
19635
|
+
const clipboardText = e?.clipboardData?.getData('Text') ?? '';
|
|
19636
|
+
const values = splitByDelimiters(clipboardText);
|
|
19637
|
+
if (values.length > 1 && props.multiple) {
|
|
19638
|
+
e.preventDefault();
|
|
19639
|
+
selectMultiple(values);
|
|
19640
|
+
}
|
|
19641
|
+
}
|
|
19641
19642
|
function onAfterEnter() {
|
|
19642
19643
|
if (props.eager) {
|
|
19643
19644
|
vVirtualScrollRef.value?.calculateVisibleItems();
|
|
@@ -19683,6 +19684,20 @@
|
|
|
19683
19684
|
});
|
|
19684
19685
|
}
|
|
19685
19686
|
}
|
|
19687
|
+
function splitByDelimiters(val) {
|
|
19688
|
+
const effectiveDelimiters = ['\n', ...(props.delimiters ?? [])];
|
|
19689
|
+
const signsToMatch = effectiveDelimiters.map(escapeForRegex).join('|');
|
|
19690
|
+
return val.split(new RegExp(`(?:${signsToMatch})+`));
|
|
19691
|
+
}
|
|
19692
|
+
async function selectMultiple(values) {
|
|
19693
|
+
for (let value of values) {
|
|
19694
|
+
value = value.trim();
|
|
19695
|
+
if (value) {
|
|
19696
|
+
select(transformItem$3(props, value));
|
|
19697
|
+
await vue.nextTick();
|
|
19698
|
+
}
|
|
19699
|
+
}
|
|
19700
|
+
}
|
|
19686
19701
|
function onFocusin(e) {
|
|
19687
19702
|
isFocused.value = true;
|
|
19688
19703
|
setTimeout(() => {
|
|
@@ -19756,6 +19771,7 @@
|
|
|
19756
19771
|
"onClick:clear": onClear,
|
|
19757
19772
|
"onMousedown:control": onMousedownControl,
|
|
19758
19773
|
"onKeydown": onKeydown,
|
|
19774
|
+
"onPaste": onPaste,
|
|
19759
19775
|
"aria-expanded": ariaExpanded.value,
|
|
19760
19776
|
"aria-controls": ariaControls.value
|
|
19761
19777
|
}), {
|
|
@@ -38395,7 +38411,7 @@
|
|
|
38395
38411
|
};
|
|
38396
38412
|
});
|
|
38397
38413
|
}
|
|
38398
|
-
const version$1 = "3.10.9-dev.2025-11-
|
|
38414
|
+
const version$1 = "3.10.9-dev.2025-11-09";
|
|
38399
38415
|
createVuetify$1.version = version$1;
|
|
38400
38416
|
|
|
38401
38417
|
// Vue's inject() can only be used in setup
|
|
@@ -38693,7 +38709,7 @@
|
|
|
38693
38709
|
|
|
38694
38710
|
/* eslint-disable local-rules/sort-imports */
|
|
38695
38711
|
|
|
38696
|
-
const version = "3.10.9-dev.2025-11-
|
|
38712
|
+
const version = "3.10.9-dev.2025-11-09";
|
|
38697
38713
|
|
|
38698
38714
|
/* eslint-disable local-rules/sort-imports */
|
|
38699
38715
|
|