From 303d6b31e7d72418a9ca1c940f113a3c9b461790 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 13:11:30 +0900 Subject: [PATCH] refactor(react): update registry.json with components versions The registry.json file has been updated to not only contain the name of the React components but also their respective versions. This detail is provided with each component as a new "libVersion" property. --- packages/react/public/registry.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/packages/react/public/registry.json b/packages/react/public/registry.json index 74e1482..191a291 100644 --- a/packages/react/public/registry.json +++ b/packages/react/public/registry.json @@ -8,16 +8,16 @@ "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" + "button": { "name": "Button.tsx", "libVersion": "1.0.0" }, + "checkbox": { "name": "Checkbox.tsx", "libVersion": "1.0.0" }, + "dialog": { "name": "Dialog.tsx", "libVersion": "1.0.0" }, + "drawer": { "name": "Drawer.tsx", "libVersion": "1.0.0" }, + "input": { "name": "Input.tsx", "libVersion": "1.0.0" }, + "label": { "name": "Label.tsx", "libVersion": "1.0.0" }, + "popover": { "name": "Popover.tsx", "libVersion": "1.0.0" }, + "switch": { "name": "Switch.tsx", "libVersion": "1.0.0" }, + "tabs": { "name": "Tabs.tsx", "libVersion": "1.0.0" }, + "toast": { "name": "Toast.tsx", "libVersion": "1.0.0" }, + "tooltip": {"name": "Tooltip.tsx", "libVersion": "1.0.0" } } } \ No newline at end of file