@vuetify/nightly 3.8.1-dev.2025-04-07 → 3.8.1-master.2025-04-07

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.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.1-dev.2025-04-07
2
+ * Vuetify v3.8.1-master.2025-04-07
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -12572,12 +12572,7 @@
12572
12572
  }
12573
12573
  function calculateOffset(index) {
12574
12574
  index = clamp(index, 0, items.value.length - 1);
12575
- const whole = Math.floor(index);
12576
- const fraction = index % 1;
12577
- const next = whole + 1;
12578
- const wholeOffset = offsets[whole] || 0;
12579
- const nextOffset = offsets[next] || wholeOffset;
12580
- return wholeOffset + (nextOffset - wholeOffset) * fraction;
12575
+ return offsets[index] || 0;
12581
12576
  }
12582
12577
  function calculateIndex(scrollTop) {
12583
12578
  return binaryClosest(offsets, scrollTop);
@@ -29245,7 +29240,7 @@
29245
29240
  };
29246
29241
  });
29247
29242
  }
29248
- const version$1 = "3.8.1-dev.2025-04-07";
29243
+ const version$1 = "3.8.1-master.2025-04-07";
29249
29244
  createVuetify$1.version = version$1;
29250
29245
 
29251
29246
  // Vue's inject() can only be used in setup
@@ -29270,7 +29265,7 @@
29270
29265
  ...options
29271
29266
  });
29272
29267
  };
29273
- const version = "3.8.1-dev.2025-04-07";
29268
+ const version = "3.8.1-master.2025-04-07";
29274
29269
  createVuetify.version = version;
29275
29270
 
29276
29271
  exports.blueprints = index;