-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathregistry.json
More file actions
105 lines (105 loc) · 2.73 KB
/
registry.json
File metadata and controls
105 lines (105 loc) · 2.73 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
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "OpenStatus Dashboard",
"homepage": "https://template.openstatus.dev",
"items": [
{
"name": "empty-state",
"type": "registry:component",
"title": "Empty state",
"description": "A empty state component.",
"files": [
{
"path": "src/components/content/empty-state.tsx",
"type": "registry:component"
}
]
},
{
"name": "section",
"type": "registry:component",
"title": "Section",
"description": "A Section component.",
"files": [
{
"path": "src/components/content/section.tsx",
"type": "registry:component"
}
]
},
{
"name": "action-card",
"type": "registry:component",
"title": "Action Card",
"description": "An action card component.",
"registryDependencies": ["card"],
"files": [
{
"path": "src/components/content/action-card.tsx",
"type": "registry:component"
}
]
},
{
"name": "metric-card",
"type": "registry:component",
"title": "Metric Card",
"description": "A metric card component.",
"registryDependencies": ["badge"],
"dependencies": ["lucide-react", "class-variance-authority"],
"files": [
{
"path": "src/components/metric/metric-card.tsx",
"type": "registry:component"
}
],
"cssVars": {
"light": {
"success": "oklch(0.72 0.19 150)",
"warning": "oklch(0.77 0.16 70)",
"info": "oklch(0.62 0.19 260)"
},
"dark": {
"success": "oklch(0.72 0.19 150)",
"warning": "oklch(0.77 0.16 70)",
"info": "oklch(0.62 0.19 260)"
}
}
},
{
"name": "form-card",
"type": "registry:component",
"title": "Form Card",
"description": "A form card component.",
"registryDependencies": ["card", "separator"],
"dependencies": ["class-variance-authority"],
"files": [
{
"path": "src/components/forms/form-card.tsx",
"type": "registry:component"
}
]
},
{
"name": "feedback",
"type": "registry:component",
"title": "Feedback",
"description": "A feedback component with popover form.",
"registryDependencies": ["button", "form", "popover", "textarea"],
"dependencies": [
"@hookform/resolvers",
"react-hook-form",
"sonner",
"zod",
"lucide-react",
"class-variance-authority"
],
"files": [
{
"path": "src/components/feedback.tsx",
"type": "registry:component"
}
]
}
]
}