@smitch/breeze 2.2.4 → 2.2.5
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 +3 -4
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -13,9 +13,9 @@ Live demo: [https://breezeui.site](https://breezeui.site)
|
|
|
13
13
|
- [Getting Started](#getting-started)
|
|
14
14
|
- [1. Installation](#1-installation)
|
|
15
15
|
- [2. Configure Tailwind 3](#2-configure-tailwind-3)
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
- [1. Generate Tailwind Config Files](#1-generate-tailwind-config-files)
|
|
17
|
+
- [2. Configure `tailwind.config.js`](#2-configure-tailwindconfigjs)
|
|
18
|
+
- [3. Add Tailwind Directives to CSS](#3-add-tailwind-directives-to-css)
|
|
19
19
|
- [Basic Usage](#basic-usage)
|
|
20
20
|
- [Charts Usage](#charts-usage)
|
|
21
21
|
- [Chart Usage Example](#chart-usage-example)
|
|
@@ -145,7 +145,6 @@ const config: Config = {
|
|
|
145
145
|
require("@tailwindcss/forms")({
|
|
146
146
|
strategy: "class",
|
|
147
147
|
}),
|
|
148
|
-
require("@tailwindcss/typography"),
|
|
149
148
|
],
|
|
150
149
|
};
|
|
151
150
|
export default config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smitch/breeze",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.5",
|
|
4
4
|
"description": "A lightweight, Tailwind-powered React/Next.js UI component library.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"keywords": [
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
"@smitch/js-lib": "^0.3.22",
|
|
24
24
|
"react-icons": "^5.5.0",
|
|
25
25
|
"prismjs": "^1.30.0",
|
|
26
|
+
"tailwindcss": ">=3",
|
|
27
|
+
"@tailwindcss/forms": "^0.5.9",
|
|
26
28
|
"tailwind-merge": "^2.5.4"
|
|
27
29
|
},
|
|
28
30
|
"peerDependencies": {
|
|
29
31
|
"react": ">=19",
|
|
30
32
|
"react-dom": "^19.0.0",
|
|
31
|
-
"next": ">=15"
|
|
32
|
-
"tailwindcss": ">=3",
|
|
33
|
-
"@tailwindcss/forms": "^0.5.9",
|
|
34
|
-
"@tailwindcss/typography": "^0.5.15"
|
|
33
|
+
"next": ">=15"
|
|
35
34
|
},
|
|
36
35
|
"devDependencies": {
|
|
37
|
-
"@types/prismjs": "^1.26.5"
|
|
36
|
+
"@types/prismjs": "^1.26.5",
|
|
37
|
+
"postcss-import": "^15.1.0"
|
|
38
38
|
},
|
|
39
39
|
"types": "index.d.ts",
|
|
40
40
|
"typings": "index.d.ts",
|