@schukai/monster 3.102.2 → 3.102.4

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.
@@ -547,11 +547,9 @@ function updateFilterSelections() {
547
547
  this[filterSelectElementSymbol].setOption("options", options);
548
548
 
549
549
  setTimeout(() => {
550
- window.requestAnimationFrame(() => {
551
- this[filterSelectElementSymbol].value =
552
- this[settingsSymbol].getSelected();
553
- });
554
- }, 0);
550
+ this[filterSelectElementSymbol].value =
551
+ this[settingsSymbol].getSelected();
552
+ }, 10);
555
553
  });
556
554
  }
557
555
 
@@ -516,7 +516,7 @@ function handleDataSourceChanges() {
516
516
  pagination.items = [];
517
517
  }
518
518
 
519
- getWindow().requestAnimationFrame(() => {
519
+ queueMicrotask(() => {
520
520
  this.setOption("pagination", pagination);
521
521
  });
522
522
  }