-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.json
More file actions
430 lines (430 loc) · 12.7 KB
/
Copy pathregistry.json
File metadata and controls
430 lines (430 loc) · 12.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "UI Components",
"author": "Raul Carini <contact@raulcarini.dev>",
"homepage": "https://ui.raulcarini.dev",
"items": [
{
"name": "icon-picker",
"type": "registry:block",
"title": "Icon Picker",
"description": "A simple icon picker component.",
"files": [
{
"path": "registry/icon-picker/icon-picker.tsx",
"type": "registry:component"
},
{
"path": "hooks/use-debounce.ts",
"type": "registry:hook"
}
],
"registryDependencies": ["input", "scroll-area"],
"dependencies": ["lucide-react"]
},
{
"name": "icon-picker-multiple",
"type": "registry:block",
"title": "Icon Picker Multiple",
"description": "A simple icon picker component with multiple selectable icons.",
"files": [
{
"path": "registry/icon-picker/icon-picker-multiple.tsx",
"type": "registry:component"
},
{
"path": "hooks/use-debounce.ts",
"type": "registry:hook"
}
],
"registryDependencies": ["input", "scroll-area", "button"],
"dependencies": ["lucide-react"]
},
{
"name": "icon-picker-custom-color",
"type": "registry:block",
"title": "Icon Picker Custom Color",
"description": "A simple icon picker component with custom color.",
"files": [
{
"path": "registry/icon-picker/icon-picker-custom-color.tsx",
"type": "registry:component"
},
{
"path": "hooks/use-debounce.ts",
"type": "registry:hook"
}
],
"registryDependencies": [
"input",
"scroll-area",
"button",
"radio-group",
"popover"
],
"dependencies": ["lucide-react"]
},
{
"name": "icon-picker-virtua",
"type": "registry:block",
"title": "Icon Picker Virtualized",
"description": "A simple icon picker component with virtualization.",
"files": [
{
"path": "registry/icon-picker/icon-picker-virtua.tsx",
"type": "registry:component"
},
{
"path": "hooks/use-debounce.ts",
"type": "registry:hook"
}
],
"registryDependencies": ["input"],
"dependencies": ["lucide-react", "virtua"]
},
{
"name": "icon-picker-tanstack",
"type": "registry:block",
"title": "Icon Picker Virtualized",
"description": "A simple icon picker component with virtualization.",
"files": [
{
"path": "registry/icon-picker/icon-picker-tanstack.tsx",
"type": "registry:component"
},
{
"path": "hooks/use-debounce.ts",
"type": "registry:hook"
}
],
"registryDependencies": ["input"],
"dependencies": ["lucide-react", "@tanstack/react-virtual"]
},
{
"name": "icon-picker-virtualized",
"type": "registry:block",
"title": "Icon Picker Virtualized",
"description": "A simple icon picker component with virtualization.",
"files": [
{
"path": "registry/icon-picker/icon-picker-virtualized.tsx",
"type": "registry:component"
},
{
"path": "hooks/use-debounce.ts",
"type": "registry:hook"
}
],
"registryDependencies": ["input"],
"dependencies": ["lucide-react", "react-virtualized"],
"devDependencies": ["@types/react-virtualized"]
},
{
"name": "icon-picker-popover",
"type": "registry:block",
"title": "Icon Picker Popover",
"description": "A simple icon picker component with a popover.",
"files": [
{
"path": "registry/icon-picker/icon-picker-popover.tsx",
"type": "registry:component"
}
],
"registryDependencies": [
"input",
"popover",
"https://ui.raulcarini.dev/r/icon-picker-virtualized.json"
],
"dependencies": ["lucide-react"]
},
{
"name": "github-contributions",
"type": "registry:block",
"title": "GitHub Contributions",
"description": "A basic GitHub contributions component.",
"files": [
{
"path": "registry/github-contributions/github-contributions.tsx",
"type": "registry:component"
}
],
"cssVars": {
"theme": { "--color-github-0": "var(--muted)" },
"light": {
"github-1": "oklch(0.87 0.1182 148.74)",
"github-2": "oklch(0.73 0.1781 148.54)",
"github-3": "oklch(0.63 0.157 148.35)",
"github-4": "oklch(0.48 0.1122 150.02)"
},
"dark": {
"github-1": "oklch(0.34 0.073 156.73)",
"github-2": "oklch(0.47 0.126255 150.8624)",
"github-3": "oklch(0.64 0.1777 146.24)",
"github-4": "oklch(0.76 0.2121 145.62)"
}
}
},
{
"name": "github-contributions-advanced",
"type": "registry:block",
"title": "GitHub Contributions Advanced",
"description": "A advanced GitHub contributions component.",
"files": [
{
"path": "registry/github-contributions/github-contributions-advanced.tsx",
"type": "registry:component"
}
],
"registryDependencies": [
"https://ui.raulcarini.dev/r/github-contributions.json"
]
},
{
"name": "github-contributions-fetcher",
"type": "registry:block",
"title": "GitHub Contributions Fetcher",
"description": "A Github contributions table with client-side fetcher.",
"files": [
{
"path": "registry/github-contributions/github-contributions-fetcher.tsx",
"type": "registry:component"
}
],
"registryDependencies": [
"https://ui.raulcarini.dev/r/github-contributions.json"
]
},
{
"name": "github-contributions-advanced-fetcher",
"type": "registry:block",
"title": "GitHub Contributions Advanced Fetcher",
"description": "An advanced Github contributions table with client-side fetcher.",
"files": [
{
"path": "registry/github-contributions/github-contributions-advanced-fetcher.tsx",
"type": "registry:component"
}
],
"registryDependencies": [
"https://ui.raulcarini.dev/r/github-contributions-advanced.json"
]
},
{
"name": "music-player",
"type": "registry:block",
"title": "Music Player",
"description": "A music player component featuring essential playback controls and a progress slider.",
"files": [
{
"path": "registry/music-player/music-player.tsx",
"type": "registry:component"
},
{
"path": "hooks/use-music-player.ts",
"type": "registry:hook"
}
],
"registryDependencies": ["slider", "button"]
},
{
"name": "music-player-spotify",
"type": "registry:block",
"title": "Spotify Music Player",
"description": "A music player component with a design inspired by Spotify.",
"files": [
{
"path": "registry/music-player/music-player-spotify.tsx",
"type": "registry:component"
},
{
"path": "hooks/use-music-player.ts",
"type": "registry:hook"
}
],
"cssVars": {
"light": { "spotify": "oklch(0.77 0.2124 148.67)" }
},
"registryDependencies": ["slider", "button"]
},
{
"name": "music-player-apple",
"type": "registry:block",
"title": "Apple Music Player",
"description": "A music player component with a design inspired by Apple.",
"files": [
{
"path": "registry/music-player/music-player-apple.tsx",
"type": "registry:component"
},
{
"path": "hooks/use-music-player.ts",
"type": "registry:hook"
}
],
"cssVars": {
"light": { "apple": "oklch(0.68 0.1968 17.66)" }
},
"registryDependencies": ["slider", "button"]
},
{
"name": "search-bar",
"type": "registry:block",
"title": "Search Bar",
"description": "Search Bar managing URL queries client-side (Nuqs).",
"files": [
{
"path": "registry/search-bar/search-bar.tsx",
"type": "registry:component"
},
{
"path": "hooks/use-debounce.ts",
"type": "registry:hook"
}
],
"registryDependencies": ["input", "button"],
"dependencies": ["nuqs"]
},
{
"name": "search-bar-suggestions",
"type": "registry:block",
"title": "Search Bar Suggestions",
"description": "Search bar featuring autosuggestions (Nuqs).",
"files": [
{
"path": "registry/search-bar/search-bar-suggestions.tsx",
"type": "registry:component"
},
{
"path": "hooks/use-debounce.ts",
"type": "registry:hook"
}
],
"registryDependencies": ["command", "button"],
"dependencies": ["nuqs"]
},
{
"name": "rating-group",
"type": "registry:block",
"title": "Rating Group",
"description": "A star rating component for user feedback.",
"files": [
{
"path": "registry/rating-group/rating-group.tsx",
"type": "registry:component"
}
],
"registryDependencies": ["toggle-group"]
},
{
"name": "rating-group-advanced",
"type": "registry:block",
"title": "Rating Group Advanced",
"description": "Advanced rating group components with half-star, heart, read-only, and custom icon variants.",
"files": [
{
"path": "registry/rating-group/rating-group-advanced.tsx",
"type": "registry:component"
}
],
"registryDependencies": ["toggle-group"]
},
{
"name": "theme-switch",
"type": "registry:block",
"title": "Theme Switch Button",
"description": "A theme switch component to toggle between light and dark mode.",
"files": [
{
"path": "registry/theme-switch/theme-switch.tsx",
"type": "registry:component"
}
],
"registryDependencies": ["button"],
"dependencies": ["lucide-react", "next-themes"]
},
{
"name": "theme-switch-toggle",
"type": "registry:block",
"title": "Theme Switch Toggle",
"description": "A theme switch component using a toggle switch.",
"files": [
{
"path": "registry/theme-switch/theme-switch-toggle.tsx",
"type": "registry:component"
}
],
"registryDependencies": ["switch"],
"dependencies": ["lucide-react", "next-themes"]
},
{
"name": "github-stars",
"type": "registry:block",
"title": "GitHub Stars",
"description": "Displays the star count of a repository.",
"files": [
{
"path": "registry/github-stats/github-stars.tsx",
"type": "registry:component"
}
],
"registryDependencies": ["button", "skeleton"],
"dependencies": ["lucide-react"]
},
{
"name": "github-stars-progress",
"type": "registry:block",
"title": "GitHub Stars Progress",
"description": "Displays the progress of a repository's star count.",
"files": [
{
"path": "registry/github-stats/github-stars-progress.tsx",
"type": "registry:component"
}
],
"registryDependencies": ["button", "skeleton"],
"dependencies": ["lucide-react"]
},
{
"name": "github-forks",
"type": "registry:block",
"title": "GitHub Forks",
"description": "Displays the fork count of a repository.",
"files": [
{
"path": "registry/github-stats/github-forks.tsx",
"type": "registry:component"
}
],
"registryDependencies": ["button", "skeleton"],
"dependencies": ["lucide-react"]
},
{
"name": "github-issues",
"type": "registry:block",
"title": "GitHub Issues",
"description": "Displays the count of open issues.",
"files": [
{
"path": "registry/github-stats/github-issues.tsx",
"type": "registry:component"
}
],
"registryDependencies": ["button", "skeleton"],
"dependencies": ["lucide-react"]
},
{
"name": "github-pr",
"type": "registry:block",
"title": "GitHub Pull Requests",
"description": "Displays the count of open pull requests.",
"files": [
{
"path": "registry/github-stats/github-pr.tsx",
"type": "registry:component"
}
],
"registryDependencies": ["button", "skeleton"],
"dependencies": ["lucide-react"]
}
]
}