From 6f8d944f47eab7f047e78a41997cd487a4d5ed57 Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 11 Jun 2024 17:53:17 +0900 Subject: [PATCH] refactor(react): remove unused libVersion from registry.json The `libVersion` keys across all components listed in the registry.json file have been removed, as they were not used in the codebase. This change simplifies the registry file and prevents potential confusion caused by unused data. --- 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 191a291..30b0b37 100644 --- a/packages/react/public/registry.json +++ b/packages/react/public/registry.json @@ -8,16 +8,16 @@ "1.0.0" ], "components": { - "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" } + "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" } } } \ No newline at end of file