@lotte-innovate/ui-component-test 0.1.48 → 0.1.49
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/.storybook/main.js +24 -0
- package/dist/cjs/.storybook/manager.js +17 -0
- package/dist/cjs/.storybook/preview.jsx +106 -0
- package/dist/cjs/lib/Typography/Header/index.jsx +64 -0
- package/dist/cjs/lib/Typography/Text/index.jsx +73 -0
- package/dist/cjs/lib/Typography/index.js +10 -0
- package/dist/cjs/lib/color/alpha.js +788 -0
- package/dist/cjs/lib/color/constants.js +299 -0
- package/dist/cjs/lib/color/dark.js +395 -0
- package/dist/cjs/lib/color/krdsColors.js +312 -0
- package/dist/cjs/lib/color/light.js +396 -0
- package/dist/cjs/lib/components/Accordion/index.jsx +105 -0
- package/dist/cjs/lib/components/AlertDialog/AlertDialogAction.jsx +88 -0
- package/dist/cjs/lib/components/AlertDialog/AlertDialogCancel.jsx +87 -0
- package/dist/cjs/lib/components/AlertDialog/AlertDialogContent.jsx +81 -0
- package/dist/cjs/lib/components/AlertDialog/AlertDialogDescription.jsx +63 -0
- package/dist/cjs/lib/components/AlertDialog/AlertDialogRoot.jsx +65 -0
- package/dist/cjs/lib/components/AlertDialog/AlertDialogTitle.jsx +63 -0
- package/dist/cjs/lib/components/AlertDialog/AlertDialogTrigger.jsx +82 -0
- package/dist/cjs/lib/components/AlertDialog/index.jsx +19 -0
- package/dist/cjs/lib/components/AspectRatio/index.jsx +69 -0
- package/dist/cjs/lib/components/Avatar/index.jsx +87 -0
- package/dist/cjs/lib/components/Badge/index.jsx +80 -0
- package/dist/cjs/lib/components/BarChart/index.jsx +64 -0
- package/dist/cjs/lib/components/BubbleChart/index.jsx +80 -0
- package/dist/cjs/lib/components/Button/index.jsx +83 -0
- package/dist/cjs/lib/components/Callout/CalloutIcon.jsx +88 -0
- package/dist/cjs/lib/components/Callout/CalloutRoot.jsx +102 -0
- package/dist/cjs/lib/components/Callout/CalloutText.jsx +68 -0
- package/dist/cjs/lib/components/Callout/index.jsx +11 -0
- package/dist/cjs/lib/components/Card/index.jsx +90 -0
- package/dist/cjs/lib/components/Checkbox/index.jsx +123 -0
- package/dist/cjs/lib/components/CheckboxCard/index.jsx +89 -0
- package/dist/cjs/lib/components/CheckboxGroup/CheckboxGroupItem.jsx +54 -0
- package/dist/cjs/lib/components/CheckboxGroup/CheckboxGroupRoot.jsx +64 -0
- package/dist/cjs/lib/components/CheckboxGroup/index.jsx +6 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuCheckboxItem.jsx +61 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuContent.jsx +85 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuGroup.jsx +46 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuItem.jsx +87 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuItemIndicator.jsx +77 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuLabel.jsx +75 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuRadioGroup.jsx +49 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuRadioItem.jsx +63 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuRoot.jsx +61 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuSeparator.jsx +47 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuSubContent.jsx +83 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuSubTrigger.jsx +61 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuTrigger.jsx +47 -0
- package/dist/cjs/lib/components/ContextMenu/index.jsx +31 -0
- package/dist/cjs/lib/components/DataList/DataListItem.jsx +70 -0
- package/dist/cjs/lib/components/DataList/DataListLabel.jsx +76 -0
- package/dist/cjs/lib/components/DataList/DataListRoot.jsx +73 -0
- package/dist/cjs/lib/components/DataList/DataListValue.jsx +78 -0
- package/dist/cjs/lib/components/DataList/index.jsx +8 -0
- package/dist/cjs/lib/components/Dialog/DialogAction.jsx +75 -0
- package/dist/cjs/lib/components/Dialog/DialogCancel.jsx +71 -0
- package/dist/cjs/lib/components/Dialog/DialogContent.jsx +84 -0
- package/dist/cjs/lib/components/Dialog/DialogDescription.jsx +63 -0
- package/dist/cjs/lib/components/Dialog/DialogRoot.jsx +56 -0
- package/dist/cjs/lib/components/Dialog/DialogSlot.jsx +62 -0
- package/dist/cjs/lib/components/Dialog/DialogTitle.jsx +63 -0
- package/dist/cjs/lib/components/Dialog/DialogTrigger.jsx +46 -0
- package/dist/cjs/lib/components/Dialog/index.jsx +21 -0
- package/dist/cjs/lib/components/DoughnutChart/index.jsx +70 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdonMenuRadioGroup.jsx +46 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdonMenuSubContent.jsx +89 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuCheckboxItem.jsx +60 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuContent.jsx +85 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuItem.jsx +86 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuItemIndicator.jsx +75 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuLable.jsx +61 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuRadioItem.jsx +60 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuRoot.jsx +55 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuSeparator.jsx +45 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuSub.jsx +44 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuSubTrigger.jsx +59 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuTrigger.jsx +69 -0
- package/dist/cjs/lib/components/DropdownMenu/index.jsx +31 -0
- package/dist/cjs/lib/components/HoverCard/HoverCardContent.jsx +88 -0
- package/dist/cjs/lib/components/HoverCard/HoverCardRoot.jsx +57 -0
- package/dist/cjs/lib/components/HoverCard/HoverCardTrigger.jsx +46 -0
- package/dist/cjs/lib/components/HoverCard/index.jsx +11 -0
- package/dist/cjs/lib/components/IconButton/index.jsx +90 -0
- package/dist/cjs/lib/components/Inset/index.jsx +79 -0
- package/dist/cjs/lib/components/Label/index.jsx +83 -0
- package/dist/cjs/lib/components/LineChart/index.jsx +62 -0
- package/dist/cjs/lib/components/Menubar/MenubarCheckboxItem.jsx +57 -0
- package/dist/cjs/lib/components/Menubar/MenubarContent.jsx +89 -0
- package/dist/cjs/lib/components/Menubar/MenubarItem.jsx +82 -0
- package/dist/cjs/lib/components/Menubar/MenubarItemIndicator.jsx +76 -0
- package/dist/cjs/lib/components/Menubar/MenubarMenu.jsx +44 -0
- package/dist/cjs/lib/components/Menubar/MenubarRadioGroup.jsx +49 -0
- package/dist/cjs/lib/components/Menubar/MenubarRadioItem.jsx +59 -0
- package/dist/cjs/lib/components/Menubar/MenubarRoot.jsx +91 -0
- package/dist/cjs/lib/components/Menubar/MenubarSeparator.jsx +47 -0
- package/dist/cjs/lib/components/Menubar/MenubarSub.jsx +44 -0
- package/dist/cjs/lib/components/Menubar/MenubarSubContent.jsx +78 -0
- package/dist/cjs/lib/components/Menubar/MenubarSubTrigger.jsx +60 -0
- package/dist/cjs/lib/components/Menubar/MenubarTrigger.jsx +84 -0
- package/dist/cjs/lib/components/Menubar/index.jsx +31 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuContent.jsx +75 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuIndicator.jsx +48 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuItem.jsx +46 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuLink.jsx +78 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuList.jsx +75 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuRoot.jsx +62 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuTrigger.jsx +86 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuViewport.jsx +80 -0
- package/dist/cjs/lib/components/NavigationMenu/index.jsx +12 -0
- package/dist/cjs/lib/components/PieChart/index.jsx +70 -0
- package/dist/cjs/lib/components/Popover/PopoverClose.jsx +64 -0
- package/dist/cjs/lib/components/Popover/PopoverContent.jsx +92 -0
- package/dist/cjs/lib/components/Popover/PopoverRoot.jsx +55 -0
- package/dist/cjs/lib/components/Popover/PopoverTrigger.jsx +46 -0
- package/dist/cjs/lib/components/Popover/index.jsx +13 -0
- package/dist/cjs/lib/components/Progress/index.jsx +83 -0
- package/dist/cjs/lib/components/RadarChart/index.jsx +83 -0
- package/dist/cjs/lib/components/Radio/index.jsx +54 -0
- package/dist/cjs/lib/components/RadioCards/RadioCardsItem.jsx +70 -0
- package/dist/cjs/lib/components/RadioCards/RadioCardsRoot.jsx +77 -0
- package/dist/cjs/lib/components/RadioCards/index.jsx +9 -0
- package/dist/cjs/lib/components/RadioGroup/RadioGroupItem.jsx +62 -0
- package/dist/cjs/lib/components/RadioGroup/RadioGroupRoot.jsx +73 -0
- package/dist/cjs/lib/components/RadioGroup/index.jsx +9 -0
- package/dist/cjs/lib/components/ScrollArea/index.jsx +54 -0
- package/dist/cjs/lib/components/SegmentedControl/SegmentedControlItem.jsx +51 -0
- package/dist/cjs/lib/components/SegmentedControl/SegmentedControlRoot.jsx +79 -0
- package/dist/cjs/lib/components/SegmentedControl/index.jsx +9 -0
- package/dist/cjs/lib/components/Select/index.jsx +115 -0
- package/dist/cjs/lib/components/Separator/index.jsx +56 -0
- package/dist/cjs/lib/components/Skeleton/index.jsx +51 -0
- package/dist/cjs/lib/components/Slider/index.jsx +56 -0
- package/dist/cjs/lib/components/Spinner/index.jsx +56 -0
- package/dist/cjs/lib/components/TabNav/index.jsx +50 -0
- package/dist/cjs/lib/components/Table/index.jsx +119 -0
- package/dist/cjs/lib/components/Tabs/index.jsx +80 -0
- package/dist/cjs/lib/components/TextArea/index.jsx +65 -0
- package/dist/cjs/lib/components/TextField/index.jsx +67 -0
- package/dist/cjs/lib/components/Toast/ToastActionButton.jsx +97 -0
- package/dist/cjs/lib/components/Toast/ToastDescription.jsx +71 -0
- package/dist/cjs/lib/components/Toast/ToastRoot.jsx +123 -0
- package/dist/cjs/lib/components/Toast/ToastTitle.jsx +69 -0
- package/dist/cjs/lib/components/Toast/index.jsx +13 -0
- package/dist/cjs/lib/components/Toggle/ToggleWithText.jsx +86 -0
- package/dist/cjs/lib/components/Toggle/index.jsx +88 -0
- package/dist/cjs/lib/components/ToggleGroup/ToggleGroupItem.jsx +70 -0
- package/dist/cjs/lib/components/ToggleGroup/ToggleGroupRoot.jsx +79 -0
- package/dist/cjs/lib/components/ToggleGroup/index.jsx +9 -0
- package/dist/cjs/lib/components/ToggleSwitch/index.jsx +81 -0
- package/dist/cjs/lib/components/Tooltip/index.jsx +86 -0
- package/dist/cjs/lib/components/index.js +108 -0
- package/dist/cjs/lib/constants.js +950 -0
- package/dist/cjs/lib/index.js +18 -0
- package/dist/cjs/lib/types.js +2 -0
- package/dist/cjs/lib/utils/useDarkMode.js +53 -0
- package/dist/cjs/lib/utils/utils.js +14 -0
- package/dist/cjs/tailwind.config.js +169 -0
- package/dist/cjs/tsconfig.tsbuildinfo +1 -0
- package/dist/esm/tsconfig.tsbuildinfo +1 -0
- package/package.json +4 -4
- package/dist/esm/lib/src/app/layout.jsx +0 -13
- package/dist/esm/lib/src/app/page.jsx +0 -36
- package/dist/esm/lib/src/app/template/colorPicker.jsx +0 -19
- package/dist/esm/lib/src/app/template/theme.jsx +0 -17
- package/dist/esm/lib/src/stories/ToggleSwitch/ToggleSwitch.stories.jsx +0 -118
- package/dist/esm/lib/src/stories/Welcome.jsx +0 -68
- package/dist/esm/lib/src/stories/accordion/Accordion.stories.jsx +0 -81
- package/dist/esm/lib/src/stories/alert-dialog/AlertDialog.stories.jsx +0 -72
- package/dist/esm/lib/src/stories/aspect-ratio/AspectRatio.stories.jsx +0 -106
- package/dist/esm/lib/src/stories/avatar/Avatar.stories.jsx +0 -109
- package/dist/esm/lib/src/stories/badge/Badge.stories.jsx +0 -135
- package/dist/esm/lib/src/stories/bar-chart/BarChart.stories.jsx +0 -105
- package/dist/esm/lib/src/stories/bubble-chart/BubbleChart.stories.jsx +0 -175
- package/dist/esm/lib/src/stories/button/Button.stories.jsx +0 -105
- package/dist/esm/lib/src/stories/button/IconButton.stories.jsx +0 -110
- package/dist/esm/lib/src/stories/callout/Callout.stories.jsx +0 -202
- package/dist/esm/lib/src/stories/card/Card.stories.jsx +0 -156
- package/dist/esm/lib/src/stories/checkbox/Checkbox.stories.jsx +0 -174
- package/dist/esm/lib/src/stories/checkbox/CheckboxCard.stories.jsx +0 -138
- package/dist/esm/lib/src/stories/checkbox/CheckboxGroup.stories.jsx +0 -144
- package/dist/esm/lib/src/stories/context-menu/ContextMenu.stories.jsx +0 -156
- package/dist/esm/lib/src/stories/data-list/DataList.stories.jsx +0 -186
- package/dist/esm/lib/src/stories/dialog/Dialog.stories.jsx +0 -173
- package/dist/esm/lib/src/stories/doughnut-chart/DoughnutChart.stories.jsx +0 -118
- package/dist/esm/lib/src/stories/dropdown-menu/DropdownMenu.stories.jsx +0 -146
- package/dist/esm/lib/src/stories/header/Header.stories.jsx +0 -118
- package/dist/esm/lib/src/stories/hover-card/HoverCard.stories.jsx +0 -143
- package/dist/esm/lib/src/stories/inset/Inset.stories.jsx +0 -99
- package/dist/esm/lib/src/stories/label/Label.stories.jsx +0 -112
- package/dist/esm/lib/src/stories/line-chart/LineChart.stories.jsx +0 -234
- package/dist/esm/lib/src/stories/menubar/Menubar.stories.jsx +0 -274
- package/dist/esm/lib/src/stories/navigation-menu/NavigationMenu.stories.jsx +0 -237
- package/dist/esm/lib/src/stories/pie-chart/PieChart.stories.jsx +0 -144
- package/dist/esm/lib/src/stories/popover/Popover.stories.jsx +0 -128
- package/dist/esm/lib/src/stories/progress/Progress.stories.jsx +0 -81
- package/dist/esm/lib/src/stories/radar-chart/RadarChart.stories.jsx +0 -126
- package/dist/esm/lib/src/stories/radio/Radio.stories.jsx +0 -110
- package/dist/esm/lib/src/stories/radio/RadioCards.stories.jsx +0 -136
- package/dist/esm/lib/src/stories/radio/RadioGroup.stories.jsx +0 -125
- package/dist/esm/lib/src/stories/scroll-area/ScrollArea.stories.jsx +0 -197
- package/dist/esm/lib/src/stories/segmented-control/SegmentedControl.stories.jsx +0 -100
- package/dist/esm/lib/src/stories/select/Select.stories.jsx +0 -175
- package/dist/esm/lib/src/stories/separator/Separator.stories.jsx +0 -105
- package/dist/esm/lib/src/stories/skeleton/Skeleton.stories.jsx +0 -118
- package/dist/esm/lib/src/stories/slider/Slider.stories.jsx +0 -93
- package/dist/esm/lib/src/stories/spinner/Spinner.stories.jsx +0 -111
- package/dist/esm/lib/src/stories/tab-nav/TabNav.stories.jsx +0 -94
- package/dist/esm/lib/src/stories/table/Table.stories.jsx +0 -129
- package/dist/esm/lib/src/stories/tabs/Tabs.stories.jsx +0 -118
- package/dist/esm/lib/src/stories/text/Text.stories.jsx +0 -115
- package/dist/esm/lib/src/stories/textArea/TextArea.stories.jsx +0 -111
- package/dist/esm/lib/src/stories/textfield/TextField.stories.jsx +0 -122
- package/dist/esm/lib/src/stories/toast/Toast.stories.jsx +0 -197
- package/dist/esm/lib/src/stories/toggle/Toggle.stories.jsx +0 -106
- package/dist/esm/lib/src/stories/toggle/ToggleGroup.stories.jsx +0 -151
- package/dist/esm/lib/src/stories/tooltip/Tooltip.stories.jsx +0 -89
- package/dist/esm/lib/src/utils/chart.js +0 -572
- package/dist/esm/lib/src/utils/move.mjs +0 -46
- package/dist/esm/lib/src/utils/post-publish.mjs +0 -23
- package/dist/esm/lib/tsconfig.tsbuildinfo +0 -1
- /package/dist/esm/{lib/.storybook → .storybook}/main.js +0 -0
- /package/dist/esm/{lib/.storybook → .storybook}/manager.js +0 -0
- /package/dist/esm/{lib/.storybook → .storybook}/preview.jsx +0 -0
- /package/dist/esm/lib/{src/lib/Typography → Typography}/Header/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/Typography → Typography}/Text/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/Typography → Typography}/index.js +0 -0
- /package/dist/esm/lib/{src/lib/color → color}/alpha.js +0 -0
- /package/dist/esm/lib/{src/lib/color → color}/constants.js +0 -0
- /package/dist/esm/lib/{src/lib/color → color}/dark.js +0 -0
- /package/dist/esm/lib/{src/lib/color → color}/krdsColors.js +0 -0
- /package/dist/esm/lib/{src/lib/color → color}/light.js +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Accordion/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/AlertDialogAction.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/AlertDialogCancel.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/AlertDialogContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/AlertDialogDescription.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/AlertDialogRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/AlertDialogTitle.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/AlertDialogTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AspectRatio/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Avatar/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Badge/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/BarChart/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/BubbleChart/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Button/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Callout/CalloutIcon.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Callout/CalloutRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Callout/CalloutText.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Callout/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Card/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Checkbox/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/CheckboxCard/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/CheckboxGroup/CheckboxGroupItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/CheckboxGroup/CheckboxGroupRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/CheckboxGroup/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuCheckboxItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuGroup.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuItemIndicator.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuLabel.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuRadioGroup.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuRadioItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuSeparator.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuSubContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuSubTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DataList/DataListItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DataList/DataListLabel.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DataList/DataListRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DataList/DataListValue.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DataList/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogAction.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogCancel.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogDescription.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogSlot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogTitle.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DoughnutChart/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdonMenuRadioGroup.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdonMenuSubContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuCheckboxItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuItemIndicator.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuLable.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuRadioItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuSeparator.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuSub.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuSubTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/HoverCard/HoverCardContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/HoverCard/HoverCardRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/HoverCard/HoverCardTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/HoverCard/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/IconButton/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Inset/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Label/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/LineChart/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarCheckboxItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarItemIndicator.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarMenu.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarRadioGroup.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarRadioItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarSeparator.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarSub.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarSubContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarSubTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuIndicator.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuLink.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuList.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuViewport.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/PieChart/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Popover/PopoverClose.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Popover/PopoverContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Popover/PopoverRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Popover/PopoverTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Popover/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Progress/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/RadarChart/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Radio/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/RadioCards/RadioCardsItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/RadioCards/RadioCardsRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/RadioCards/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/RadioGroup/RadioGroupItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/RadioGroup/RadioGroupRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/RadioGroup/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ScrollArea/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/SegmentedControl/SegmentedControlItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/SegmentedControl/SegmentedControlRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/SegmentedControl/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Select/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Separator/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Skeleton/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Slider/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Spinner/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/TabNav/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Table/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Tabs/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/TextArea/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/TextField/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Toast/ToastActionButton.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Toast/ToastDescription.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Toast/ToastRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Toast/ToastTitle.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Toast/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Toggle/ToggleWithText.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Toggle/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ToggleGroup/ToggleGroupItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ToggleGroup/ToggleGroupRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ToggleGroup/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ToggleSwitch/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Tooltip/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/index.js +0 -0
- /package/dist/esm/lib/{src/lib/constants.js → constants.js} +0 -0
- /package/dist/esm/lib/{src/lib/index.js → index.js} +0 -0
- /package/dist/esm/lib/{src/lib/types.js → types.js} +0 -0
- /package/dist/esm/lib/{src/lib/utils → utils}/useDarkMode.js +0 -0
- /package/dist/esm/lib/{src/lib/utils → utils}/utils.js +0 -0
- /package/dist/esm/{lib/tailwind.config.js → tailwind.config.js} +0 -0
@@ -1,118 +0,0 @@
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
2
|
-
__assign = Object.assign || function(t) {
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
4
|
-
s = arguments[i];
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
6
|
-
t[p] = s[p];
|
7
|
-
}
|
8
|
-
return t;
|
9
|
-
};
|
10
|
-
return __assign.apply(this, arguments);
|
11
|
-
};
|
12
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
13
|
-
var t = {};
|
14
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
15
|
-
t[p] = s[p];
|
16
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
17
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
18
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
19
|
-
t[p[i]] = s[p[i]];
|
20
|
-
}
|
21
|
-
return t;
|
22
|
-
};
|
23
|
-
import Tabs from 'lib/components/Tabs/index';
|
24
|
-
import { commonArgTypes } from 'lib/constants';
|
25
|
-
var meta = {
|
26
|
-
title: 'Component/Tabs',
|
27
|
-
component: Tabs.Root,
|
28
|
-
parameters: {
|
29
|
-
layout: 'centered',
|
30
|
-
themes: {
|
31
|
-
themeOverride: 'dark',
|
32
|
-
},
|
33
|
-
docs: {
|
34
|
-
description: {
|
35
|
-
component: '관련성 있는 콘텐츠들의 집합으로, 하나를 활성화하여 표시',
|
36
|
-
},
|
37
|
-
},
|
38
|
-
},
|
39
|
-
argTypes: {
|
40
|
-
color: __assign(__assign({}, commonArgTypes.color), { description: 'Tabs component 색상' }),
|
41
|
-
size: {
|
42
|
-
table: {
|
43
|
-
category: 'Props',
|
44
|
-
type: { summary: ['small', 'medium'].join(' | ') },
|
45
|
-
},
|
46
|
-
control: { type: 'select' },
|
47
|
-
options: ['small', 'medium'],
|
48
|
-
defaultValue: { summary: 'medium' },
|
49
|
-
description: 'Tabs component 크기',
|
50
|
-
},
|
51
|
-
},
|
52
|
-
};
|
53
|
-
export default meta;
|
54
|
-
export var Default = function (_a) {
|
55
|
-
var args = __rest(_a, []);
|
56
|
-
return (<Tabs.Root defaultValue="account" {...args}>
|
57
|
-
<Tabs.List {...args}>
|
58
|
-
<Tabs.Trigger value="account">Account</Tabs.Trigger>
|
59
|
-
<Tabs.Trigger value="documents">Documents</Tabs.Trigger>
|
60
|
-
<Tabs.Trigger value="settings">Settings</Tabs.Trigger>
|
61
|
-
</Tabs.List>
|
62
|
-
|
63
|
-
<Tabs.Content value="account">
|
64
|
-
<div>Make changes to your account</div>
|
65
|
-
</Tabs.Content>
|
66
|
-
|
67
|
-
<Tabs.Content value="documents">
|
68
|
-
<div>Access and update your documents</div>
|
69
|
-
</Tabs.Content>
|
70
|
-
|
71
|
-
<Tabs.Content value="settings">
|
72
|
-
<div>Edit your profile</div>
|
73
|
-
</Tabs.Content>
|
74
|
-
</Tabs.Root>);
|
75
|
-
};
|
76
|
-
export var Size = function (_a) {
|
77
|
-
var args = __rest(_a, []);
|
78
|
-
return (<div>
|
79
|
-
<Tabs.Root defaultValue="account">
|
80
|
-
<Tabs.List size={'small'}>
|
81
|
-
<Tabs.Trigger value="account">Account</Tabs.Trigger>
|
82
|
-
<Tabs.Trigger value="documents">Documents</Tabs.Trigger>
|
83
|
-
<Tabs.Trigger value="settings">Settings</Tabs.Trigger>
|
84
|
-
</Tabs.List>
|
85
|
-
|
86
|
-
<Tabs.Content value="account">
|
87
|
-
<div>Make changes to your account</div>
|
88
|
-
</Tabs.Content>
|
89
|
-
|
90
|
-
<Tabs.Content value="documents">
|
91
|
-
<div>Access and update your documents</div>
|
92
|
-
</Tabs.Content>
|
93
|
-
|
94
|
-
<Tabs.Content value="settings">
|
95
|
-
<div>Edit your profile</div>
|
96
|
-
</Tabs.Content>
|
97
|
-
</Tabs.Root>
|
98
|
-
<Tabs.Root defaultValue="account">
|
99
|
-
<Tabs.List size={'medium'}>
|
100
|
-
<Tabs.Trigger value="account">Account</Tabs.Trigger>
|
101
|
-
<Tabs.Trigger value="documents">Documents</Tabs.Trigger>
|
102
|
-
<Tabs.Trigger value="settings">Settings</Tabs.Trigger>
|
103
|
-
</Tabs.List>
|
104
|
-
|
105
|
-
<Tabs.Content value="account">
|
106
|
-
<div>Make changes to your account</div>
|
107
|
-
</Tabs.Content>
|
108
|
-
|
109
|
-
<Tabs.Content value="documents">
|
110
|
-
<div>Access and update your documents</div>
|
111
|
-
</Tabs.Content>
|
112
|
-
|
113
|
-
<Tabs.Content value="settings">
|
114
|
-
<div>Edit your profile</div>
|
115
|
-
</Tabs.Content>
|
116
|
-
</Tabs.Root>
|
117
|
-
</div>);
|
118
|
-
};
|
@@ -1,115 +0,0 @@
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
2
|
-
__assign = Object.assign || function(t) {
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
4
|
-
s = arguments[i];
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
6
|
-
t[p] = s[p];
|
7
|
-
}
|
8
|
-
return t;
|
9
|
-
};
|
10
|
-
return __assign.apply(this, arguments);
|
11
|
-
};
|
12
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
13
|
-
var t = {};
|
14
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
15
|
-
t[p] = s[p];
|
16
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
17
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
18
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
19
|
-
t[p[i]] = s[p[i]];
|
20
|
-
}
|
21
|
-
return t;
|
22
|
-
};
|
23
|
-
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
24
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
25
|
-
if (ar || !(i in from)) {
|
26
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
27
|
-
ar[i] = from[i];
|
28
|
-
}
|
29
|
-
}
|
30
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
31
|
-
};
|
32
|
-
import { commonArgTypes, typoSizeOptions, weightOptions } from 'lib/constants';
|
33
|
-
import { Text } from 'lib/Typography/Text';
|
34
|
-
var textWeightOption = __spreadArray(['light'], weightOptions, true);
|
35
|
-
var meta = {
|
36
|
-
title: 'Typography/Text',
|
37
|
-
component: Text,
|
38
|
-
parameters: {
|
39
|
-
themes: {
|
40
|
-
themeOverride: 'dark',
|
41
|
-
},
|
42
|
-
},
|
43
|
-
argTypes: {
|
44
|
-
size: __assign(__assign({}, commonArgTypes.typoSize), { description: '폰트 크기' }),
|
45
|
-
weight: {
|
46
|
-
table: {
|
47
|
-
category: 'Theme Props',
|
48
|
-
type: { summary: textWeightOption.join(' | ') },
|
49
|
-
},
|
50
|
-
options: textWeightOption,
|
51
|
-
control: { type: 'select' },
|
52
|
-
defaultValue: { summary: 'medium' },
|
53
|
-
description: '폰트 두께',
|
54
|
-
},
|
55
|
-
color: __assign(__assign({}, commonArgTypes.color), { description: '폰트 색상', defaultValue: { summary: 'black' } }),
|
56
|
-
},
|
57
|
-
};
|
58
|
-
export default meta;
|
59
|
-
export var Default = function (_a) {
|
60
|
-
var args = __rest(_a, []);
|
61
|
-
return <Text {...args}>Text Component</Text>;
|
62
|
-
};
|
63
|
-
export var Weight = function (_a) {
|
64
|
-
var args = __rest(_a, []);
|
65
|
-
return (<div className="flex items-center space-x-4">
|
66
|
-
{textWeightOption.map(function (weight, index) { return (<Text key={weight} {...args} weight={weight}>
|
67
|
-
Text Component
|
68
|
-
</Text>); })}
|
69
|
-
</div>);
|
70
|
-
};
|
71
|
-
export var Color = function (_a) {
|
72
|
-
var args = __rest(_a, []);
|
73
|
-
return (<div className="flex items-center space-x-3">
|
74
|
-
<Text {...args} color={'blue'}>
|
75
|
-
Text Component
|
76
|
-
</Text>
|
77
|
-
<Text {...args} color={'crimson'}>
|
78
|
-
Text Component
|
79
|
-
</Text>
|
80
|
-
<Text {...args} color={'teal'}>
|
81
|
-
Text Component
|
82
|
-
</Text>
|
83
|
-
<Text {...args} color={'orange'}>
|
84
|
-
Text Component
|
85
|
-
</Text>
|
86
|
-
<Text {...args} color={'purple'}>
|
87
|
-
Text Component
|
88
|
-
</Text>
|
89
|
-
<Text {...args} color={'amber'}>
|
90
|
-
Text Component
|
91
|
-
</Text>
|
92
|
-
<Text {...args} color={'slate'}>
|
93
|
-
Text Component
|
94
|
-
</Text>
|
95
|
-
<Text {...args} color={'cyan'}>
|
96
|
-
Text Component
|
97
|
-
</Text>
|
98
|
-
</div>);
|
99
|
-
};
|
100
|
-
export var Size = function (_a) {
|
101
|
-
var args = __rest(_a, []);
|
102
|
-
return (<div className="flex items-center space-x-4">
|
103
|
-
{typoSizeOptions.map(function (size) { return (<Text key={size} {...args} size={size}>
|
104
|
-
Text Component
|
105
|
-
</Text>); })}
|
106
|
-
</div>);
|
107
|
-
};
|
108
|
-
export var Align = function (_a) {
|
109
|
-
var args = __rest(_a, []);
|
110
|
-
return (<div>
|
111
|
-
{['left', 'center', 'right'].map(function (align) { return (<Text key={align} {...args} align={align} as="div">
|
112
|
-
Text Component
|
113
|
-
</Text>); })}
|
114
|
-
</div>);
|
115
|
-
};
|
@@ -1,111 +0,0 @@
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
2
|
-
__assign = Object.assign || function(t) {
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
4
|
-
s = arguments[i];
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
6
|
-
t[p] = s[p];
|
7
|
-
}
|
8
|
-
return t;
|
9
|
-
};
|
10
|
-
return __assign.apply(this, arguments);
|
11
|
-
};
|
12
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
13
|
-
var t = {};
|
14
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
15
|
-
t[p] = s[p];
|
16
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
17
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
18
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
19
|
-
t[p[i]] = s[p[i]];
|
20
|
-
}
|
21
|
-
return t;
|
22
|
-
};
|
23
|
-
import { TextArea } from 'lib/components/TextArea/index';
|
24
|
-
import { commonArgTypes, radiusOptions, scalingOptions } from 'lib/constants';
|
25
|
-
var meta = {
|
26
|
-
title: 'Component/TextArea',
|
27
|
-
component: TextArea,
|
28
|
-
parameters: {
|
29
|
-
layout: 'centered',
|
30
|
-
themes: {
|
31
|
-
themeOverride: 'dark',
|
32
|
-
},
|
33
|
-
docs: {
|
34
|
-
description: {
|
35
|
-
component: '',
|
36
|
-
},
|
37
|
-
},
|
38
|
-
},
|
39
|
-
argTypes: {
|
40
|
-
scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'TextArea Component 크기' }),
|
41
|
-
radius: {
|
42
|
-
table: {
|
43
|
-
category: 'Theme Props',
|
44
|
-
type: { summary: ['none', 'small', 'medium', 'large'].join(' | ') },
|
45
|
-
},
|
46
|
-
options: ['none', 'small', 'medium', 'large'],
|
47
|
-
control: { type: 'select' },
|
48
|
-
defaultValue: { summary: 'medium' },
|
49
|
-
description: 'TextArea Component 둥글기',
|
50
|
-
},
|
51
|
-
color: __assign(__assign({}, commonArgTypes.color), { description: 'TextArea Component 색상', control: { type: 'select' } }),
|
52
|
-
appearance: {
|
53
|
-
table: {
|
54
|
-
category: 'Props',
|
55
|
-
type: { summary: ['classic', 'soft', 'surface'].join(' | ') },
|
56
|
-
},
|
57
|
-
control: { type: 'select' },
|
58
|
-
defaultValue: { summary: 'surface' },
|
59
|
-
description: 'TextArea 스타일',
|
60
|
-
options: ['classic', 'soft', 'surface'],
|
61
|
-
},
|
62
|
-
size: {
|
63
|
-
table: {
|
64
|
-
category: 'Props',
|
65
|
-
type: { summary: ['small', 'medium', 'large', 'x-large'].join(' | ') },
|
66
|
-
},
|
67
|
-
control: { type: 'select' },
|
68
|
-
options: ['small', 'medium', 'large', 'x-large'],
|
69
|
-
defaultValue: { summary: 'medium', color: 'red' },
|
70
|
-
description: 'TextArea 크기',
|
71
|
-
},
|
72
|
-
},
|
73
|
-
};
|
74
|
-
export default meta;
|
75
|
-
export var Default = function (_a) {
|
76
|
-
var args = __rest(_a, []);
|
77
|
-
return <TextArea placeholder="Reply to comment…" {...args}/>;
|
78
|
-
};
|
79
|
-
export var Scaling = function (_a) {
|
80
|
-
var args = __rest(_a, []);
|
81
|
-
return (<div className="grid gap-5">
|
82
|
-
{scalingOptions.map(function (scaling, index) { return (<div key={scaling} className="">
|
83
|
-
<TextArea placeholder="Reply to comment…" {...args} scaling={scaling}/>
|
84
|
-
</div>); })}
|
85
|
-
</div>);
|
86
|
-
};
|
87
|
-
export var Size = function (_a) {
|
88
|
-
var args = __rest(_a, []);
|
89
|
-
return (<div className="flex items-center gap-3">
|
90
|
-
<TextArea placeholder="Reply to comment…" {...args} size={'small'}></TextArea>
|
91
|
-
<TextArea placeholder="Reply to comment…" {...args} size={'medium'}></TextArea>
|
92
|
-
<TextArea placeholder="Reply to comment…" {...args} size={'large'}></TextArea>
|
93
|
-
<TextArea placeholder="Reply to comment…" {...args} size={'x-large'}></TextArea>
|
94
|
-
</div>);
|
95
|
-
};
|
96
|
-
export var Appearance = function (_a) {
|
97
|
-
var args = __rest(_a, []);
|
98
|
-
return (<div className="grid gap-3">
|
99
|
-
{['classic', 'soft', 'surface'].map(function (appearance, index) { return (<div key={appearance} className="">
|
100
|
-
<TextArea placeholder="Reply to comment…" {...args} appearance={appearance}/>
|
101
|
-
</div>); })}
|
102
|
-
</div>);
|
103
|
-
};
|
104
|
-
export var Radius = function (_a) {
|
105
|
-
var args = __rest(_a, []);
|
106
|
-
return (<div className="grid gap-3">
|
107
|
-
{radiusOptions.map(function (radius, index) { return (<div key={radius} className="">
|
108
|
-
<TextArea placeholder="Reply to comment…" {...args} radius={radius}/>
|
109
|
-
</div>); })}
|
110
|
-
</div>);
|
111
|
-
};
|
@@ -1,122 +0,0 @@
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
2
|
-
__assign = Object.assign || function(t) {
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
4
|
-
s = arguments[i];
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
6
|
-
t[p] = s[p];
|
7
|
-
}
|
8
|
-
return t;
|
9
|
-
};
|
10
|
-
return __assign.apply(this, arguments);
|
11
|
-
};
|
12
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
13
|
-
var t = {};
|
14
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
15
|
-
t[p] = s[p];
|
16
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
17
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
18
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
19
|
-
t[p[i]] = s[p[i]];
|
20
|
-
}
|
21
|
-
return t;
|
22
|
-
};
|
23
|
-
import TextField from 'lib/components/TextField/index';
|
24
|
-
import { commonArgTypes, radiusOptions } from 'lib/constants';
|
25
|
-
import { DotsHorizontalIcon, MagnifyingGlassIcon } from '@radix-ui/react-icons';
|
26
|
-
import { IconButton } from 'lib';
|
27
|
-
var meta = {
|
28
|
-
title: 'Component/TextField',
|
29
|
-
component: TextField.Root,
|
30
|
-
parameters: {
|
31
|
-
layout: 'centered',
|
32
|
-
themes: {
|
33
|
-
themeOverride: 'dark',
|
34
|
-
},
|
35
|
-
docs: {
|
36
|
-
description: {
|
37
|
-
component: '텍스트를 직접 입력할 수 있는 필드',
|
38
|
-
},
|
39
|
-
},
|
40
|
-
},
|
41
|
-
argTypes: {
|
42
|
-
scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'TextField 길이' }),
|
43
|
-
radius: __assign(__assign({}, commonArgTypes.radius), { description: 'TextField 둥글기' }),
|
44
|
-
color: __assign(__assign({}, commonArgTypes.color), { description: 'TextField 색상' }),
|
45
|
-
appearance: {
|
46
|
-
table: {
|
47
|
-
category: 'Props',
|
48
|
-
type: { summary: ['classic', 'soft', 'surface'].join(' | ') },
|
49
|
-
},
|
50
|
-
control: { type: 'select' },
|
51
|
-
defaultValue: { summary: 'surface' },
|
52
|
-
description: 'TextField 스타일',
|
53
|
-
options: ['classic', 'soft', 'surface'],
|
54
|
-
},
|
55
|
-
size: {
|
56
|
-
table: {
|
57
|
-
category: 'Props',
|
58
|
-
type: { summary: ['small', 'medium', 'large'].join(' | ') },
|
59
|
-
},
|
60
|
-
control: { type: 'select' },
|
61
|
-
options: ['small', 'medium', 'large'],
|
62
|
-
defaultValue: { summary: 'medium' },
|
63
|
-
description: 'TextField 크기',
|
64
|
-
},
|
65
|
-
},
|
66
|
-
};
|
67
|
-
export default meta;
|
68
|
-
export var Default = function (_a) {
|
69
|
-
var args = __rest(_a, []);
|
70
|
-
return (<TextField.Root placeholder="Search the docs..." {...args}/>);
|
71
|
-
};
|
72
|
-
export var Size = function (_a) {
|
73
|
-
var args = __rest(_a, []);
|
74
|
-
return (<div className="flex items-center gap-3">
|
75
|
-
<TextField.Root placeholder="Search the docs..." {...args} size={'small'}/>
|
76
|
-
<TextField.Root placeholder="Search the docs..." {...args} size={'medium'}/>
|
77
|
-
<TextField.Root placeholder="Search the docs..." {...args} size={'large'}/>
|
78
|
-
</div>);
|
79
|
-
};
|
80
|
-
export var Radius = function (_a) {
|
81
|
-
var args = __rest(_a, []);
|
82
|
-
return (<div>
|
83
|
-
{radiusOptions.map(function (radius) { return (<div key={radius} className="pb-1">
|
84
|
-
<TextField.Root placeholder="Search the docs..." key={radius} radius={radius} {...args}/>
|
85
|
-
</div>); })}
|
86
|
-
</div>);
|
87
|
-
};
|
88
|
-
export var Appearance = function (_a) {
|
89
|
-
var args = __rest(_a, []);
|
90
|
-
return (<div>
|
91
|
-
{['classic', 'soft', 'surface'].map(function (appearance) { return (<div key={appearance} className="pb-1">
|
92
|
-
<TextField.Root placeholder="Search the docs..." key={appearance} appearance={appearance} {...args}/>
|
93
|
-
</div>); })}
|
94
|
-
</div>);
|
95
|
-
};
|
96
|
-
export var States = function (_a) {
|
97
|
-
var args = __rest(_a, []);
|
98
|
-
return (<div className="flex items-center gap-3">
|
99
|
-
<TextField.Root placeholder="Search the docs..." {...args}>
|
100
|
-
<TextField.Slot>
|
101
|
-
<MagnifyingGlassIcon height="16" width="16"/>
|
102
|
-
</TextField.Slot>
|
103
|
-
</TextField.Root>
|
104
|
-
|
105
|
-
<TextField.Root placeholder="Search the docs..." {...args}>
|
106
|
-
<TextField.Slot side={'right'}>
|
107
|
-
<DotsHorizontalIcon height="14" width="14"/>
|
108
|
-
</TextField.Slot>
|
109
|
-
</TextField.Root>
|
110
|
-
|
111
|
-
<TextField.Root {...args}>
|
112
|
-
<TextField.Slot>
|
113
|
-
<MagnifyingGlassIcon height="16" width="16"/>
|
114
|
-
</TextField.Slot>
|
115
|
-
<TextField.Slot>
|
116
|
-
<IconButton appearance="ghost" color="slate">
|
117
|
-
<DotsHorizontalIcon height="14" width="14"/>
|
118
|
-
</IconButton>
|
119
|
-
</TextField.Slot>
|
120
|
-
</TextField.Root>
|
121
|
-
</div>);
|
122
|
-
};
|
@@ -1,197 +0,0 @@
|
|
1
|
-
var __assign = (this && this.__assign) || function () {
|
2
|
-
__assign = Object.assign || function(t) {
|
3
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
4
|
-
s = arguments[i];
|
5
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
6
|
-
t[p] = s[p];
|
7
|
-
}
|
8
|
-
return t;
|
9
|
-
};
|
10
|
-
return __assign.apply(this, arguments);
|
11
|
-
};
|
12
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
13
|
-
var t = {};
|
14
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
15
|
-
t[p] = s[p];
|
16
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
17
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
18
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
19
|
-
t[p[i]] = s[p[i]];
|
20
|
-
}
|
21
|
-
return t;
|
22
|
-
};
|
23
|
-
import React, { useState } from 'react';
|
24
|
-
import ReactDOM from 'react-dom';
|
25
|
-
import { commonArgTypes, sizeOptions } from 'lib/constants';
|
26
|
-
import { Toast, Button } from 'lib/components';
|
27
|
-
var toastPositionOption = [
|
28
|
-
'top_center',
|
29
|
-
'top_left',
|
30
|
-
'top_right',
|
31
|
-
'bottom_center',
|
32
|
-
'bottom_left',
|
33
|
-
'bottom_right',
|
34
|
-
];
|
35
|
-
var meta = {
|
36
|
-
title: 'Component/Toast',
|
37
|
-
component: Toast.Root,
|
38
|
-
parameters: {
|
39
|
-
layout: 'centered',
|
40
|
-
docs: {
|
41
|
-
description: {
|
42
|
-
component: '팝업 UI형태로 화면 하단에 일시적으로 노출되는 메시지 창',
|
43
|
-
},
|
44
|
-
source: {
|
45
|
-
type: 'code',
|
46
|
-
},
|
47
|
-
},
|
48
|
-
},
|
49
|
-
argTypes: {
|
50
|
-
radius: __assign(__assign({}, commonArgTypes.radius), { description: 'Toast border 둥굴기' }),
|
51
|
-
scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'Toast 비율' }),
|
52
|
-
size: __assign(__assign({}, commonArgTypes.size), { table: {
|
53
|
-
category: 'Props',
|
54
|
-
type: {
|
55
|
-
summary: sizeOptions.filter(function (option) { return option !== 'x-small'; }).join(' | '),
|
56
|
-
},
|
57
|
-
}, options: sizeOptions.filter(function (option) { return option !== 'x-small'; }), description: 'Toast 크기' }),
|
58
|
-
color: {
|
59
|
-
table: {
|
60
|
-
category: 'Props',
|
61
|
-
type: { summary: ['danger', 'warning', 'success', 'information'].join(' | ') },
|
62
|
-
},
|
63
|
-
options: ['danger', 'warning', 'success', 'information'],
|
64
|
-
control: { type: 'select' },
|
65
|
-
defaultValue: { summary: 'none' },
|
66
|
-
description: 'Toast 색',
|
67
|
-
},
|
68
|
-
titleText: __assign(__assign({}, commonArgTypes.basicText), { description: 'Toast 타이틀 text' }),
|
69
|
-
contentText: __assign(__assign({}, commonArgTypes.basicText), { description: 'Toast 내용 text' }),
|
70
|
-
duration: {
|
71
|
-
table: {
|
72
|
-
category: 'Props',
|
73
|
-
type: { summary: 'number' },
|
74
|
-
},
|
75
|
-
control: 'number',
|
76
|
-
description: 'Toast duration (ms)',
|
77
|
-
defaultValue: { summary: 3000 },
|
78
|
-
},
|
79
|
-
toastPosition: {
|
80
|
-
table: {
|
81
|
-
category: 'Props',
|
82
|
-
type: { summary: toastPositionOption.join(' | ') },
|
83
|
-
},
|
84
|
-
options: toastPositionOption,
|
85
|
-
control: { type: 'select' },
|
86
|
-
defaultValue: { summary: 'top_right' },
|
87
|
-
},
|
88
|
-
},
|
89
|
-
};
|
90
|
-
export default meta;
|
91
|
-
export var Default = function (_a) {
|
92
|
-
var args = __rest(_a, []);
|
93
|
-
var _b = useState(false), open = _b[0], setOpen = _b[1];
|
94
|
-
return (<div>
|
95
|
-
<Button onClick={function () { return setOpen(true); }}>토스트 메세지 호출</Button>
|
96
|
-
{open &&
|
97
|
-
ReactDOM.createPortal(<Toast.Root openToast={open} setOpenToast={setOpen} {...args}>
|
98
|
-
<Toast.Title titleText={args.titleText}>토스트 타이틀</Toast.Title>
|
99
|
-
<Toast.Description contentText={args.contentText}>
|
100
|
-
토스트 내용이 위치합니다
|
101
|
-
</Toast.Description>
|
102
|
-
<Toast.ActionButton altText="액션버튼">Action</Toast.ActionButton>
|
103
|
-
</Toast.Root>, document.body)}
|
104
|
-
</div>);
|
105
|
-
};
|
106
|
-
Default.parameters = {
|
107
|
-
docs: {
|
108
|
-
source: {
|
109
|
-
code: "\n const [open, setOpen] = useState<boolean>(false);\n return (\n <div>\n <Button onClick={() => setOpen(true)}>\uD1A0\uC2A4\uD2B8 \uBA54\uC138\uC9C0 \uD638\uCD9C</Button>\n <Toast.Root openToast={open} setOpenToast={setOpen}>\n <Toast.Title>\uD1A0\uC2A4\uD2B8 \uD0C0\uC774\uD2C0</Toast.Title>\n <Toast.Description>\n \uD1A0\uC2A4\uD2B8 \uB0B4\uC6A9\uC774 \uC704\uCE58\uD569\uB2C8\uB2E4\n </Toast.Description>\n <Toast.ActionButton altText=\"\uC561\uC158\uBC84\uD2BC\">Action</Toast.ActionButton>\n </Toast.Root>\n </div>\n );",
|
110
|
-
},
|
111
|
-
},
|
112
|
-
};
|
113
|
-
export var NoTitleToast = function (_a) {
|
114
|
-
var args = __rest(_a, []);
|
115
|
-
var _b = useState(false), open = _b[0], setOpen = _b[1];
|
116
|
-
return (<div>
|
117
|
-
<Button onClick={function () { return setOpen(true); }}>타이틀 없음</Button>
|
118
|
-
{open &&
|
119
|
-
ReactDOM.createPortal(<Toast.Root openToast={open} setOpenToast={setOpen} {...args}>
|
120
|
-
<Toast.Description>토스트 내용이 위치합니다</Toast.Description>
|
121
|
-
<Toast.ActionButton altText="액션버튼">닫기</Toast.ActionButton>
|
122
|
-
</Toast.Root>, document.body)}
|
123
|
-
</div>);
|
124
|
-
};
|
125
|
-
NoTitleToast.parameters = {
|
126
|
-
docs: {
|
127
|
-
source: {
|
128
|
-
code: "\n const [open, setOpen] = useState<boolean>(false);\n return (\n <div>\n <Button onClick={() => setOpen(true)}>\uD0C0\uC774\uD2C0 \uC5C6\uC74C</Button>\n <Toast.Root openToast={open} setOpenToast={setOpen}>\n <Toast.Description>\n \uD1A0\uC2A4\uD2B8 \uB0B4\uC6A9\uC774 \uC704\uCE58\uD569\uB2C8\uB2E4\n </Toast.Description>\n <Toast.ActionButton altText=\"\uC561\uC158\uBC84\uD2BC\">\uB2EB\uAE30</Toast.ActionButton>\n </Toast.Root>\n </div>\n );",
|
129
|
-
},
|
130
|
-
},
|
131
|
-
};
|
132
|
-
export var NoButtonToast = function (_a) {
|
133
|
-
var args = __rest(_a, []);
|
134
|
-
var _b = useState(false), open = _b[0], setOpen = _b[1];
|
135
|
-
return (<div>
|
136
|
-
<Button onClick={function () { return setOpen(true); }}>버튼 없음</Button>
|
137
|
-
{open &&
|
138
|
-
ReactDOM.createPortal(<Toast.Root openToast={open} setOpenToast={setOpen} {...args}>
|
139
|
-
<Toast.Title>토스트 타이틀</Toast.Title>
|
140
|
-
<Toast.Description>토스트 내용이 위치합니다</Toast.Description>
|
141
|
-
</Toast.Root>, document.body)}
|
142
|
-
</div>);
|
143
|
-
};
|
144
|
-
NoButtonToast.parameters = {
|
145
|
-
docs: {
|
146
|
-
source: {
|
147
|
-
code: "\n const [open, setOpen] = useState<boolean>(false);\n return (\n <div>\n <Button onClick={() => setOpen(true)}>\uBC84\uD2BC \uC5C6\uC74C</Button>\n <Toast.Root openToast={open} setOpenToast={setOpen}>\n <Toast.Title>\uD1A0\uC2A4\uD2B8 \uD0C0\uC774\uD2C0</Toast.Title>\n <Toast.Description>\uD1A0\uC2A4\uD2B8 \uB0B4\uC6A9\uC774 \uC704\uCE58\uD569\uB2C8\uB2E4</Toast.Description>\n </Toast.Root>\n </div>\n );",
|
148
|
-
},
|
149
|
-
},
|
150
|
-
};
|
151
|
-
export var Color = function () {
|
152
|
-
var _a = useState(false), openInformationToast = _a[0], setOpenInformationToast = _a[1];
|
153
|
-
var _b = useState(false), openDangerToast = _b[0], setOpenDangerToast = _b[1];
|
154
|
-
var _c = useState(false), openWarningToast = _c[0], setOpenWarningToast = _c[1];
|
155
|
-
var _d = useState(false), openSuccessToast = _d[0], setOpenSuccessToast = _d[1];
|
156
|
-
return (<div className="flex space-x-5">
|
157
|
-
<Button color="sky" onClick={function () { return setOpenInformationToast(true); }}>
|
158
|
-
information color
|
159
|
-
</Button>
|
160
|
-
{openInformationToast &&
|
161
|
-
ReactDOM.createPortal(<Toast.Root openToast={openInformationToast} setOpenToast={setOpenInformationToast} color="information">
|
162
|
-
<Toast.Title>토스트 타이틀</Toast.Title>
|
163
|
-
<Toast.Description>토스트 내용이 위치합니다</Toast.Description>
|
164
|
-
<Toast.ActionButton altText="토스트버튼">버튼</Toast.ActionButton>
|
165
|
-
</Toast.Root>, document.body)}
|
166
|
-
|
167
|
-
<Button color="red" onClick={function () { return setOpenDangerToast(true); }}>
|
168
|
-
danger color
|
169
|
-
</Button>
|
170
|
-
{openDangerToast &&
|
171
|
-
ReactDOM.createPortal(<Toast.Root openToast={openDangerToast} setOpenToast={setOpenDangerToast} color="danger">
|
172
|
-
<Toast.Title>토스트 타이틀</Toast.Title>
|
173
|
-
<Toast.Description>토스트 내용이 위치합니다</Toast.Description>
|
174
|
-
<Toast.ActionButton altText="토스트버튼">버튼</Toast.ActionButton>
|
175
|
-
</Toast.Root>, document.body)}
|
176
|
-
|
177
|
-
<Button color="amber" onClick={function () { return setOpenWarningToast(true); }}>
|
178
|
-
warning color
|
179
|
-
</Button>
|
180
|
-
{openWarningToast &&
|
181
|
-
ReactDOM.createPortal(<Toast.Root openToast={openWarningToast} setOpenToast={setOpenWarningToast} color="warning">
|
182
|
-
<Toast.Title>토스트 타이틀</Toast.Title>
|
183
|
-
<Toast.Description>토스트 내용이 위치합니다</Toast.Description>
|
184
|
-
<Toast.ActionButton altText="토스트버튼">버튼</Toast.ActionButton>
|
185
|
-
</Toast.Root>, document.body)}
|
186
|
-
|
187
|
-
<Button color="green" onClick={function () { return setOpenSuccessToast(true); }}>
|
188
|
-
success color
|
189
|
-
</Button>
|
190
|
-
{openSuccessToast &&
|
191
|
-
ReactDOM.createPortal(<Toast.Root openToast={openSuccessToast} setOpenToast={setOpenSuccessToast} color="success">
|
192
|
-
<Toast.Title>토스트 타이틀</Toast.Title>
|
193
|
-
<Toast.Description>토스트 내용이 위치합니다</Toast.Description>
|
194
|
-
<Toast.ActionButton altText="토스트버튼">버튼</Toast.ActionButton>
|
195
|
-
</Toast.Root>, document.body)}
|
196
|
-
</div>);
|
197
|
-
};
|