@smitch/breeze 2.2.12 → 2.2.13
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.
- package/README.md +6 -0
- package/package.json +13 -9
package/README.md
CHANGED
|
@@ -60,8 +60,14 @@ dependency—install it if not already present (`npm install -D tailwindcss post
|
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
62
|
npm install @smitch/breeze
|
|
63
|
+
# or
|
|
64
|
+
pnpm add @smitch/breeze # recommended — auto-installs peers
|
|
65
|
+
# or
|
|
66
|
+
yarn add @smitch/breeze
|
|
63
67
|
```
|
|
64
68
|
|
|
69
|
+
> **Tip**: Using **pnpm** or **Yarn Berry**? All Tailwind peer dependencies install automatically!
|
|
70
|
+
|
|
65
71
|
### 2. Configure Tailwind 3
|
|
66
72
|
|
|
67
73
|
To ensure Breeze UI works correctly, configure Tailwind CSS v3. All releases use v3.x.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smitch/breeze",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.13",
|
|
4
4
|
"description": "A lightweight, Tailwind-powered React/Next.js UI component library.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -23,21 +23,25 @@
|
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@smitch/js-lib": "^0.3.22",
|
|
26
|
-
"tailwindcss": "^3.4.14",
|
|
27
|
-
"@tailwindcss/forms": "^0.5.9",
|
|
28
26
|
"react-icons": "^5.5.0",
|
|
29
27
|
"prismjs": "^1.30.0",
|
|
30
|
-
"tailwind-merge": "^2.5.4"
|
|
31
|
-
"postcss": "^8.4.47",
|
|
32
|
-
"autoprefixer": "^10.4.20",
|
|
33
|
-
"postcss-import": "^15.1.0"
|
|
28
|
+
"tailwind-merge": "^2.5.4"
|
|
34
29
|
},
|
|
35
30
|
"peerDependencies": {
|
|
36
31
|
"react": ">=19",
|
|
37
32
|
"react-dom": "^19.0.0",
|
|
38
|
-
"next": ">=15"
|
|
33
|
+
"next": ">=15",
|
|
34
|
+
"tailwindcss": "^3.4.0",
|
|
35
|
+
"@tailwindcss/forms": "^0.5.9",
|
|
36
|
+
"postcss": "^8.4.47",
|
|
37
|
+
"autoprefixer": "^10.4.20"
|
|
39
38
|
},
|
|
40
39
|
"devDependencies": {
|
|
41
|
-
"@types/prismjs": "^1.26.5"
|
|
40
|
+
"@types/prismjs": "^1.26.5",
|
|
41
|
+
"tailwindcss": "^3.4.14",
|
|
42
|
+
"@tailwindcss/forms": "^0.5.9",
|
|
43
|
+
"postcss": "^8.4.47",
|
|
44
|
+
"autoprefixer": "^10.4.20",
|
|
45
|
+
"postcss-import": "^15.1.0"
|
|
42
46
|
}
|
|
43
47
|
}
|