hazo_ui 2.7.2 → 2.7.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.
- package/README.md +17 -2
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +10 -10
- package/tailwind.preset.js +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hazo_ui",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.3",
|
|
4
4
|
"description": "Set of UI components for common interaction elements in a SaaS app",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -81,24 +81,24 @@
|
|
|
81
81
|
"@tiptap/suggestion": "^3.14.0",
|
|
82
82
|
"@uiw/react-color": "^2.9.2",
|
|
83
83
|
"class-variance-authority": "^0.7.0",
|
|
84
|
-
"clsx": "^2.1.
|
|
84
|
+
"clsx": "^2.1.1",
|
|
85
85
|
"date-fns": "^3.3.1",
|
|
86
|
-
"lucide-react": "^0.
|
|
86
|
+
"lucide-react": "^0.553.0",
|
|
87
87
|
"react-day-picker": "^8.10.0",
|
|
88
88
|
"react-icons": "^5.5.0",
|
|
89
|
-
"tailwind-merge": "^
|
|
90
|
-
"
|
|
89
|
+
"tailwind-merge": "^3.5.0",
|
|
90
|
+
"tw-animate-css": "^1.4.0"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
|
-
"@
|
|
93
|
+
"@tailwindcss/postcss": "^4.2.4",
|
|
94
|
+
"@types/react": "^18.3.3",
|
|
94
95
|
"@types/react-dom": "^18.3.0",
|
|
95
|
-
"
|
|
96
|
-
"postcss": "^8.4.47",
|
|
96
|
+
"postcss": "^8.4.49",
|
|
97
97
|
"react": "^18.3.1",
|
|
98
98
|
"react-dom": "^18.3.1",
|
|
99
|
-
"tailwindcss": "^
|
|
99
|
+
"tailwindcss": "^4.2.4",
|
|
100
100
|
"tsup": "^8.0.0",
|
|
101
|
-
"typescript": "^5.
|
|
101
|
+
"typescript": "^5.7.2"
|
|
102
102
|
},
|
|
103
103
|
"repository": {
|
|
104
104
|
"type": "git",
|
package/tailwind.preset.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* hazo_ui Tailwind CSS Preset
|
|
2
|
+
* hazo_ui Tailwind CSS Preset (v4-compatible)
|
|
3
3
|
*
|
|
4
4
|
* Use this preset in your tailwind.config.js/ts:
|
|
5
5
|
*
|
|
@@ -12,10 +12,11 @@
|
|
|
12
12
|
* './node_modules/hazo_ui/dist/**\/*.js',
|
|
13
13
|
* ],
|
|
14
14
|
* };
|
|
15
|
+
*
|
|
16
|
+
* NOTE: For accordion / collapse animations, add `@plugin "tw-animate-css";`
|
|
17
|
+
* to your globals.css and install `tw-animate-css` as a dependency.
|
|
15
18
|
*/
|
|
16
19
|
|
|
17
|
-
import tailwindcssAnimate from 'tailwindcss-animate';
|
|
18
|
-
|
|
19
20
|
/** @type {import('tailwindcss').Config} */
|
|
20
21
|
const hazoUiPreset = {
|
|
21
22
|
darkMode: ['class'],
|
|
@@ -84,7 +85,7 @@ const hazoUiPreset = {
|
|
|
84
85
|
},
|
|
85
86
|
},
|
|
86
87
|
},
|
|
87
|
-
plugins: [
|
|
88
|
+
plugins: [],
|
|
88
89
|
};
|
|
89
90
|
|
|
90
91
|
export default hazoUiPreset;
|