@mantine/carousel 5.0.0-alpha.9 → 5.0.0

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 +1 -1
  2. package/package.json +6 -5
package/README.md CHANGED
@@ -6,7 +6,7 @@ Embla based carousel
6
6
 
7
7
  ## Installation
8
8
 
9
- ```sh
9
+ ```bash
10
10
  # With yarn
11
11
  yarn add @mantine/core @mantine/hooks @mantine/carousel
12
12
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mantine/carousel",
3
3
  "description": "Embla based carousel",
4
- "version": "5.0.0-alpha.9",
4
+ "version": "5.0.0",
5
5
  "main": "cjs/index.js",
6
6
  "module": "esm/index.js",
7
7
  "types": "lib/index.d.ts",
@@ -22,12 +22,13 @@
22
22
  "slick"
23
23
  ],
24
24
  "peerDependencies": {
25
- "@mantine/core": "5.0.0-alpha.9",
26
- "@mantine/utils": "5.0.0-alpha.9",
27
- "@mantine/hooks": "5.0.0-alpha.9",
25
+ "@mantine/core": "5.0.0",
26
+ "@mantine/hooks": "5.0.0",
28
27
  "embla-carousel-react": "6.2.0",
29
28
  "react": ">=16.8.0"
30
29
  },
31
- "dependencies": {},
30
+ "dependencies": {
31
+ "@mantine/utils": "5.0.0"
32
+ },
32
33
  "devDependencies": {}
33
34
  }