|
3 | 3 | "name": "acme", |
4 | 4 | "homepage": "https://acme.com", |
5 | 5 | "items": [ |
6 | | - { |
7 | | - "name": "hello-world", |
8 | | - "type": "registry:component", |
9 | | - "title": "Hello World", |
10 | | - "description": "A simple hello world component", |
11 | | - "registryDependencies": ["button"], |
12 | | - "files": [ |
13 | | - { |
14 | | - "path": "registry/new-york/blocks/hello-world/hello-world.tsx", |
15 | | - "type": "registry:component" |
16 | | - } |
17 | | - ] |
18 | | - }, |
19 | | - { |
20 | | - "name": "example-form", |
21 | | - "type": "registry:component", |
22 | | - "title": "Example Form", |
23 | | - "description": "A contact form with Zod validation.", |
24 | | - "dependencies": ["zod"], |
25 | | - "registryDependencies": ["button", "input", "label", "textarea", "card"], |
26 | | - "files": [ |
27 | | - { |
28 | | - "path": "registry/new-york/blocks/example-form/example-form.tsx", |
29 | | - "type": "registry:component" |
30 | | - } |
31 | | - ] |
32 | | - }, |
33 | 6 | { |
34 | 7 | "name": "complex-component", |
35 | 8 | "type": "registry:component", |
|
195 | 168 | "title": "Badge Input", |
196 | 169 | "description": "An input component that displays values as removable badges, supporting multiple entries.", |
197 | 170 | "registryDependencies": ["badge"], |
198 | | - "dependencies": [ |
199 | | - "mobx", |
200 | | - "mobx-react", |
201 | | - "mobx-react-helper", |
202 | | - "web-utility" |
203 | | - ], |
| 171 | + "dependencies": ["mobx-react", "mobx-react-helper", "web-utility"], |
204 | 172 | "files": [ |
205 | 173 | { |
206 | 174 | "path": "registry/new-york/blocks/badge-input/badge-input.tsx", |
|
213 | 181 | "type": "registry:component", |
214 | 182 | "title": "Range Input", |
215 | 183 | "description": "A range slider input with optional custom icon display for each step.", |
216 | | - "dependencies": [ |
217 | | - "lucide-react", |
218 | | - "mobx", |
219 | | - "mobx-react", |
220 | | - "mobx-react-helper" |
221 | | - ], |
| 184 | + "dependencies": ["mobx-react", "mobx-react-helper"], |
222 | 185 | "files": [ |
223 | 186 | { |
224 | 187 | "path": "registry/new-york/blocks/range-input/range-input.tsx", |
|
252 | 215 | "title": "Form Field", |
253 | 216 | "description": "A unified form field component supporting input, textarea, and select elements with labels.", |
254 | 217 | "registryDependencies": ["input", "label"], |
| 218 | + "dependencies": ["web-utility"], |
255 | 219 | "files": [ |
256 | 220 | { |
257 | 221 | "path": "registry/new-york/blocks/form-field/form-field.tsx", |
258 | 222 | "type": "registry:component" |
259 | 223 | } |
260 | 224 | ] |
261 | | - }, |
262 | | - { |
263 | | - "name": "searchable-input", |
264 | | - "type": "registry:component", |
265 | | - "title": "Searchable Input", |
266 | | - "description": "A searchable select input with badge display, supporting single or multiple selection.", |
267 | | - "registryDependencies": ["button", "input"], |
268 | | - "dependencies": [ |
269 | | - "lodash.debounce", |
270 | | - "mobx", |
271 | | - "mobx-react", |
272 | | - "mobx-react-helper", |
273 | | - "mobx-restful", |
274 | | - "web-utility" |
275 | | - ], |
276 | | - "files": [ |
277 | | - { |
278 | | - "path": "registry/new-york/blocks/searchable-input/searchable-input.tsx", |
279 | | - "type": "registry:component" |
280 | | - } |
281 | | - ] |
282 | 225 | } |
283 | 226 | ] |
284 | 227 | } |
0 commit comments