-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.json
More file actions
111 lines (111 loc) · 3.9 KB
/
Copy pathregistry.json
File metadata and controls
111 lines (111 loc) · 3.9 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
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "compodex",
"homepage": "https://compodex.netlify.app",
"items": [
{
"name": "pokemon-type-colors",
"type": "registry:theme",
"title": "Pokemon Type Colors",
"description": "Theme tokens for every Pokemon type. Installing this adds --color-type-* variables to your Tailwind theme, generating utilities like bg-type-fire, text-type-grass, or border-type-water.",
"cssVars": {
"theme": {
"--color-type-normal": "#a8a29e",
"--color-type-fire": "#ef4444",
"--color-type-water": "#3b82f6",
"--color-type-electric": "#facc15",
"--color-type-grass": "#22c55e",
"--color-type-ice": "#67e8f9",
"--color-type-fighting": "#be123c",
"--color-type-poison": "#7c3aed",
"--color-type-ground": "#d97706",
"--color-type-flying": "#818cf8",
"--color-type-psychic": "#ec4899",
"--color-type-bug": "#84cc16",
"--color-type-rock": "#a16207",
"--color-type-ghost": "#6b21a8",
"--color-type-dragon": "#a21caf",
"--color-type-dark": "#262626",
"--color-type-steel": "#64748b",
"--color-type-fairy": "#f9a8d4",
"--color-type-stellar": "#8b5cf6",
"--color-type-unknown": "#6b7280",
"--color-type-shadow": "#1f2937"
}
}
},
{
"name": "pokedex",
"type": "registry:ui",
"title": "Pokedex",
"description": "Controllable Pokedex primitives composed on shadcn/ui: search, domain filters, incremental pagination, renderItem-based collections, empty state, and counts. Bring your own data and fetching.",
"dependencies": ["radix-ui", "lucide-react"],
"registryDependencies": ["utils", "button", "empty", "input-group"],
"files": [
{
"path": "components/compodex/ui/pokedex.tsx",
"type": "registry:ui"
}
]
},
{
"name": "badge-type",
"type": "registry:ui",
"title": "Pokemon Badge Type",
"description": "A badge that displays a Pokemon type with per-type colors and solid, soft, outline, and ghost variants.",
"dependencies": ["class-variance-authority", "radix-ui"],
"registryDependencies": ["utils", "@compodex/pokemon-type-colors"],
"files": [
{
"path": "components/compodex/ui/badge-type.tsx",
"type": "registry:ui"
}
]
},
{
"name": "pokemon-card",
"type": "registry:ui",
"title": "Pokemon Card",
"description": "A card surface tinted by primary and secondary Pokemon types, with gradient dual-type backgrounds and a mega variant.",
"dependencies": ["class-variance-authority"],
"registryDependencies": [
"utils",
"@compodex/badge-type",
"@compodex/pokemon-type-colors"
],
"files": [
{
"path": "components/compodex/ui/pokemon-card.tsx",
"type": "registry:ui"
}
]
},
{
"name": "pokemon-sprite",
"type": "registry:ui",
"title": "Pokemon Sprite",
"description": "An avatar-style sprite component with image, fallback, badge, group, and group count parts.",
"dependencies": ["radix-ui"],
"registryDependencies": ["utils"],
"files": [
{
"path": "components/compodex/ui/pokemon-sprite.tsx",
"type": "registry:ui"
}
]
},
{
"name": "pokemon-stat",
"type": "registry:ui",
"title": "Pokemon Stat",
"description": "Base-stat rows (HP, Attack, Defense, …) composed on shadcn Field and Progress, with per-stat colors and composable label/value/bar parts.",
"registryDependencies": ["utils", "field", "progress"],
"files": [
{
"path": "components/compodex/ui/pokemon-stat.tsx",
"type": "registry:ui"
}
]
}
]
}