-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathregistry.json
More file actions
135 lines (135 loc) · 4.18 KB
/
registry.json
File metadata and controls
135 lines (135 loc) · 4.18 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
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "payload-extra-fields",
"homepage": "https://payload.veiag.dev",
"items": [
{
"name": "color-picker",
"type": "registry:item",
"title": "Color Picker",
"description": "A customizable color picker field for PayloadCMS.",
"files": [
{
"path": "registry/fields/color-picker/field.ts",
"type": "registry:file",
"target": "~/src/fields/color-picker/field.ts"
},
{
"path": "registry/fields/color-picker/index.tsx",
"type": "registry:file",
"target": "~/src/fields/color-picker/index.tsx"
},
{
"path": "registry/fields/color-picker/style.scss",
"type": "registry:file",
"target": "~/src/fields/color-picker/style.scss"
},
{
"path": "registry/fields/color-picker/types.ts",
"type": "registry:file",
"target": "~/src/fields/color-picker/types.ts"
}
]
},
{
"name":"lucide-icon-picker",
"type":"registry:item",
"title":"Lucide Icon Picker",
"description":"A Lucide icon picker field for PayloadCMS.",
"dependencies": [
"lucide-react",
"fuse.js",
"@tanstack/react-virtual",
"usehooks-ts"
],
"files": [
{
"path": "registry/fields/lucide-icon-picker/field.ts",
"type": "registry:file",
"target": "~/src/fields/lucide-icon-picker/field.ts"
},
{
"path": "registry/fields/lucide-icon-picker/index.tsx",
"type": "registry:file",
"target": "~/src/fields/lucide-icon-picker/index.tsx"
},
{
"path": "registry/fields/lucide-icon-picker/style.scss",
"type": "registry:file",
"target": "~/src/fields/lucide-icon-picker/style.scss"
},
{
"path": "registry/fields/lucide-icon-picker/types.ts",
"type": "registry:file",
"target": "~/src/fields/lucide-icon-picker/types.ts"
},
{
"path": "registry/fields/lucide-icon-picker/icons.ts",
"type": "registry:file",
"target": "~/src/fields/lucide-icon-picker/icons.ts"
}
]
},
{
"name":"array-row-label",
"type":"registry:item",
"title":"Custom Array Row Label",
"description":"A custom array row label component for PayloadCMS.",
"files": [
{
"path": "registry/components/array-row-label/utility.ts",
"type": "registry:file",
"target": "~/src/components/array-row-label/utility.ts"
},
{
"path": "registry/components/array-row-label/index.tsx",
"type": "registry:file",
"target": "~/src/components/array-row-label/index.tsx"
},
{
"path": "registry/components/array-row-label/types.ts",
"type": "registry:file",
"target": "~/src/components/array-row-label/types.ts"
}
]
},
{
"name":"slug",
"type":"registry:item",
"title":"Slug Field",
"description":"Copy of original payload slug field to allow code customization.",
"files": [
{
"path": "registry/fields/slug/field.ts",
"type": "registry:file",
"target": "~/src/fields/slug/field.ts"
},
{
"path": "registry/fields/slug/index.tsx",
"type": "registry:file",
"target": "~/src/fields/slug/index.tsx"
},
{
"path": "registry/fields/slug/countVersions.ts",
"type": "registry:file",
"target": "~/src/fields/slug/countVersions.ts"
},
{
"path": "registry/fields/slug/generateSlug.ts",
"type": "registry:file",
"target": "~/src/fields/slug/generateSlug.ts"
},
{
"path": "registry/fields/slug/slugify.ts",
"type": "registry:file",
"target": "~/src/fields/slug/slugify.ts"
},
{
"path": "registry/fields/slug/style.scss",
"type": "registry:file",
"target": "~/src/fields/slug/style.scss"
}
]
}
]
}