@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/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.9.5-dev.2025-08-23
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-23";
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-23";
32162
+ const version = "3.9.5-dev.2025-08-24";
32150
32163
  createVuetify.version = version;
32151
32164
 
32152
32165
  exports.blueprints = index;