@gfazioli/mantine-spinner 1.0.1 → 1.0.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 +2 -1
  2. package/package.json +26 -26
package/README.md CHANGED
@@ -12,6 +12,7 @@ https://github.com/user-attachments/assets/2401bfe1-e829-4057-a654-7d0a895a9605
12
12
 
13
13
  [![NPM version](https://img.shields.io/npm/v/%40gfazioli%2Fmantine-spinner?style=for-the-badge)](https://www.npmjs.com/package/@gfazioli/mantine-spinner)
14
14
  [![NPM Downloads](https://img.shields.io/npm/dm/%40gfazioli%2Fmantine-spinner?style=for-the-badge)](https://www.npmjs.com/package/@gfazioli/mantine-spinner)
15
+ [![NPM Downloads](https://img.shields.io/npm/dy/%40gfazioli%2Fmantine-spinner?style=for-the-badge&label=%20&color=f90)](https://www.npmjs.com/package/@gfazioli/mantine-spinner)
15
16
  ![NPM License](https://img.shields.io/npm/l/%40gfazioli%2Fmantine-spinner?style=for-the-badge)
16
17
 
17
18
  </div>
@@ -23,7 +24,7 @@ https://github.com/user-attachments/assets/2401bfe1-e829-4057-a654-7d0a895a9605
23
24
 
24
25
  This component is created on top of the [Mantine](https://mantine.dev/) library.
25
26
 
26
- It allows to create a spinner effect with any content.
27
+ It allows to create a spinner effect.
27
28
 
28
29
  You can find more components on the [Mantine Extensions Hub](https://mantine-extensions.vercel.app/) library.
29
30
 
package/package.json CHANGED
@@ -1,45 +1,45 @@
1
1
  {
2
+ "name": "@gfazioli/mantine-spinner",
3
+ "version": "1.0.3",
4
+ "description": "A Mantine React component offers customizable loading animations to enhance the user experience in React applications.",
5
+ "homepage": "https://gfazioli.github.io/mantine-spinner/",
6
+ "packageManager": "yarn@4.0.1",
7
+ "license": "MIT",
2
8
  "author": "Giovambattista Fazioli <giovambattista.fazioli@gmail.com>",
3
- "bugs": "https://github.com/gfazioli/mantine-spinner/issues",
4
- "description": "Spinner component is a wrapper for any component that can be flipped. It is used to create cards, flip boxes and more.",
9
+ "keywords": [
10
+ "animation",
11
+ "branding",
12
+ "extension",
13
+ "mantine",
14
+ "react",
15
+ "react-component",
16
+ "scroll",
17
+ "spinner",
18
+ "typescript"
19
+ ],
20
+ "main": "./dist/cjs/index.cjs",
21
+ "module": "./dist/esm/index.mjs",
22
+ "types": "./dist/types/index.d.ts",
5
23
  "exports": {
6
24
  ".": {
7
25
  "import": {
8
- "default": "./dist/esm/index.mjs",
9
- "types": "./dist/types/index.d.mts"
26
+ "types": "./dist/types/index.d.mts",
27
+ "default": "./dist/esm/index.mjs"
10
28
  },
11
29
  "require": {
12
- "default": "./dist/cjs/index.cjs",
13
- "types": "./dist/types/index.d.ts"
30
+ "types": "./dist/types/index.d.ts",
31
+ "default": "./dist/cjs/index.cjs"
14
32
  }
15
33
  },
16
34
  "./styles.css": "./dist/styles.css",
17
35
  "./styles.layer.css": "./dist/styles.layer.css"
18
36
  },
19
- "homepage": "https://gfazioli.github.io/mantine-spinner/",
20
- "keywords": [
21
- "extension",
22
- "mantine",
23
- "react",
24
- "typescript",
25
- "react-component",
26
- "animation",
27
- "spinner",
28
- "scroll",
29
- "branding"
30
- ],
31
- "license": "MIT",
32
- "main": "./dist/cjs/index.cjs",
33
- "module": "./dist/esm/index.mjs",
34
- "name": "@gfazioli/mantine-spinner",
35
- "packageManager": "yarn@4.0.1",
37
+ "repository": "https://github.com/gfazioli/mantine-spinner.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
- "repository": "https://github.com/gfazioli/mantine-spinner.git",
43
- "types": "./dist/types/index.d.ts",
44
- "version": "1.0.1"
44
+ "bugs": "https://github.com/gfazioli/mantine-spinner/issues"
45
45
  }