@gfazioli/mantine-reflection 1.1.0 → 1.1.2

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 +12 -15
  2. package/package.json +22 -22
package/README.md CHANGED
@@ -1,25 +1,22 @@
1
1
  # Mantine Reflection Component
2
2
 
3
- <p align="center">
4
- <img width="838" alt="image" src="https://github.com/gfazioli/mantine-reflection/assets/432181/74c716a8-6fba-44a2-8f3d-517772e056f7">
5
- </p>
3
+ <div align="center">
4
+
5
+ ![image](https://github.com/gfazioli/mantine-reflection/assets/432181/74c716a8-6fba-44a2-8f3d-517772e056f7)
6
+
7
+ </div>
6
8
 
7
9
  ---
8
10
 
9
- <p align="center">
10
- <a aria-label="NPM version" href="https://www.npmjs.com/package/@gfazioli/mantine-reflection">
11
- <img alt="NPM version" src="https://img.shields.io/npm/v/%40gfazioli%2Fmantine-reflection?style=for-the-badge">
12
- </a>
13
-
14
- <a aria-label="NPM version" href="https://www.npmjs.com/package/@gfazioli/mantine-reflection">
15
- <img alt="NPM Downloads" src="https://img.shields.io/npm/dm/%40gfazioli%2Fmantine-reflection?style=for-the-badge">
16
- </a>
11
+ <div align="center">
12
+
13
+ [![NPM version](https://img.shields.io/npm/v/%40gfazioli%2Fmantine-reflection?style=for-the-badge)](https://www.npmjs.com/package/@gfazioli/mantine-reflection)
14
+ [![NPM Downloads](https://img.shields.io/npm/dm/%40gfazioli%2Fmantine-reflection?style=for-the-badge)](https://www.npmjs.com/package/@gfazioli/mantine-reflection)
15
+ [![NPM Downloads](https://img.shields.io/npm/dy/%40gfazioli%2Fmantine-reflection?style=for-the-badge&label=%20&color=f90)](https://www.npmjs.com/package/@gfazioli/mantine-reflection)
16
+ [![NPM License](https://img.shields.io/npm/l/%40gfazioli%2Fmantine-reflection?style=for-the-badge)](https://github.com/gfazioli/mantine-flip/blob/master/LICENSE)
17
17
 
18
- <a aria-label="NPM License" href="https://github.com/gfazioli/mantine-flip/blob/master/LICENSE">
19
- <img alt="NPM License" src="https://img.shields.io/npm/l/%40gfazioli%2Fmantine-reflection?style=for-the-badge">
20
- </a>
21
18
 
22
- </p>
19
+ </div>
23
20
 
24
21
  ## Overview
25
22
 
package/package.json CHANGED
@@ -1,22 +1,11 @@
1
1
  {
2
- "author": "Giovambattista Fazioli <giovambattista.fazioli@gmail.com>",
3
- "bugs": "https://github.com/gfazioli/mantine-reflection/issues",
2
+ "name": "@gfazioli/mantine-reflection",
3
+ "version": "1.1.2",
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
- "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-reflection/",
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",
@@ -26,18 +15,29 @@
26
15
  "reflection",
27
16
  "typescript"
28
17
  ],
29
- "license": "MIT",
30
18
  "main": "./dist/cjs/index.cjs",
31
19
  "module": "./dist/esm/index.mjs",
32
- "name": "@gfazioli/mantine-reflection",
33
- "packageManager": "yarn@4.0.1",
20
+ "types": "./dist/types/index.d.ts",
21
+ "exports": {
22
+ ".": {
23
+ "import": {
24
+ "types": "./dist/types/index.d.mts",
25
+ "default": "./dist/esm/index.mjs"
26
+ },
27
+ "require": {
28
+ "types": "./dist/types/index.d.ts",
29
+ "default": "./dist/cjs/index.cjs"
30
+ }
31
+ },
32
+ "./styles.css": "./dist/styles.css",
33
+ "./styles.layer.css": "./dist/styles.layer.css"
34
+ },
35
+ "repository": "https://github.com/gfazioli/mantine-reflection.git",
34
36
  "peerDependencies": {
35
37
  "@mantine/core": ">=7.0.0",
36
38
  "@mantine/hooks": ">=7.0.0",
37
39
  "react": "^18.x || ^19.x",
38
40
  "react-dom": "^18.x || ^19.x"
39
41
  },
40
- "repository": "https://github.com/gfazioli/mantine-reflection.git",
41
- "types": "./dist/types/index.d.ts",
42
- "version": "1.1.0"
42
+ "bugs": "https://github.com/gfazioli/mantine-reflection/issues"
43
43
  }