-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathregistry.json
More file actions
110 lines (110 loc) · 4.07 KB
/
registry.json
File metadata and controls
110 lines (110 loc) · 4.07 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
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "data-command",
"homepage": "https://data-command.davidsling.in",
"items": [
{
"name": "data-command",
"type": "registry:component",
"title": "DataCommand Component",
"author": "David Sling <me@davidsling.in> (https://davidsling.in)",
"description": "A data-driven command palette built on top of shadcn/ui with async loading, nested commands, and instant search.",
"registryDependencies": ["command", "badge"],
"files": [
{
"path": "registry/data-command/components/data-command.tsx",
"type": "registry:component",
"target": "components/data-command.tsx"
}
]
},
{
"name": "simple-example-data-command",
"type": "registry:component",
"title": "DataCommand - Simple Example",
"author": "David Sling <me@davidsling.in> (https://davidsling.in)",
"description": "A minimal setup of the <DataCommand /> component, showing how to use it with static items.",
"registryDependencies": ["dialog", "button", "command", "badge"],
"meta": { "main": "app/simple-example/page.tsx" },
"files": [
{
"path": "registry/data-command/app/simple-example/page.tsx",
"type": "registry:page",
"target": "app/simple-example/page.tsx"
},
{
"path": "registry/data-command/app/simple-example/layout.tsx",
"type": "registry:page",
"target": "app/simple-example/layout.tsx"
},
{
"path": "registry/data-command/components/data-command.tsx",
"type": "registry:component",
"target": "components/data-command.tsx"
}
]
},
{
"name": "api-example-data-command",
"type": "registry:component",
"title": "DataCommand - API Example",
"author": "David Sling <me@davidsling.in> (https://davidsling.in)",
"description": "An example of <DataCommand /> fetching and populating items from an API using the loadItems function.",
"registryDependencies": ["dialog", "button", "command", "badge"],
"meta": { "main": "app/api-example/page.tsx" },
"files": [
{
"path": "registry/data-command/app/api-example/page.tsx",
"type": "registry:page",
"target": "app/api-example/page.tsx"
},
{
"path": "registry/data-command/app/api-example/layout.tsx",
"type": "registry:page",
"target": "app/api-example/layout.tsx"
},
{
"path": "registry/data-command/components/data-command.tsx",
"type": "registry:component",
"target": "components/data-command.tsx"
},
{
"path": "registry/data-command/api/projects.ts",
"type": "registry:file",
"target": "api/projects.ts"
}
]
},
{
"name": "default-chain-example-data-command",
"type": "registry:component",
"title": "DataCommand - Default Chain Example",
"author": "David Sling <me@davidsling.in> (https://davidsling.in)",
"description": "An example of <DataCommand /> opening with a prefilled command chain using defaultPath and loadOneItem.",
"registryDependencies": ["dialog", "button", "command", "badge"],
"meta": { "main": "app/default-chain-example/page.tsx" },
"files": [
{
"path": "registry/data-command/app/default-chain-example/page.tsx",
"type": "registry:page",
"target": "app/default-chain-example/page.tsx"
},
{
"path": "registry/data-command/app/default-chain-example/layout.tsx",
"type": "registry:page",
"target": "app/default-chain-example/layout.tsx"
},
{
"path": "registry/data-command/components/data-command.tsx",
"type": "registry:component",
"target": "components/data-command.tsx"
},
{
"path": "registry/data-command/api/projects.ts",
"type": "registry:file",
"target": "api/projects.ts"
}
]
}
]
}