The structure of registry.json within the React package has been reorganized. Paths for base, components, and lib have been adjusted and a new field "paths" has been introduced. Additionally, the lib entry has been changed to an array.
23 lines
608 B
JSON
23 lines
608 B
JSON
{
|
|
"base": "https://raw.githubusercontent.com/pswui/ui/main/packages/react/componeonts/{componentName}",
|
|
"paths": {
|
|
"components": "/main/packages/react/components/{componentName}",
|
|
"lib": "/main/packages/react/lib/shared@{version}.tsx"
|
|
},
|
|
"lib": [
|
|
"1.0.0"
|
|
],
|
|
"components": {
|
|
"button": "Button.tsx",
|
|
"checkbox": "Checkbox.tsx",
|
|
"dialog": "Dialog.tsx",
|
|
"drawer": "Drawer.tsx",
|
|
"input": "Input.tsx",
|
|
"label": "Label.tsx",
|
|
"popover": "Popover.tsx",
|
|
"switch": "Switch.tsx",
|
|
"tabs": "Tabs.tsx",
|
|
"toast": "Toast.tsx",
|
|
"tooltip": "Tooltip.tsx"
|
|
}
|
|
} |