@gfazioli/mantine-reflection 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 +6 -0
  2. package/package.json +5 -2
package/README.md CHANGED
@@ -37,6 +37,12 @@ or
37
37
  yarn add @gfazioli/mantine-reflection
38
38
  ```
39
39
 
40
+ After installation import package styles at the root of your application:
41
+
42
+ ```tsx
43
+ import '@gfazioli/mantine-reflection/styles.css';
44
+ ```
45
+
40
46
  ## Usage
41
47
 
42
48
  ```tsx
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gfazioli/mantine-reflection",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Mantine Reflection is a React component that allows you to create a reflection effect on an image or any other component.",
5
5
  "homepage": "https://gfazioli.github.io/mantine-reflection/",
6
6
  "packageManager": "yarn@4.0.1",
@@ -32,7 +32,10 @@
32
32
  "./styles.css": "./dist/styles.css",
33
33
  "./styles.layer.css": "./dist/styles.layer.css"
34
34
  },
35
- "repository": "git+https://github.com/gfazioli/mantine-reflection.git",
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "https://github.com/gfazioli/mantine-reflection.git"
38
+ },
36
39
  "workspaces": [
37
40
  "docs"
38
41
  ],