najm-kit 0.0.7 → 0.0.9
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/dist/index.d.ts +474 -102
- package/dist/index.mjs +2605 -1038
- package/dist/json.mjs +131 -11
- package/dist/styles.css +1374 -62
- package/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "najm-kit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Reusable React UI component package for Najm framework",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -44,6 +44,8 @@
|
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"react": ">=18",
|
|
46
46
|
"react-dom": ">=18",
|
|
47
|
+
"react-hook-form": "^7",
|
|
48
|
+
"@hookform/resolvers": "^5",
|
|
47
49
|
"zod": ">=4",
|
|
48
50
|
"@uiw/react-codemirror": "^4.25.0",
|
|
49
51
|
"@codemirror/state": "^6.6.0",
|
|
@@ -81,7 +83,6 @@
|
|
|
81
83
|
}
|
|
82
84
|
},
|
|
83
85
|
"dependencies": {
|
|
84
|
-
"@hookform/resolvers": "^5",
|
|
85
86
|
"@radix-ui/react-avatar": "^1",
|
|
86
87
|
"@radix-ui/react-checkbox": "^1",
|
|
87
88
|
"@radix-ui/react-collapsible": "^1",
|
|
@@ -93,6 +94,7 @@
|
|
|
93
94
|
"@radix-ui/react-radio-group": "^1",
|
|
94
95
|
"@radix-ui/react-select": "^2",
|
|
95
96
|
"@radix-ui/react-separator": "^1",
|
|
97
|
+
"@radix-ui/react-slider": "^1.3.6",
|
|
96
98
|
"@radix-ui/react-slot": "^1",
|
|
97
99
|
"@radix-ui/react-switch": "^1",
|
|
98
100
|
"@radix-ui/react-tabs": "^1",
|
|
@@ -104,9 +106,10 @@
|
|
|
104
106
|
"cmdk": "^1",
|
|
105
107
|
"date-fns": "^4",
|
|
106
108
|
"lucide-react": "^0.474",
|
|
109
|
+
"overlayscrollbars": "^2.16.0",
|
|
110
|
+
"overlayscrollbars-react": "^0.5.6",
|
|
107
111
|
"react-day-picker": "^9",
|
|
108
112
|
"react-file-icon": "^1.6.0",
|
|
109
|
-
"react-hook-form": "^7",
|
|
110
113
|
"react-international-phone": "^4.8.0",
|
|
111
114
|
"sonner": "^2",
|
|
112
115
|
"tailwind-merge": "^3",
|
|
@@ -115,6 +118,7 @@
|
|
|
115
118
|
"devDependencies": {
|
|
116
119
|
"@testing-library/react": "^16",
|
|
117
120
|
"@testing-library/user-event": "^14.6.1",
|
|
121
|
+
"@hookform/resolvers": "^5",
|
|
118
122
|
"@types/react": "^19",
|
|
119
123
|
"@types/react-dom": "^19",
|
|
120
124
|
"@types/react-file-icon": "^1.0.5",
|
|
@@ -122,6 +126,7 @@
|
|
|
122
126
|
"autoprefixer": "^10",
|
|
123
127
|
"happy-dom": "^17",
|
|
124
128
|
"postcss": "^8",
|
|
129
|
+
"react-hook-form": "^7",
|
|
125
130
|
"postcss-prefix-selector": "^2",
|
|
126
131
|
"rimraf": "^6",
|
|
127
132
|
"tailwindcss": "^3",
|