-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistry.json
46 lines (46 loc) · 1.26 KB
/
registry.json
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
{
"base": "https://raw.githubusercontent.com/pswui/ui/{branch}",
"paths": {
"components": "/packages/react/components/{componentName}",
"lib": "/packages/react/lib/{libName}"
},
"lib": [
"index.ts",
"Slot.tsx",
"vcn.ts",
"useDocument.ts",
"useAnimatedMount.ts"
],
"components": {
"button": { "type": "file", "name": "Button.tsx" },
"checkbox": { "type": "file", "name": "Checkbox.tsx" },
"dialog": {
"type": "dir",
"name": "Dialog",
"files": ["index.ts", "Component.tsx", "Context.ts"]
},
"drawer": { "type": "file", "name": "Drawer.tsx" },
"form": { "type": "file", "name": "Form.tsx" },
"input": { "type": "file", "name": "Input.tsx" },
"label": { "type": "file", "name": "Label.tsx" },
"popover": { "type": "file", "name": "Popover.tsx" },
"switch": { "type": "file", "name": "Switch.tsx" },
"tabs": {
"type": "dir",
"name": "Tabs",
"files": ["index.ts", "Context.ts", "Hook.ts", "Component.tsx"]
},
"toast": {
"type": "dir",
"name": "Toast",
"files": [
"index.ts",
"Component.tsx",
"Hook.ts",
"Store.ts",
"Variant.ts"
]
},
"tooltip": { "type": "file", "name": "Tooltip.tsx" }
}
}