@vuetify/nightly 3.8.8-dev.2025-06-08 → 3.8.8-dev.2025-06-10

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.8.8-dev.2025-06-08
2
+ * Vuetify v3.8.8-dev.2025-06-10
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -24333,6 +24333,9 @@
24333
24333
  startStatus.value = status;
24334
24334
  } else if (side === 'end') {
24335
24335
  endStatus.value = status;
24336
+ } else if (side === 'both') {
24337
+ startStatus.value = status;
24338
+ endStatus.value = status;
24336
24339
  }
24337
24340
  }
24338
24341
  function getStatus(side) {
@@ -24444,6 +24447,32 @@
24444
24447
  }, [renderSide('end', endStatus.value)])]
24445
24448
  });
24446
24449
  });
24450
+ function reset(side) {
24451
+ const effectiveSide = side ?? props.side;
24452
+ setStatus(effectiveSide, 'ok');
24453
+ vue.nextTick(() => {
24454
+ setScrollAmount(getScrollSize() - previousScrollSize + getScrollAmount());
24455
+ if (props.mode !== 'manual') {
24456
+ vue.nextTick(() => {
24457
+ window.requestAnimationFrame(() => {
24458
+ window.requestAnimationFrame(() => {
24459
+ window.requestAnimationFrame(() => {
24460
+ if (effectiveSide === 'both') {
24461
+ intersecting('start');
24462
+ intersecting('end');
24463
+ } else {
24464
+ intersecting(effectiveSide);
24465
+ }
24466
+ });
24467
+ });
24468
+ });
24469
+ });
24470
+ }
24471
+ });
24472
+ }
24473
+ return {
24474
+ reset
24475
+ };
24447
24476
  }
24448
24477
  });
24449
24478
 
@@ -29623,7 +29652,7 @@
29623
29652
  };
29624
29653
  });
29625
29654
  }
29626
- const version$1 = "3.8.8-dev.2025-06-08";
29655
+ const version$1 = "3.8.8-dev.2025-06-10";
29627
29656
  createVuetify$1.version = version$1;
29628
29657
 
29629
29658
  // Vue's inject() can only be used in setup
@@ -29648,7 +29677,7 @@
29648
29677
  ...options
29649
29678
  });
29650
29679
  };
29651
- const version = "3.8.8-dev.2025-06-08";
29680
+ const version = "3.8.8-dev.2025-06-10";
29652
29681
  createVuetify.version = version;
29653
29682
 
29654
29683
  exports.blueprints = index;