@vuetify/nightly 3.9.5-dev.2025-08-23 → 3.9.5-dev.2025-08-24
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 +2028 -2028
- package/dist/json/importMap-labs.json +40 -40
- package/dist/json/importMap.json +180 -180
- package/dist/json/web-types.json +3842 -3842
- package/dist/vuetify-labs.cjs +133 -36
- package/dist/vuetify-labs.css +3910 -3910
- package/dist/vuetify-labs.d.ts +92 -92
- package/dist/vuetify-labs.esm.js +133 -36
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +133 -36
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +16 -3
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4850 -4850
- package/dist/vuetify.d.ts +71 -71
- package/dist/vuetify.esm.js +16 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +16 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +15 -14
- package/dist/vuetify.min.js.map +1 -1
- package/lib/composables/filter.d.ts +1 -0
- package/lib/composables/filter.js +13 -0
- package/lib/composables/filter.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/lib/labs/VMaskInput/VMaskInput.d.ts +22 -21
- package/lib/labs/VMaskInput/VMaskInput.js +118 -34
- package/lib/labs/VMaskInput/VMaskInput.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.9.5-dev.2025-08-
|
|
2
|
+
* Vuetify v3.9.5-dev.2025-08-24
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -13987,6 +13987,7 @@
|
|
|
13987
13987
|
const keys = options?.filterKeys ? wrapInArray(options.filterKeys) : false;
|
|
13988
13988
|
const customFiltersLength = Object.keys(options?.customKeyFilter ?? {}).length;
|
|
13989
13989
|
if (!items?.length) return array;
|
|
13990
|
+
let lookAheadItem = null;
|
|
13990
13991
|
loop: for (let i = 0; i < items.length; i++) {
|
|
13991
13992
|
const [item, transformed = item] = wrapInArray(items[i]);
|
|
13992
13993
|
const customMatches = {};
|
|
@@ -13995,6 +13996,14 @@
|
|
|
13995
13996
|
if ((query || customFiltersLength > 0) && !options?.noFilter) {
|
|
13996
13997
|
if (typeof item === 'object') {
|
|
13997
13998
|
if (item.type === 'divider' || item.type === 'subheader') {
|
|
13999
|
+
if (lookAheadItem?.type === 'divider' && item.type === 'subheader') {
|
|
14000
|
+
array.push(lookAheadItem); // divider before subheader
|
|
14001
|
+
}
|
|
14002
|
+
lookAheadItem = {
|
|
14003
|
+
index: i,
|
|
14004
|
+
matches: {},
|
|
14005
|
+
type: item.type
|
|
14006
|
+
};
|
|
13998
14007
|
continue;
|
|
13999
14008
|
}
|
|
14000
14009
|
const filterKeys = keys || Object.keys(transformed);
|
|
@@ -14020,6 +14029,10 @@
|
|
|
14020
14029
|
if (options?.filterMode === 'union' && customMatchesLength !== customFiltersLength && !defaultMatchesLength) continue;
|
|
14021
14030
|
if (options?.filterMode === 'intersection' && (customMatchesLength !== customFiltersLength || !defaultMatchesLength)) continue;
|
|
14022
14031
|
}
|
|
14032
|
+
if (lookAheadItem) {
|
|
14033
|
+
array.push(lookAheadItem);
|
|
14034
|
+
lookAheadItem = null;
|
|
14035
|
+
}
|
|
14023
14036
|
array.push({
|
|
14024
14037
|
index: i,
|
|
14025
14038
|
matches: {
|
|
@@ -32121,7 +32134,7 @@
|
|
|
32121
32134
|
};
|
|
32122
32135
|
});
|
|
32123
32136
|
}
|
|
32124
|
-
const version$1 = "3.9.5-dev.2025-08-
|
|
32137
|
+
const version$1 = "3.9.5-dev.2025-08-24";
|
|
32125
32138
|
createVuetify$1.version = version$1;
|
|
32126
32139
|
|
|
32127
32140
|
// Vue's inject() can only be used in setup
|
|
@@ -32146,7 +32159,7 @@
|
|
|
32146
32159
|
...options
|
|
32147
32160
|
});
|
|
32148
32161
|
};
|
|
32149
|
-
const version = "3.9.5-dev.2025-08-
|
|
32162
|
+
const version = "3.9.5-dev.2025-08-24";
|
|
32150
32163
|
createVuetify.version = version;
|
|
32151
32164
|
|
|
32152
32165
|
exports.blueprints = index;
|