@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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [17.14.2](https://github.com/ModaOperandi/om/compare/v17.14.1...v17.14.2) (2022-11-17)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **loading-shapes:** increases ms for transitioning ([#3060](https://github.com/ModaOperandi/om/issues/3060)) ([a93fc62](https://github.com/ModaOperandi/om/commit/a93fc62153920a9c7f0abd6e2a70adf9f2d2c3d0))
|
|
12
|
+
|
|
6
13
|
## [17.14.1](https://github.com/ModaOperandi/om/compare/v17.14.0...v17.14.1) (2022-11-15)
|
|
7
14
|
|
|
8
15
|
|
package/dist/index.cjs.js
CHANGED
|
@@ -10443,7 +10443,7 @@ var LoadingBalls = function LoadingBalls(_ref) {
|
|
|
10443
10443
|
})));
|
|
10444
10444
|
};
|
|
10445
10445
|
|
|
10446
|
-
var
|
|
10446
|
+
var INTERVAL_MS = 250;
|
|
10447
10447
|
var LoadingShapes = function LoadingShapes() {
|
|
10448
10448
|
var items = [Triangle, Diamond, ArcWindow, Circle];
|
|
10449
10449
|
var _useCursor = dist.useCursor({
|
|
@@ -10454,7 +10454,7 @@ var LoadingShapes = function LoadingShapes() {
|
|
|
10454
10454
|
React.useEffect(function () {
|
|
10455
10455
|
var interval = setInterval(function () {
|
|
10456
10456
|
handleNext();
|
|
10457
|
-
},
|
|
10457
|
+
}, INTERVAL_MS);
|
|
10458
10458
|
return function () {
|
|
10459
10459
|
return clearInterval(interval);
|
|
10460
10460
|
};
|