@gfazioli/mantine-rings-progress 1.1.2 → 1.1.4
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 +17 -4
- package/package.json +25 -25
package/README.md
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
# Mantine Rings Progress Component
|
|
2
2
|
|
|
3
|
-
<
|
|
4
|
-
|
|
3
|
+
<div align="center">
|
|
4
|
+
|
|
5
|
+

|
|
5
6
|
|
|
6
|
-
</
|
|
7
|
+
</div>
|
|
7
8
|
|
|
8
9
|
---
|
|
9
10
|
|
|
@@ -11,6 +12,7 @@
|
|
|
11
12
|
|
|
12
13
|
[](https://www.npmjs.com/package/@gfazioli/mantine-rings-progress)
|
|
13
14
|
[](https://www.npmjs.com/package/@gfazioli/mantine-rings-progress)
|
|
15
|
+
[](https://www.npmjs.com/package/@gfazioli/mantine-rings-progress)
|
|
14
16
|

|
|
15
17
|
|
|
16
18
|
</div>
|
|
@@ -18,8 +20,19 @@
|
|
|
18
20
|
## Overview
|
|
19
21
|
|
|
20
22
|
This component is created on top of the [Mantine](https://mantine.dev/) library.
|
|
23
|
+
|
|
24
|
+
[](https://mantine.dev/)
|
|
26
|
+
|
|
21
27
|
Display progress with animated rings like the Apple Watch activity app.
|
|
22
|
-
|
|
28
|
+
|
|
29
|
+
[](https://gfazioli.github.io/mantine-rings-progress/)
|
|
31
|
+
[](https://mantine-extensions.vercel.app/)
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
👉 You can find more components on the [Mantine Extensions Hub](https://mantine-extensions.vercel.app/) library.
|
|
23
36
|
|
|
24
37
|
## Installation
|
|
25
38
|
|
package/package.json
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"name": "@gfazioli/mantine-rings-progress",
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Rings Progress component for Mantine",
|
|
5
|
-
"exports": {
|
|
6
|
-
".": {
|
|
7
|
-
"import": {
|
|
8
|
-
"default": "./dist/esm/index.mjs",
|
|
9
|
-
"types": "./dist/types/index.d.mts"
|
|
10
|
-
},
|
|
11
|
-
"require": {
|
|
12
|
-
"default": "./dist/cjs/index.cjs",
|
|
13
|
-
"types": "./dist/types/index.d.ts"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"./styles.css": "./dist/styles.css",
|
|
17
|
-
"./styles.layer.css": "./dist/styles.layer.css"
|
|
18
|
-
},
|
|
19
5
|
"homepage": "https://gfazioli.github.io/mantine-rings-progress/",
|
|
6
|
+
"packageManager": "yarn@4.0.1",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"author": "Giovambattista Fazioli <giovambattista.fazioli@gmail.com>",
|
|
20
9
|
"keywords": [
|
|
21
10
|
"extension",
|
|
22
11
|
"mantine",
|
|
12
|
+
"progress",
|
|
23
13
|
"react",
|
|
24
|
-
"typescript",
|
|
25
14
|
"react-component",
|
|
26
15
|
"ring",
|
|
27
|
-
"progress",
|
|
28
16
|
"rings",
|
|
29
|
-
"ringsprogress"
|
|
17
|
+
"ringsprogress",
|
|
18
|
+
"typescript"
|
|
30
19
|
],
|
|
31
|
-
"license": "MIT",
|
|
32
20
|
"main": "./dist/cjs/index.cjs",
|
|
33
21
|
"module": "./dist/esm/index.mjs",
|
|
34
|
-
"
|
|
35
|
-
"
|
|
22
|
+
"types": "./dist/types/index.d.ts",
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"import": {
|
|
26
|
+
"types": "./dist/types/index.d.mts",
|
|
27
|
+
"default": "./dist/esm/index.mjs"
|
|
28
|
+
},
|
|
29
|
+
"require": {
|
|
30
|
+
"types": "./dist/types/index.d.ts",
|
|
31
|
+
"default": "./dist/cjs/index.cjs"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"./styles.css": "./dist/styles.css",
|
|
35
|
+
"./styles.layer.css": "./dist/styles.layer.css"
|
|
36
|
+
},
|
|
37
|
+
"repository": "https://github.com/gfazioli/mantine-rings-progress.git",
|
|
36
38
|
"peerDependencies": {
|
|
37
39
|
"@mantine/core": ">=7.0.0",
|
|
38
40
|
"@mantine/hooks": ">=7.0.0",
|
|
39
41
|
"react": "^18.x || ^19.x",
|
|
40
42
|
"react-dom": "^18.x || ^19.x"
|
|
41
43
|
},
|
|
42
|
-
"
|
|
43
|
-
"types": "./dist/types/index.d.ts",
|
|
44
|
-
"version": "1.1.2"
|
|
44
|
+
"bugs": "https://github.com/gfazioli/mantine-rings-progress/issues"
|
|
45
45
|
}
|