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": {
"components": "/main/packages/react/components/{componentName}",
"lib": "/main/packages/react/lib.tsx"
"components": "/packages/react/components/{componentName}",
"lib": "/packages/react/lib/{libName}"
},
"lib": [
"index.ts",
"Slot.tsx",
"vcn.ts"
],
"components": {
"button": { "name": "Button.tsx" },
"checkbox": { "name": "Checkbox.tsx" },
"dialog": { "name": "Dialog.tsx" },
"drawer": { "name": "Drawer.tsx" },
"input": { "name": "Input.tsx" },
"label": { "name": "Label.tsx" },
"popover": { "name": "Popover.tsx" },
"switch": { "name": "Switch.tsx" },
"tabs": { "name": "Tabs.tsx" },
"toast": { "name": "Toast.tsx" },
"tooltip": {"name": "Tooltip.tsx" }
"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" },
"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" }
}
}