clear-react-router 1.2.0 → 1.2.1
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.js
CHANGED
|
@@ -330,13 +330,9 @@ var useApplyCustomAnimation = (animationOptions) => {
|
|
|
330
330
|
return () => style.remove();
|
|
331
331
|
}, [animationOptions]);
|
|
332
332
|
};
|
|
333
|
-
var Spinner_module_default = {
|
|
334
|
-
spinner: "_spinner_1tekw_1",
|
|
335
|
-
rotation: "_rotation_1tekw_1"
|
|
336
|
-
};
|
|
337
333
|
//#endregion
|
|
338
|
-
//#region components/Spinner
|
|
339
|
-
var Spinner = () => /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className:
|
|
334
|
+
//#region components/Spinner.tsx
|
|
335
|
+
var Spinner = () => /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: "cr-spinner" });
|
|
340
336
|
//#endregion
|
|
341
337
|
//#region utils/renderElement.tsx
|
|
342
338
|
var renderElement = (Component) => {
|
package/package.json
CHANGED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
._spinner_1tekw_1 {
|
|
2
|
-
position: fixed;
|
|
3
|
-
top: 5px;
|
|
4
|
-
left: 5px;
|
|
5
|
-
z-index: 9999;
|
|
6
|
-
width: 1rem;
|
|
7
|
-
height: 1rem;
|
|
8
|
-
border: 2px solid gray;
|
|
9
|
-
border-bottom-color: transparent;
|
|
10
|
-
border-radius: 50%;
|
|
11
|
-
display: inline-block;
|
|
12
|
-
box-sizing: border-box;
|
|
13
|
-
animation: _rotation_1tekw_1 1s linear infinite;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
@keyframes _rotation_1tekw_1 {
|
|
17
|
-
0% {
|
|
18
|
-
transform: rotate(0deg);
|
|
19
|
-
}
|
|
20
|
-
100% {
|
|
21
|
-
transform: rotate(360deg);
|
|
22
|
-
}
|
|
23
|
-
}/*$vite$:1*/
|
|
File without changes
|