@moontra/moonui-pro 2.36.5 → 2.36.7
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/cdn/index.css +1 -1
- package/dist/cdn/index.css.map +1 -1
- package/dist/cdn/index.global.js +1650 -277
- package/dist/cdn/index.global.js.map +1 -1
- package/dist/index.d.ts +11 -11
- package/dist/index.mjs +3545 -2295
- package/dist/styles/nprogress.d.ts +1 -1
- package/dist/styles/nprogress.mjs +3 -2
- package/package.json +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
|
|
2
|
-
export {
|
|
2
|
+
export { }
|
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
|
|
8
8
|
// #style-inject:#style-inject
|
|
9
9
|
function styleInject(css, { insertAt } = {}) {
|
|
10
|
-
if (typeof document === "undefined")
|
|
10
|
+
if (!css || typeof document === "undefined")
|
|
11
|
+
return;
|
|
11
12
|
const head = document.head || document.getElementsByTagName("head")[0];
|
|
12
13
|
const style = document.createElement("style");
|
|
13
14
|
style.type = "text/css";
|
|
@@ -28,4 +29,4 @@ function styleInject(css, { insertAt } = {}) {
|
|
|
28
29
|
}
|
|
29
30
|
|
|
30
31
|
// src/styles/nprogress.css
|
|
31
|
-
styleInject("#nprogress {\n pointer-events: none;\n}\n#nprogress .bar {\n background
|
|
32
|
+
styleInject("#nprogress {\n pointer-events: none;\n}\n#nprogress .bar {\n background: linear-gradient(90deg, #8b5cf6 0%, #d946ef 50%, #8b5cf6 100%);\n background-size: 200% 100%;\n animation: gradient-shift 2s ease infinite;\n position: fixed;\n z-index: 9999;\n top: 0;\n left: 0;\n width: 100%;\n height: 3px;\n box-shadow: 0 0 10px rgba(139, 92, 246, 0.5), 0 0 5px rgba(217, 70, 239, 0.5);\n}\n#nprogress .peg {\n display: block;\n position: absolute;\n right: 0px;\n width: 100px;\n height: 100%;\n box-shadow: 0 0 15px rgba(139, 92, 246, 0.7), 0 0 8px rgba(217, 70, 239, 0.7);\n opacity: 1.0;\n transform: rotate(3deg) translate(0px, -4px);\n}\n#nprogress .spinner {\n display: none;\n}\n@keyframes gradient-shift {\n 0% {\n background-position: 0% 50%;\n }\n 50% {\n background-position: 100% 50%;\n }\n 100% {\n background-position: 0% 50%;\n }\n}\n.dark #nprogress .bar {\n background: linear-gradient(90deg, #a78bfa 0%, #e879f9 50%, #a78bfa 100%);\n box-shadow: 0 0 15px rgba(167, 139, 250, 0.6), 0 0 8px rgba(232, 121, 249, 0.6);\n}\n.dark #nprogress .peg {\n box-shadow: 0 0 20px rgba(167, 139, 250, 0.8), 0 0 10px rgba(232, 121, 249, 0.8);\n}\n");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moontra/moonui-pro",
|
|
3
|
-
"version": "2.36.
|
|
3
|
+
"version": "2.36.7",
|
|
4
4
|
"description": "Premium React components for MoonUI - Advanced UI library with 50+ pro components including performance, interactive, and gesture components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|