feat(registry): apply new structure of registry

This commit is contained in:
p-sw 2024-06-15 01:43:13 +09:00
parent 7dd3bf7d9e
commit 1cad20eaa2

View File

@ -1,20 +1,25 @@
{ {
"base": "https://raw.githubusercontent.com/pswui/ui", "base": "https://raw.githubusercontent.com/pswui/ui/{branch}",
"paths": { "paths": {
"components": "/main/packages/react/components/{componentName}", "components": "/packages/react/components/{componentName}",
"lib": "/main/packages/react/lib.tsx" "lib": "/packages/react/lib/{libName}"
}, },
"lib": [
"index.ts",
"Slot.tsx",
"vcn.ts"
],
"components": { "components": {
"button": { "name": "Button.tsx" }, "button": { "type": "file", "name": "Button.tsx" },
"checkbox": { "name": "Checkbox.tsx" }, "checkbox": { "type": "file", "name": "Checkbox.tsx" },
"dialog": { "name": "Dialog.tsx" }, "dialog": { "type": "dir", "name": "Dialog", "files": ["index.ts", "Component.tsx", "Context.ts"] },
"drawer": { "name": "Drawer.tsx" }, "drawer": { "type": "file", "name": "Drawer.tsx" },
"input": { "name": "Input.tsx" }, "input": { "type": "file", "name": "Input.tsx" },
"label": { "name": "Label.tsx" }, "label": { "type": "file", "name": "Label.tsx" },
"popover": { "name": "Popover.tsx" }, "popover": { "type": "file", "name": "Popover.tsx" },
"switch": { "name": "Switch.tsx" }, "switch": { "type": "file", "name": "Switch.tsx" },
"tabs": { "name": "Tabs.tsx" }, "tabs": { "type": "dir", "name": "Tabs", "files": ["index.ts", "Context.ts", "Hook.ts", "Component.tsx"] },
"toast": { "name": "Toast.tsx" }, "toast": { "type": "dir", "name": "Toast", "files": ["index.ts", "Component.tsx", "Hook.ts", "Store.ts", "Variant.ts"] },
"tooltip": {"name": "Tooltip.tsx" } "tooltip": { "type": "file", "name": "Tooltip.tsx" }
} }
} }