@moda/om 17.14.1 → 17.14.2

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/index.esm.js CHANGED
@@ -10423,7 +10423,7 @@ var LoadingBalls = function LoadingBalls(_ref) {
10423
10423
  })));
10424
10424
  };
10425
10425
 
10426
- var INTERVAL = 100;
10426
+ var INTERVAL_MS = 250;
10427
10427
  var LoadingShapes = function LoadingShapes() {
10428
10428
  var items = [Triangle, Diamond, ArcWindow, Circle];
10429
10429
  var _useCursor = dist.useCursor({
@@ -10434,7 +10434,7 @@ var LoadingShapes = function LoadingShapes() {
10434
10434
  useEffect(function () {
10435
10435
  var interval = setInterval(function () {
10436
10436
  handleNext();
10437
- }, INTERVAL);
10437
+ }, INTERVAL_MS);
10438
10438
  return function () {
10439
10439
  return clearInterval(interval);
10440
10440
  };