@yamada-ui/progress 0.4.19 → 0.4.21
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/README.md
CHANGED
|
@@ -22,7 +22,7 @@ $ npm install @yamada-ui/progress
|
|
|
22
22
|
|
|
23
23
|
Wouldn't you like to contribute? That's amazing! We have prepared a [contribution guide](https://github.com/hirotomoyamada/yamada-ui/blob/main/CONTRIBUTING.md) to assist you.
|
|
24
24
|
|
|
25
|
-
##
|
|
25
|
+
## License
|
|
26
26
|
|
|
27
27
|
This package is licensed under the terms of the
|
|
28
28
|
[MIT license](https://github.com/hirotomoyamada/yamada-ui/blob/main/LICENSE).
|
|
@@ -90,7 +90,7 @@ var CircleProgress = forwardRef(
|
|
|
90
90
|
);
|
|
91
91
|
}
|
|
92
92
|
);
|
|
93
|
-
var Circle = (rest) => /* @__PURE__ */ jsx(ui.circle, { cx: 50, cy: 50, r: 42, fill: "transparent", ...rest });
|
|
93
|
+
var Circle = ({ ...rest }) => /* @__PURE__ */ jsx(ui.circle, { cx: 50, cy: 50, r: 42, fill: "transparent", ...rest });
|
|
94
94
|
var Shape = ({ size, isAnimation, speed, ...rest }) => {
|
|
95
95
|
const animation = useAnimation({
|
|
96
96
|
keyframes: {
|
package/dist/circle-progress.js
CHANGED
|
@@ -114,7 +114,7 @@ var CircleProgress = (0, import_core.forwardRef)(
|
|
|
114
114
|
);
|
|
115
115
|
}
|
|
116
116
|
);
|
|
117
|
-
var Circle = (rest) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_core.ui.circle, { cx: 50, cy: 50, r: 42, fill: "transparent", ...rest });
|
|
117
|
+
var Circle = ({ ...rest }) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_core.ui.circle, { cx: 50, cy: 50, r: 42, fill: "transparent", ...rest });
|
|
118
118
|
var Shape = ({ size, isAnimation, speed, ...rest }) => {
|
|
119
119
|
const animation = (0, import_use_animation.useAnimation)({
|
|
120
120
|
keyframes: {
|
package/dist/circle-progress.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -227,7 +227,7 @@ var CircleProgress = (0, import_core2.forwardRef)(
|
|
|
227
227
|
);
|
|
228
228
|
}
|
|
229
229
|
);
|
|
230
|
-
var Circle = (rest) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_core2.ui.circle, { cx: 50, cy: 50, r: 42, fill: "transparent", ...rest });
|
|
230
|
+
var Circle = ({ ...rest }) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_core2.ui.circle, { cx: 50, cy: 50, r: 42, fill: "transparent", ...rest });
|
|
231
231
|
var Shape = ({ size, isAnimation, speed, ...rest }) => {
|
|
232
232
|
const animation = (0, import_use_animation2.useAnimation)({
|
|
233
233
|
keyframes: {
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamada-ui/progress",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.21",
|
|
4
4
|
"description": "Yamada UI progress components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yamada",
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
"url": "https://github.com/hirotomoyamada/yamada-ui/issues"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@yamada-ui/core": "0.13.
|
|
39
|
-
"@yamada-ui/utils": "0.
|
|
40
|
-
"@yamada-ui/use-value": "0.2.
|
|
41
|
-
"@yamada-ui/use-token": "0.3.
|
|
42
|
-
"@yamada-ui/use-animation": "0.4.
|
|
38
|
+
"@yamada-ui/core": "0.13.2",
|
|
39
|
+
"@yamada-ui/utils": "0.4.1",
|
|
40
|
+
"@yamada-ui/use-value": "0.2.21",
|
|
41
|
+
"@yamada-ui/use-token": "0.3.15",
|
|
42
|
+
"@yamada-ui/use-animation": "0.4.10"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"react": "^18.0.0",
|