evelearn-theme 2.0.22 → 2.0.25
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.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +49 -46
- package/dist/index.mjs +49 -46
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -12,7 +12,7 @@ type Props$h = {
|
|
|
12
12
|
};
|
|
13
13
|
declare const ErrorText: ({ text, style, classNames }: Props$h) => react_jsx_runtime.JSX.Element;
|
|
14
14
|
|
|
15
|
-
declare const baseFieldStyle = "font-sans form-input h-11 w-full bg-white border-gray-200 dark:border-gray-500 dark:bg-slate-
|
|
15
|
+
declare const baseFieldStyle = "font-sans form-input h-11 w-full bg-white border-gray-200 dark:border-gray-500 dark:bg-slate-950 dark:text-gray-200 text-gray-700 dark:placeholder-gray-400 placeholder-gray-400 rounded-md px-2 py-1 focus:outline-none focus:border-blue-300 focus:ring focus:ring-blue-200 focus:ring-opacity-50";
|
|
16
16
|
declare const createExerciseElementStyle = "flex flex-col justify-between space-y-2 w-full p-4 bg-white dark:bg-slate-800 rounded-xl text-gray-800 dark:text-gray-200 border-2 border-slate-200 dark:border-slate-400 overflow-hidden transition-all";
|
|
17
17
|
declare const exerciseDeleteButton = "w-6 h-6 flex justify-center text-gray-700 dark:text-gray-200 hover:text-red-600 dark:hover:text-red-500 transition-all duration-150 hover:scale-125";
|
|
18
18
|
declare const xIconButton = "w-6 h-6 flex justify-center text-gray-700 dark:text-gray-200 hover:text-gray-950 dark:hover:text-gray-100 transition-all duration-150 hover:scale-125";
|
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ type Props$h = {
|
|
|
12
12
|
};
|
|
13
13
|
declare const ErrorText: ({ text, style, classNames }: Props$h) => react_jsx_runtime.JSX.Element;
|
|
14
14
|
|
|
15
|
-
declare const baseFieldStyle = "font-sans form-input h-11 w-full bg-white border-gray-200 dark:border-gray-500 dark:bg-slate-
|
|
15
|
+
declare const baseFieldStyle = "font-sans form-input h-11 w-full bg-white border-gray-200 dark:border-gray-500 dark:bg-slate-950 dark:text-gray-200 text-gray-700 dark:placeholder-gray-400 placeholder-gray-400 rounded-md px-2 py-1 focus:outline-none focus:border-blue-300 focus:ring focus:ring-blue-200 focus:ring-opacity-50";
|
|
16
16
|
declare const createExerciseElementStyle = "flex flex-col justify-between space-y-2 w-full p-4 bg-white dark:bg-slate-800 rounded-xl text-gray-800 dark:text-gray-200 border-2 border-slate-200 dark:border-slate-400 overflow-hidden transition-all";
|
|
17
17
|
declare const exerciseDeleteButton = "w-6 h-6 flex justify-center text-gray-700 dark:text-gray-200 hover:text-red-600 dark:hover:text-red-500 transition-all duration-150 hover:scale-125";
|
|
18
18
|
declare const xIconButton = "w-6 h-6 flex justify-center text-gray-700 dark:text-gray-200 hover:text-gray-950 dark:hover:text-gray-100 transition-all duration-150 hover:scale-125";
|
package/dist/index.js
CHANGED
|
@@ -329,7 +329,7 @@ var ErrorText = function(param) {
|
|
|
329
329
|
};
|
|
330
330
|
var ErrorText_default = ErrorText;
|
|
331
331
|
// src/Common/fieldStyle.ts
|
|
332
|
-
var baseFieldStyle = "font-sans form-input h-11 w-full bg-white border-gray-200 dark:border-gray-500 dark:bg-slate-
|
|
332
|
+
var baseFieldStyle = "font-sans form-input h-11 w-full bg-white border-gray-200 dark:border-gray-500 dark:bg-slate-950 dark:text-gray-200 text-gray-700 dark:placeholder-gray-400 placeholder-gray-400 rounded-md px-2 py-1 focus:outline-none focus:border-blue-300 focus:ring focus:ring-blue-200 focus:ring-opacity-50";
|
|
333
333
|
var createExerciseElementStyle = "flex flex-col justify-between space-y-2 w-full p-4 bg-white dark:bg-slate-800 rounded-xl text-gray-800 dark:text-gray-200 border-2 border-slate-200 dark:border-slate-400 overflow-hidden transition-all";
|
|
334
334
|
var exerciseDeleteButton = "w-6 h-6 flex justify-center text-gray-700 dark:text-gray-200 hover:text-red-600 dark:hover:text-red-500 transition-all duration-150 hover:scale-125";
|
|
335
335
|
var xIconButton = "w-6 h-6 flex justify-center text-gray-700 dark:text-gray-200 hover:text-gray-950 dark:hover:text-gray-100 transition-all duration-150 hover:scale-125";
|
|
@@ -571,9 +571,9 @@ var Overlay = function(param) {
|
|
|
571
571
|
className: "animate-fade-in",
|
|
572
572
|
children: withContainer ? /* @__PURE__ */ (0, import_jsx_runtime10.jsx)("div", {
|
|
573
573
|
onClick: onDismissed || onClick,
|
|
574
|
-
className: "top-0 left-0 fixed w-full h-screen backdrop-blur-lg flex items-center justify-center
|
|
574
|
+
className: "top-0 left-0 fixed w-full h-screen dark:bg-black/70 bg-white/60 backdrop-blur-lg flex items-center justify-center",
|
|
575
575
|
style: {
|
|
576
|
-
background:
|
|
576
|
+
// background: dark ? `rgba(0, 0, 0, ${opacity || '0.7'})` : `rgba(255, 255, 255, ${opacity || '0.6'})`,
|
|
577
577
|
zIndex: zIndex || 9999
|
|
578
578
|
},
|
|
579
579
|
children: children
|
|
@@ -589,23 +589,23 @@ var Button = function(param) {
|
|
|
589
589
|
var styled = function() {
|
|
590
590
|
switch(kind){
|
|
591
591
|
case "primary":
|
|
592
|
-
return "bg-primary font-header text-white font-medium transition-all duration-75
|
|
592
|
+
return (0, import_clsx.default)("bg-primary font-header text-white font-medium transition-all duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
593
593
|
case "indigo":
|
|
594
|
-
return "bg-indigo-500 font-header text-white font-medium transition-all duration-75
|
|
594
|
+
return (0, import_clsx.default)("bg-indigo-500 font-header text-white font-medium transition-all duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
595
595
|
case "green":
|
|
596
|
-
return "bg-green-500 font-header text-white font-medium transition-all duration-75
|
|
596
|
+
return (0, import_clsx.default)("bg-green-500 font-header text-white font-medium transition-all duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
597
597
|
case "teal":
|
|
598
|
-
return "bg-teal-500 font-header text-white font-medium transition-all duration-75
|
|
598
|
+
return (0, import_clsx.default)("bg-teal-500 font-header text-white font-medium transition-all duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
599
599
|
case "secondary":
|
|
600
|
-
return "bg-secondary text-white font-header font-medium transition-all duration-75
|
|
600
|
+
return (0, import_clsx.default)("bg-secondary text-white font-header font-medium transition-all duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
601
601
|
case "base":
|
|
602
|
-
return "bg-white border-1 font-header border-gray-200 dark:bg-slate-600 dark:text-gray-100 transition-all duration-75
|
|
602
|
+
return (0, import_clsx.default)("bg-white border-1 font-header border-gray-200 dark:bg-slate-600 dark:text-gray-100 transition-all duration-75 disabled:opacity-50 disabled:cursor-not-allowed dark:hover:bg-slate-400 hover:bg-slate-100");
|
|
603
603
|
case "gray":
|
|
604
|
-
return "bg-slate-400 dark:bg-slate-700 font-header text-white border-1 font-medium transition-opacity duration-75
|
|
604
|
+
return (0, import_clsx.default)("bg-slate-400 dark:bg-slate-700 font-header text-white border-1 font-medium transition-opacity duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
605
605
|
case "alert":
|
|
606
|
-
return "bg-amber-500 font-header text-white transition-all duration-75
|
|
606
|
+
return (0, import_clsx.default)("bg-amber-500 font-header text-white transition-all duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
607
607
|
case "warning":
|
|
608
|
-
return "bg-red-500 font-header text-white font-medium transition-opacity duration-
|
|
608
|
+
return (0, import_clsx.default)("bg-red-500 font-header text-white font-medium transition-opacity duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
609
609
|
default:
|
|
610
610
|
break;
|
|
611
611
|
}
|
|
@@ -1972,7 +1972,7 @@ var AnimateLogo = function() {
|
|
|
1972
1972
|
if (isFirefox) {
|
|
1973
1973
|
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("svg", {
|
|
1974
1974
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1975
|
-
className: "animate-
|
|
1975
|
+
className: "animate-spin",
|
|
1976
1976
|
viewBox: "0 0 600 600",
|
|
1977
1977
|
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("g", {
|
|
1978
1978
|
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("path", {
|
|
@@ -2018,27 +2018,30 @@ var AnimateLogo = function() {
|
|
|
2018
2018
|
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("svg", {
|
|
2019
2019
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2020
2020
|
viewBox: "0 0 600 600",
|
|
2021
|
-
children: /* @__PURE__ */ (0, import_jsx_runtime35.
|
|
2021
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("g", {
|
|
2022
2022
|
style: {
|
|
2023
2023
|
transformOrigin: "center"
|
|
2024
2024
|
},
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2025
|
+
transform: "translate(300 300) rotate(0)",
|
|
2026
|
+
height: 176,
|
|
2027
|
+
width: 176,
|
|
2028
|
+
children: [
|
|
2029
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("path", {
|
|
2030
|
+
className: "stroke-black dark:stroke-white text-gray-900 dark:text-gray-50",
|
|
2031
|
+
stroke: "currentColor",
|
|
2032
|
+
id: "motionPath",
|
|
2033
|
+
fill: "none",
|
|
2034
|
+
strokeLinecap: "round",
|
|
2035
|
+
height: 600,
|
|
2036
|
+
width: 600,
|
|
2037
|
+
style: {
|
|
2038
|
+
transformOrigin: "center"
|
|
2039
|
+
},
|
|
2040
|
+
strokeMiterlimit: "10",
|
|
2041
|
+
strokeWidth: "82",
|
|
2042
|
+
strokeDasharray: "1600",
|
|
2043
|
+
d: "M466.49 164.79c17.79 34.76 25.48 75.66 19.08 118.96-11.28 76.36-67.11 139.06-141.89 158.25-127.11 32.61-243.49-61.27-245.86-184.81C95.79 150.86 182.9 60.52 289.23 58.56c33.95-.63 66.08 7.48 94.22 22.29 0 0 15.68 6.34 10.14 23.19 0 0-68.52 219.82-352.61 268.06",
|
|
2044
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("animate", {
|
|
2042
2045
|
attributeName: "stroke-dashoffset",
|
|
2043
2046
|
to: "0",
|
|
2044
2047
|
from: "1600",
|
|
@@ -2049,22 +2052,22 @@ var AnimateLogo = function() {
|
|
|
2049
2052
|
keyTimes: "0;0.375;0.5;0.875;1",
|
|
2050
2053
|
keySplines: "0 0.26 0 1;0 0.26 0 1;0 0.26 0 1;0 0.26 0 1",
|
|
2051
2054
|
values: "1600;0;0;1600;1600"
|
|
2052
|
-
}),
|
|
2053
|
-
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("animateTransform", {
|
|
2054
|
-
attributeName: "transform",
|
|
2055
|
-
type: "rotate",
|
|
2056
|
-
from: "0 300 300",
|
|
2057
|
-
to: "360 300 300",
|
|
2058
|
-
dur: "2s",
|
|
2059
|
-
fill: "freeze",
|
|
2060
|
-
repeatCount: "indefinite",
|
|
2061
|
-
calcMode: "cubic",
|
|
2062
|
-
keyTimes: "0;0.75;1",
|
|
2063
|
-
keySplines: "0 0.26 0 1",
|
|
2064
|
-
values: "0 300 300;360 300 300;360 300 300;"
|
|
2065
2055
|
})
|
|
2066
|
-
|
|
2067
|
-
|
|
2056
|
+
}),
|
|
2057
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("animateTransform", {
|
|
2058
|
+
attributeName: "transform",
|
|
2059
|
+
type: "rotate",
|
|
2060
|
+
from: "0",
|
|
2061
|
+
to: "360",
|
|
2062
|
+
dur: "2s",
|
|
2063
|
+
fill: "freeze",
|
|
2064
|
+
repeatCount: "indefinite",
|
|
2065
|
+
calcMode: "cubic",
|
|
2066
|
+
keyTimes: "0;0.75;1",
|
|
2067
|
+
keySplines: "0 0.26 0 1",
|
|
2068
|
+
values: "0;360;360;"
|
|
2069
|
+
})
|
|
2070
|
+
]
|
|
2068
2071
|
})
|
|
2069
2072
|
});
|
|
2070
2073
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -141,7 +141,7 @@ var ErrorText = function(param) {
|
|
|
141
141
|
};
|
|
142
142
|
var ErrorText_default = ErrorText;
|
|
143
143
|
// src/Common/fieldStyle.ts
|
|
144
|
-
var baseFieldStyle = "font-sans form-input h-11 w-full bg-white border-gray-200 dark:border-gray-500 dark:bg-slate-
|
|
144
|
+
var baseFieldStyle = "font-sans form-input h-11 w-full bg-white border-gray-200 dark:border-gray-500 dark:bg-slate-950 dark:text-gray-200 text-gray-700 dark:placeholder-gray-400 placeholder-gray-400 rounded-md px-2 py-1 focus:outline-none focus:border-blue-300 focus:ring focus:ring-blue-200 focus:ring-opacity-50";
|
|
145
145
|
var createExerciseElementStyle = "flex flex-col justify-between space-y-2 w-full p-4 bg-white dark:bg-slate-800 rounded-xl text-gray-800 dark:text-gray-200 border-2 border-slate-200 dark:border-slate-400 overflow-hidden transition-all";
|
|
146
146
|
var exerciseDeleteButton = "w-6 h-6 flex justify-center text-gray-700 dark:text-gray-200 hover:text-red-600 dark:hover:text-red-500 transition-all duration-150 hover:scale-125";
|
|
147
147
|
var xIconButton = "w-6 h-6 flex justify-center text-gray-700 dark:text-gray-200 hover:text-gray-950 dark:hover:text-gray-100 transition-all duration-150 hover:scale-125";
|
|
@@ -383,9 +383,9 @@ var Overlay = function(param) {
|
|
|
383
383
|
className: "animate-fade-in",
|
|
384
384
|
children: withContainer ? /* @__PURE__ */ jsx10("div", {
|
|
385
385
|
onClick: onDismissed || onClick,
|
|
386
|
-
className: "top-0 left-0 fixed w-full h-screen backdrop-blur-lg flex items-center justify-center
|
|
386
|
+
className: "top-0 left-0 fixed w-full h-screen dark:bg-black/70 bg-white/60 backdrop-blur-lg flex items-center justify-center",
|
|
387
387
|
style: {
|
|
388
|
-
background:
|
|
388
|
+
// background: dark ? `rgba(0, 0, 0, ${opacity || '0.7'})` : `rgba(255, 255, 255, ${opacity || '0.6'})`,
|
|
389
389
|
zIndex: zIndex || 9999
|
|
390
390
|
},
|
|
391
391
|
children: children
|
|
@@ -401,23 +401,23 @@ var Button = function(param) {
|
|
|
401
401
|
var styled = function() {
|
|
402
402
|
switch(kind){
|
|
403
403
|
case "primary":
|
|
404
|
-
return "bg-primary font-header text-white font-medium transition-all duration-75
|
|
404
|
+
return clsx("bg-primary font-header text-white font-medium transition-all duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
405
405
|
case "indigo":
|
|
406
|
-
return "bg-indigo-500 font-header text-white font-medium transition-all duration-75
|
|
406
|
+
return clsx("bg-indigo-500 font-header text-white font-medium transition-all duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
407
407
|
case "green":
|
|
408
|
-
return "bg-green-500 font-header text-white font-medium transition-all duration-75
|
|
408
|
+
return clsx("bg-green-500 font-header text-white font-medium transition-all duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
409
409
|
case "teal":
|
|
410
|
-
return "bg-teal-500 font-header text-white font-medium transition-all duration-75
|
|
410
|
+
return clsx("bg-teal-500 font-header text-white font-medium transition-all duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
411
411
|
case "secondary":
|
|
412
|
-
return "bg-secondary text-white font-header font-medium transition-all duration-75
|
|
412
|
+
return clsx("bg-secondary text-white font-header font-medium transition-all duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
413
413
|
case "base":
|
|
414
|
-
return "bg-white border-1 font-header border-gray-200 dark:bg-slate-600 dark:text-gray-100 transition-all duration-75
|
|
414
|
+
return clsx("bg-white border-1 font-header border-gray-200 dark:bg-slate-600 dark:text-gray-100 transition-all duration-75 disabled:opacity-50 disabled:cursor-not-allowed dark:hover:bg-slate-400 hover:bg-slate-100");
|
|
415
415
|
case "gray":
|
|
416
|
-
return "bg-slate-400 dark:bg-slate-700 font-header text-white border-1 font-medium transition-opacity duration-75
|
|
416
|
+
return clsx("bg-slate-400 dark:bg-slate-700 font-header text-white border-1 font-medium transition-opacity duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
417
417
|
case "alert":
|
|
418
|
-
return "bg-amber-500 font-header text-white transition-all duration-75
|
|
418
|
+
return clsx("bg-amber-500 font-header text-white transition-all duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
419
419
|
case "warning":
|
|
420
|
-
return "bg-red-500 font-header text-white font-medium transition-opacity duration-
|
|
420
|
+
return clsx("bg-red-500 font-header text-white font-medium transition-opacity duration-75 disabled:opacity-50 disabled:cursor-not-allowed hover:bg-black/10");
|
|
421
421
|
default:
|
|
422
422
|
break;
|
|
423
423
|
}
|
|
@@ -1784,7 +1784,7 @@ var AnimateLogo = function() {
|
|
|
1784
1784
|
if (isFirefox) {
|
|
1785
1785
|
return /* @__PURE__ */ jsx35("svg", {
|
|
1786
1786
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1787
|
-
className: "animate-
|
|
1787
|
+
className: "animate-spin",
|
|
1788
1788
|
viewBox: "0 0 600 600",
|
|
1789
1789
|
children: /* @__PURE__ */ jsx35("g", {
|
|
1790
1790
|
children: /* @__PURE__ */ jsxs16("path", {
|
|
@@ -1830,27 +1830,30 @@ var AnimateLogo = function() {
|
|
|
1830
1830
|
return /* @__PURE__ */ jsx35("svg", {
|
|
1831
1831
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1832
1832
|
viewBox: "0 0 600 600",
|
|
1833
|
-
children: /* @__PURE__ */
|
|
1833
|
+
children: /* @__PURE__ */ jsxs16("g", {
|
|
1834
1834
|
style: {
|
|
1835
1835
|
transformOrigin: "center"
|
|
1836
1836
|
},
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1837
|
+
transform: "translate(300 300) rotate(0)",
|
|
1838
|
+
height: 176,
|
|
1839
|
+
width: 176,
|
|
1840
|
+
children: [
|
|
1841
|
+
/* @__PURE__ */ jsx35("path", {
|
|
1842
|
+
className: "stroke-black dark:stroke-white text-gray-900 dark:text-gray-50",
|
|
1843
|
+
stroke: "currentColor",
|
|
1844
|
+
id: "motionPath",
|
|
1845
|
+
fill: "none",
|
|
1846
|
+
strokeLinecap: "round",
|
|
1847
|
+
height: 600,
|
|
1848
|
+
width: 600,
|
|
1849
|
+
style: {
|
|
1850
|
+
transformOrigin: "center"
|
|
1851
|
+
},
|
|
1852
|
+
strokeMiterlimit: "10",
|
|
1853
|
+
strokeWidth: "82",
|
|
1854
|
+
strokeDasharray: "1600",
|
|
1855
|
+
d: "M466.49 164.79c17.79 34.76 25.48 75.66 19.08 118.96-11.28 76.36-67.11 139.06-141.89 158.25-127.11 32.61-243.49-61.27-245.86-184.81C95.79 150.86 182.9 60.52 289.23 58.56c33.95-.63 66.08 7.48 94.22 22.29 0 0 15.68 6.34 10.14 23.19 0 0-68.52 219.82-352.61 268.06",
|
|
1856
|
+
children: /* @__PURE__ */ jsx35("animate", {
|
|
1854
1857
|
attributeName: "stroke-dashoffset",
|
|
1855
1858
|
to: "0",
|
|
1856
1859
|
from: "1600",
|
|
@@ -1861,22 +1864,22 @@ var AnimateLogo = function() {
|
|
|
1861
1864
|
keyTimes: "0;0.375;0.5;0.875;1",
|
|
1862
1865
|
keySplines: "0 0.26 0 1;0 0.26 0 1;0 0.26 0 1;0 0.26 0 1",
|
|
1863
1866
|
values: "1600;0;0;1600;1600"
|
|
1864
|
-
}),
|
|
1865
|
-
/* @__PURE__ */ jsx35("animateTransform", {
|
|
1866
|
-
attributeName: "transform",
|
|
1867
|
-
type: "rotate",
|
|
1868
|
-
from: "0 300 300",
|
|
1869
|
-
to: "360 300 300",
|
|
1870
|
-
dur: "2s",
|
|
1871
|
-
fill: "freeze",
|
|
1872
|
-
repeatCount: "indefinite",
|
|
1873
|
-
calcMode: "cubic",
|
|
1874
|
-
keyTimes: "0;0.75;1",
|
|
1875
|
-
keySplines: "0 0.26 0 1",
|
|
1876
|
-
values: "0 300 300;360 300 300;360 300 300;"
|
|
1877
1867
|
})
|
|
1878
|
-
|
|
1879
|
-
|
|
1868
|
+
}),
|
|
1869
|
+
/* @__PURE__ */ jsx35("animateTransform", {
|
|
1870
|
+
attributeName: "transform",
|
|
1871
|
+
type: "rotate",
|
|
1872
|
+
from: "0",
|
|
1873
|
+
to: "360",
|
|
1874
|
+
dur: "2s",
|
|
1875
|
+
fill: "freeze",
|
|
1876
|
+
repeatCount: "indefinite",
|
|
1877
|
+
calcMode: "cubic",
|
|
1878
|
+
keyTimes: "0;0.75;1",
|
|
1879
|
+
keySplines: "0 0.26 0 1",
|
|
1880
|
+
values: "0;360;360;"
|
|
1881
|
+
})
|
|
1882
|
+
]
|
|
1880
1883
|
})
|
|
1881
1884
|
});
|
|
1882
1885
|
};
|