From ac7fdc5645235d42d4f02a064c9da194fab88704 Mon Sep 17 00:00:00 2001 From: boomchanotai Date: Mon, 28 Oct 2024 11:35:44 +0700 Subject: [PATCH] feat: export components --- README.md | 15 ++++++++------- lib/components/index.ts | 8 ++++++++ 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 08c1dcb..086bbba 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,8 @@ UI Library built in purpose to be used internally by Engineering Student Committ ## Components -- [ ] Accordion -- [ ] Alet Dialog +- [x] Accordion +- [x] Alert Dialog - [ ] Aspect Ratio - [x] Avatar - [x] Button @@ -36,20 +36,21 @@ UI Library built in purpose to be used internally by Engineering Student Committ - [x] Collapsible - [ ] Command - [x] Context Menu -- [ ] Dialog +- [x] Dialog - [x] Dropdown Menu -- [ ] Hover Card +- [x] ESC Logo +- [x] Hover Card - [x] Input - [x] Label - [x] Menubar - [x] Navigation Menu -- [ ] Popover +- [x] Popover - [x] Progress - [x] Radio Group - [x] Scroll Area -- [ ] Select +- [x] Select - [x] Seperator -- [ ] Slider +- [x] Slider - [x] Switch - [x] Tabs - [x] Text Area diff --git a/lib/components/index.ts b/lib/components/index.ts index 0f32b4c..6333989 100644 --- a/lib/components/index.ts +++ b/lib/components/index.ts @@ -1,17 +1,25 @@ +export * from './Accordion' +export * from './AlertDialog' export * from './Avatar' export * from './Button' export * from './Checkbox' export * from './Collapsible' export * from './ContextMenu' +export * from './Dialog' export * from './DropdownMenu' +export * from './ESCLogo' +export * from './HoverCard' export * from './Input' export * from './Label' export * from './Menubar' export * from './NavigationMenu' +export * from './Popover' export * from './Progress' export * from './Radio' export * from './ScrollArea' +export * from './Select' export * from './Seperator' +export * from './Slider' export * from './Switch' export * from './Tabs' export * from './Textarea'