@gfazioli/mantine-rings-progress 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +5 -2
package/README.md CHANGED
@@ -35,6 +35,11 @@ or
35
35
  ```sh
36
36
  yarn add @gfazioli/mantine-rings-progress
37
37
  ```
38
+ After installation import package styles at the root of your application:
39
+
40
+ ```tsx
41
+ import '@gfazioli/mantine-rings-progress/styles.css';
42
+ ```
38
43
 
39
44
  ## Usage
40
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gfazioli/mantine-rings-progress",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Rings Progress component for Mantine",
5
5
  "homepage": "https://gfazioli.github.io/mantine-rings-progress/",
6
6
  "packageManager": "yarn@4.0.1",
@@ -34,7 +34,10 @@
34
34
  "./styles.css": "./dist/styles.css",
35
35
  "./styles.layer.css": "./dist/styles.layer.css"
36
36
  },
37
- "repository": "git+https://github.com/gfazioli/mantine-rings-progress.git",
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "https://github.com/gfazioli/mantine-rings-progress.git"
40
+ },
38
41
  "workspaces": [
39
42
  "docs"
40
43
  ],