@vuetify/nightly 3.7.18-master.2025-03-25 → 3.7.19-master.2025-03-27
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 +9 -39
- package/dist/json/attributes.json +3627 -3627
- package/dist/json/importMap-labs.json +14 -14
- package/dist/json/importMap.json +144 -144
- package/dist/json/web-types.json +6650 -6650
- package/dist/vuetify-labs.css +3520 -3520
- package/dist/vuetify-labs.esm.js +13 -21
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +13 -21
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4358 -4358
- package/dist/vuetify.d.ts +49 -49
- package/dist/vuetify.esm.js +8 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +8 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +5 -10
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +49 -49
- package/lib/labs/VDateInput/VDateInput.mjs +3 -7
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VFileUpload/VFileUpload.mjs +2 -1
- package/lib/labs/VFileUpload/VFileUpload.mjs.map +1 -1
- package/lib/util/helpers.mjs +1 -11
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.
|
2
|
+
* Vuetify v3.7.19-master.2025-03-27
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -13502,12 +13502,7 @@
|
|
13502
13502
|
} else {
|
13503
13503
|
if (!props.multiple && search.value == null) model.value = [];
|
13504
13504
|
menu.value = false;
|
13505
|
-
if (
|
13506
|
-
let {
|
13507
|
-
title
|
13508
|
-
} = _ref3;
|
13509
|
-
return title === search.value;
|
13510
|
-
})) search.value = '';
|
13505
|
+
if (props.multiple || hasSelectionSlot.value) search.value = '';
|
13511
13506
|
selectionIndex.value = -1;
|
13512
13507
|
}
|
13513
13508
|
});
|
@@ -13594,12 +13589,12 @@
|
|
13594
13589
|
"renderless": true,
|
13595
13590
|
"items": displayItems.value
|
13596
13591
|
}, {
|
13597
|
-
default:
|
13592
|
+
default: _ref3 => {
|
13598
13593
|
let {
|
13599
13594
|
item,
|
13600
13595
|
index,
|
13601
13596
|
itemRef
|
13602
|
-
} =
|
13597
|
+
} = _ref3;
|
13603
13598
|
const itemProps = vue.mergeProps(item.props, {
|
13604
13599
|
ref: itemRef,
|
13605
13600
|
key: item.value,
|
@@ -13613,10 +13608,10 @@
|
|
13613
13608
|
}) ?? vue.createVNode(VListItem, vue.mergeProps(itemProps, {
|
13614
13609
|
"role": "option"
|
13615
13610
|
}), {
|
13616
|
-
prepend:
|
13611
|
+
prepend: _ref4 => {
|
13617
13612
|
let {
|
13618
13613
|
isSelected
|
13619
|
-
} =
|
13614
|
+
} = _ref4;
|
13620
13615
|
return vue.createVNode(vue.Fragment, null, [props.multiple && !props.hideSelected ? vue.createVNode(VCheckboxBtn, {
|
13621
13616
|
"key": item.value,
|
13622
13617
|
"modelValue": isSelected,
|
@@ -28471,7 +28466,7 @@
|
|
28471
28466
|
goTo
|
28472
28467
|
};
|
28473
28468
|
}
|
28474
|
-
const version$1 = "3.7.
|
28469
|
+
const version$1 = "3.7.19-master.2025-03-27";
|
28475
28470
|
createVuetify$1.version = version$1;
|
28476
28471
|
|
28477
28472
|
// Vue's inject() can only be used in setup
|
@@ -28496,7 +28491,7 @@
|
|
28496
28491
|
...options
|
28497
28492
|
});
|
28498
28493
|
};
|
28499
|
-
const version = "3.7.
|
28494
|
+
const version = "3.7.19-master.2025-03-27";
|
28500
28495
|
createVuetify.version = version;
|
28501
28496
|
|
28502
28497
|
exports.blueprints = index;
|