-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.json
More file actions
106 lines (106 loc) · 2.97 KB
/
registry.json
File metadata and controls
106 lines (106 loc) · 2.97 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
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "flowui",
"homepage": "https://flowui-registry.vercel.app",
"items": [
{
"name": "debounced-input",
"type": "registry:component",
"title": "Debounced Input",
"description": "An input component with optional debouncing support.",
"files": [
{
"path": "registry/flowui/components/debounced-input.tsx",
"type": "registry:component"
}
],
"dependencies": [],
"registryDependencies": [
"input"
]
},
{
"name": "auth-buttons",
"type": "registry:component",
"title": "Auth Buttons",
"description": "A set of authentication buttons (Google, Github) based on shadcn Button.",
"files": [
{
"path": "registry/flowui/components/auth-buttons.tsx",
"type": "registry:component"
}
],
"dependencies": [
"lucide-react"
],
"registryDependencies": [
"button"
]
},
{
"name": "copy-button",
"type": "registry:component",
"title": "Copy Button",
"description": "A copy button component with two types: normal and animated.",
"files": [
{
"path": "registry/flowui/components/copy-button/copy-button.tsx",
"type": "registry:component"
},
{
"path": "registry/flowui/components/copy-button/animated-copy-button.tsx",
"type": "registry:component"
},
{
"path": "registry/flowui/components/copy-button/animation-wrapper.tsx",
"type": "registry:component"
}
],
"dependencies": [
"lucide-react",
"motion"
],
"registryDependencies": [
"button"
]
},
{
"name": "auth01",
"type": "registry:component",
"title": "Auth 01",
"description": "Auth flow block with main entry and nested auth components.",
"files": [
{
"path": "registry/flowui/blocks/auth-flow/auth01/auth01.tsx",
"type": "registry:component",
"target": "components/flowui/blocks/auth-flow/auth01/auth01.tsx"
},
{
"path": "registry/flowui/blocks/auth-flow/auth01/components/login.tsx",
"type": "registry:component",
"target": "components/flowui/blocks/auth-flow/auth01/components/login.tsx"
},
{
"path": "registry/flowui/blocks/auth-flow/auth01/components/signup.tsx",
"type": "registry:component",
"target": "components/flowui/blocks/auth-flow/auth01/components/signup.tsx"
},
{
"path": "components/ui/field.tsx",
"type": "registry:component",
"target": "components/ui/field.tsx"
}
],
"dependencies": [
"class-variance-authority"
],
"registryDependencies": [
"button",
"card",
"input",
"label",
"separator"
]
}
]
}