@lotte-innovate/ui-component-test 0.1.45 → 0.1.47
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/src/app/layout.jsx +17 -0
- package/dist/cjs/src/app/page.jsx +65 -0
- package/dist/cjs/src/app/template/colorPicker.jsx +21 -0
- package/dist/cjs/src/app/template/theme.jsx +22 -0
- package/dist/cjs/src/lib/Typography/Header/index.jsx +64 -0
- package/dist/cjs/src/lib/Typography/Text/index.jsx +73 -0
- package/dist/cjs/src/lib/Typography/index.js +10 -0
- package/dist/cjs/src/lib/color/alpha.js +788 -0
- package/dist/cjs/src/lib/color/constants.js +299 -0
- package/dist/cjs/src/lib/color/dark.js +395 -0
- package/dist/cjs/src/lib/color/krdsColors.js +312 -0
- package/dist/cjs/src/lib/color/light.js +396 -0
- package/dist/cjs/src/lib/components/Accordion/index.jsx +105 -0
- package/dist/cjs/src/lib/components/AlertDialog/AlertDialogAction.jsx +88 -0
- package/dist/cjs/src/lib/components/AlertDialog/AlertDialogCancel.jsx +87 -0
- package/dist/cjs/src/lib/components/AlertDialog/AlertDialogContent.jsx +81 -0
- package/dist/cjs/src/lib/components/AlertDialog/AlertDialogDescription.jsx +63 -0
- package/dist/cjs/src/lib/components/AlertDialog/AlertDialogRoot.jsx +65 -0
- package/dist/cjs/src/lib/components/AlertDialog/AlertDialogTitle.jsx +63 -0
- package/dist/cjs/src/lib/components/AlertDialog/AlertDialogTrigger.jsx +82 -0
- package/dist/cjs/src/lib/components/AlertDialog/index.jsx +19 -0
- package/dist/cjs/src/lib/components/AspectRatio/index.jsx +69 -0
- package/dist/cjs/src/lib/components/Avatar/index.jsx +87 -0
- package/dist/cjs/src/lib/components/Badge/index.jsx +80 -0
- package/dist/cjs/src/lib/components/BarChart/index.jsx +64 -0
- package/dist/cjs/src/lib/components/BubbleChart/index.jsx +80 -0
- package/dist/cjs/src/lib/components/Button/index.jsx +83 -0
- package/dist/cjs/src/lib/components/Callout/CalloutIcon.jsx +88 -0
- package/dist/cjs/src/lib/components/Callout/CalloutRoot.jsx +102 -0
- package/dist/cjs/src/lib/components/Callout/CalloutText.jsx +68 -0
- package/dist/cjs/src/lib/components/Callout/index.jsx +11 -0
- package/dist/cjs/src/lib/components/Card/index.jsx +90 -0
- package/dist/cjs/src/lib/components/Checkbox/index.jsx +123 -0
- package/dist/cjs/src/lib/components/CheckboxCard/index.jsx +89 -0
- package/dist/cjs/src/lib/components/CheckboxGroup/CheckboxGroupItem.jsx +54 -0
- package/dist/cjs/src/lib/components/CheckboxGroup/CheckboxGroupRoot.jsx +64 -0
- package/dist/cjs/src/lib/components/CheckboxGroup/index.jsx +6 -0
- package/dist/cjs/src/lib/components/ContextMenu/ContextMenuCheckboxItem.jsx +61 -0
- package/dist/cjs/src/lib/components/ContextMenu/ContextMenuContent.jsx +85 -0
- package/dist/cjs/src/lib/components/ContextMenu/ContextMenuGroup.jsx +46 -0
- package/dist/cjs/src/lib/components/ContextMenu/ContextMenuItem.jsx +87 -0
- package/dist/cjs/src/lib/components/ContextMenu/ContextMenuItemIndicator.jsx +77 -0
- package/dist/cjs/src/lib/components/ContextMenu/ContextMenuLabel.jsx +75 -0
- package/dist/cjs/src/lib/components/ContextMenu/ContextMenuRadioGroup.jsx +49 -0
- package/dist/cjs/src/lib/components/ContextMenu/ContextMenuRadioItem.jsx +63 -0
- package/dist/cjs/src/lib/components/ContextMenu/ContextMenuRoot.jsx +61 -0
- package/dist/cjs/src/lib/components/ContextMenu/ContextMenuSeparator.jsx +47 -0
- package/dist/cjs/src/lib/components/ContextMenu/ContextMenuSubContent.jsx +83 -0
- package/dist/cjs/src/lib/components/ContextMenu/ContextMenuSubTrigger.jsx +61 -0
- package/dist/cjs/src/lib/components/ContextMenu/ContextMenuTrigger.jsx +47 -0
- package/dist/cjs/src/lib/components/ContextMenu/index.jsx +31 -0
- package/dist/cjs/src/lib/components/DataList/DataListItem.jsx +70 -0
- package/dist/cjs/src/lib/components/DataList/DataListLabel.jsx +76 -0
- package/dist/cjs/src/lib/components/DataList/DataListRoot.jsx +73 -0
- package/dist/cjs/src/lib/components/DataList/DataListValue.jsx +78 -0
- package/dist/cjs/src/lib/components/DataList/index.jsx +8 -0
- package/dist/cjs/src/lib/components/Dialog/DialogAction.jsx +75 -0
- package/dist/cjs/src/lib/components/Dialog/DialogCancel.jsx +71 -0
- package/dist/cjs/src/lib/components/Dialog/DialogContent.jsx +84 -0
- package/dist/cjs/src/lib/components/Dialog/DialogDescription.jsx +63 -0
- package/dist/cjs/src/lib/components/Dialog/DialogRoot.jsx +56 -0
- package/dist/cjs/src/lib/components/Dialog/DialogSlot.jsx +62 -0
- package/dist/cjs/src/lib/components/Dialog/DialogTitle.jsx +63 -0
- package/dist/cjs/src/lib/components/Dialog/DialogTrigger.jsx +46 -0
- package/dist/cjs/src/lib/components/Dialog/index.jsx +21 -0
- package/dist/cjs/src/lib/components/DoughnutChart/index.jsx +70 -0
- package/dist/cjs/src/lib/components/DropdownMenu/DropdonMenuRadioGroup.jsx +46 -0
- package/dist/cjs/src/lib/components/DropdownMenu/DropdonMenuSubContent.jsx +89 -0
- package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuCheckboxItem.jsx +60 -0
- package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuContent.jsx +85 -0
- package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuItem.jsx +86 -0
- package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuItemIndicator.jsx +75 -0
- package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuLable.jsx +61 -0
- package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuRadioItem.jsx +60 -0
- package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuRoot.jsx +55 -0
- package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuSeparator.jsx +45 -0
- package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuSub.jsx +44 -0
- package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuSubTrigger.jsx +59 -0
- package/dist/cjs/src/lib/components/DropdownMenu/DropdownMenuTrigger.jsx +69 -0
- package/dist/cjs/src/lib/components/DropdownMenu/index.jsx +31 -0
- package/dist/cjs/src/lib/components/HoverCard/HoverCardContent.jsx +88 -0
- package/dist/cjs/src/lib/components/HoverCard/HoverCardRoot.jsx +57 -0
- package/dist/cjs/src/lib/components/HoverCard/HoverCardTrigger.jsx +46 -0
- package/dist/cjs/src/lib/components/HoverCard/index.jsx +11 -0
- package/dist/cjs/src/lib/components/IconButton/index.jsx +90 -0
- package/dist/cjs/src/lib/components/Inset/index.jsx +79 -0
- package/dist/cjs/src/lib/components/Label/index.jsx +83 -0
- package/dist/cjs/src/lib/components/LineChart/index.jsx +62 -0
- package/dist/cjs/src/lib/components/Menubar/MenubarCheckboxItem.jsx +57 -0
- package/dist/cjs/src/lib/components/Menubar/MenubarContent.jsx +89 -0
- package/dist/cjs/src/lib/components/Menubar/MenubarItem.jsx +82 -0
- package/dist/cjs/src/lib/components/Menubar/MenubarItemIndicator.jsx +76 -0
- package/dist/cjs/src/lib/components/Menubar/MenubarMenu.jsx +44 -0
- package/dist/cjs/src/lib/components/Menubar/MenubarRadioGroup.jsx +49 -0
- package/dist/cjs/src/lib/components/Menubar/MenubarRadioItem.jsx +59 -0
- package/dist/cjs/src/lib/components/Menubar/MenubarRoot.jsx +91 -0
- package/dist/cjs/src/lib/components/Menubar/MenubarSeparator.jsx +47 -0
- package/dist/cjs/src/lib/components/Menubar/MenubarSub.jsx +44 -0
- package/dist/cjs/src/lib/components/Menubar/MenubarSubContent.jsx +78 -0
- package/dist/cjs/src/lib/components/Menubar/MenubarSubTrigger.jsx +60 -0
- package/dist/cjs/src/lib/components/Menubar/MenubarTrigger.jsx +84 -0
- package/dist/cjs/src/lib/components/Menubar/index.jsx +31 -0
- package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuContent.jsx +75 -0
- package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuIndicator.jsx +48 -0
- package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuItem.jsx +46 -0
- package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuLink.jsx +78 -0
- package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuList.jsx +75 -0
- package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuRoot.jsx +62 -0
- package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuTrigger.jsx +86 -0
- package/dist/cjs/src/lib/components/NavigationMenu/NavigationMenuViewport.jsx +80 -0
- package/dist/cjs/src/lib/components/NavigationMenu/index.jsx +12 -0
- package/dist/cjs/src/lib/components/PieChart/index.jsx +70 -0
- package/dist/cjs/src/lib/components/Popover/PopoverClose.jsx +64 -0
- package/dist/cjs/src/lib/components/Popover/PopoverContent.jsx +92 -0
- package/dist/cjs/src/lib/components/Popover/PopoverRoot.jsx +55 -0
- package/dist/cjs/src/lib/components/Popover/PopoverTrigger.jsx +46 -0
- package/dist/cjs/src/lib/components/Popover/index.jsx +13 -0
- package/dist/cjs/src/lib/components/Progress/index.jsx +83 -0
- package/dist/cjs/src/lib/components/RadarChart/index.jsx +83 -0
- package/dist/cjs/src/lib/components/Radio/index.jsx +54 -0
- package/dist/cjs/src/lib/components/RadioCards/RadioCardsItem.jsx +70 -0
- package/dist/cjs/src/lib/components/RadioCards/RadioCardsRoot.jsx +77 -0
- package/dist/cjs/src/lib/components/RadioCards/index.jsx +9 -0
- package/dist/cjs/src/lib/components/RadioGroup/RadioGroupItem.jsx +62 -0
- package/dist/cjs/src/lib/components/RadioGroup/RadioGroupRoot.jsx +73 -0
- package/dist/cjs/src/lib/components/RadioGroup/index.jsx +9 -0
- package/dist/cjs/src/lib/components/ScrollArea/index.jsx +54 -0
- package/dist/cjs/src/lib/components/SegmentedControl/SegmentedControlItem.jsx +51 -0
- package/dist/cjs/src/lib/components/SegmentedControl/SegmentedControlRoot.jsx +79 -0
- package/dist/cjs/src/lib/components/SegmentedControl/index.jsx +9 -0
- package/dist/cjs/src/lib/components/Select/index.jsx +115 -0
- package/dist/cjs/src/lib/components/Separator/index.jsx +56 -0
- package/dist/cjs/src/lib/components/Skeleton/index.jsx +51 -0
- package/dist/cjs/src/lib/components/Slider/index.jsx +56 -0
- package/dist/cjs/src/lib/components/Spinner/index.jsx +56 -0
- package/dist/cjs/src/lib/components/TabNav/index.jsx +50 -0
- package/dist/cjs/src/lib/components/Table/index.jsx +119 -0
- package/dist/cjs/src/lib/components/Tabs/index.jsx +80 -0
- package/dist/cjs/src/lib/components/TextArea/index.jsx +65 -0
- package/dist/cjs/src/lib/components/TextField/index.jsx +67 -0
- package/dist/cjs/src/lib/components/Toast/ToastActionButton.jsx +97 -0
- package/dist/cjs/src/lib/components/Toast/ToastDescription.jsx +71 -0
- package/dist/cjs/src/lib/components/Toast/ToastRoot.jsx +123 -0
- package/dist/cjs/src/lib/components/Toast/ToastTitle.jsx +69 -0
- package/dist/cjs/src/lib/components/Toast/index.jsx +13 -0
- package/dist/cjs/src/lib/components/Toggle/ToggleWithText.jsx +86 -0
- package/dist/cjs/src/lib/components/Toggle/index.jsx +88 -0
- package/dist/cjs/src/lib/components/ToggleGroup/ToggleGroupItem.jsx +70 -0
- package/dist/cjs/src/lib/components/ToggleGroup/ToggleGroupRoot.jsx +79 -0
- package/dist/cjs/src/lib/components/ToggleGroup/index.jsx +9 -0
- package/dist/cjs/src/lib/components/ToggleSwitch/index.jsx +81 -0
- package/dist/cjs/src/lib/components/Tooltip/index.jsx +86 -0
- package/dist/cjs/src/lib/components/index.js +108 -0
- package/dist/cjs/src/lib/constants.js +950 -0
- package/dist/cjs/src/lib/index.js +18 -0
- package/dist/cjs/src/lib/types.js +2 -0
- package/dist/cjs/src/lib/utils/useDarkMode.js +53 -0
- package/dist/cjs/src/lib/utils/utils.js +14 -0
- package/dist/cjs/src/stories/ToggleSwitch/ToggleSwitch.stories.jsx +125 -0
- package/dist/cjs/src/stories/Welcome.jsx +96 -0
- package/dist/cjs/src/stories/accordion/Accordion.stories.jsx +88 -0
- package/dist/cjs/src/stories/alert-dialog/AlertDialog.stories.jsx +79 -0
- package/dist/cjs/src/stories/aspect-ratio/AspectRatio.stories.jsx +115 -0
- package/dist/cjs/src/stories/avatar/Avatar.stories.jsx +120 -0
- package/dist/cjs/src/stories/badge/Badge.stories.jsx +148 -0
- package/dist/cjs/src/stories/bar-chart/BarChart.stories.jsx +114 -0
- package/dist/cjs/src/stories/bubble-chart/BubbleChart.stories.jsx +182 -0
- package/dist/cjs/src/stories/button/Button.stories.jsx +119 -0
- package/dist/cjs/src/stories/button/IconButton.stories.jsx +118 -0
- package/dist/cjs/src/stories/callout/Callout.stories.jsx +212 -0
- package/dist/cjs/src/stories/card/Card.stories.jsx +168 -0
- package/dist/cjs/src/stories/checkbox/Checkbox.stories.jsx +187 -0
- package/dist/cjs/src/stories/checkbox/CheckboxCard.stories.jsx +150 -0
- package/dist/cjs/src/stories/checkbox/CheckboxGroup.stories.jsx +150 -0
- package/dist/cjs/src/stories/context-menu/ContextMenu.stories.jsx +163 -0
- package/dist/cjs/src/stories/data-list/DataList.stories.jsx +193 -0
- package/dist/cjs/src/stories/dialog/Dialog.stories.jsx +183 -0
- package/dist/cjs/src/stories/doughnut-chart/DoughnutChart.stories.jsx +130 -0
- package/dist/cjs/src/stories/dropdown-menu/DropdownMenu.stories.jsx +156 -0
- package/dist/cjs/src/stories/header/Header.stories.jsx +127 -0
- package/dist/cjs/src/stories/hover-card/HoverCard.stories.jsx +150 -0
- package/dist/cjs/src/stories/inset/Inset.stories.jsx +105 -0
- package/dist/cjs/src/stories/label/Label.stories.jsx +119 -0
- package/dist/cjs/src/stories/line-chart/LineChart.stories.jsx +245 -0
- package/dist/cjs/src/stories/menubar/Menubar.stories.jsx +282 -0
- package/dist/cjs/src/stories/navigation-menu/NavigationMenu.stories.jsx +249 -0
- package/dist/cjs/src/stories/pie-chart/PieChart.stories.jsx +156 -0
- package/dist/cjs/src/stories/popover/Popover.stories.jsx +137 -0
- package/dist/cjs/src/stories/progress/Progress.stories.jsx +88 -0
- package/dist/cjs/src/stories/radar-chart/RadarChart.stories.jsx +134 -0
- package/dist/cjs/src/stories/radio/Radio.stories.jsx +117 -0
- package/dist/cjs/src/stories/radio/RadioCards.stories.jsx +147 -0
- package/dist/cjs/src/stories/radio/RadioGroup.stories.jsx +132 -0
- package/dist/cjs/src/stories/scroll-area/ScrollArea.stories.jsx +204 -0
- package/dist/cjs/src/stories/segmented-control/SegmentedControl.stories.jsx +107 -0
- package/dist/cjs/src/stories/select/Select.stories.jsx +187 -0
- package/dist/cjs/src/stories/separator/Separator.stories.jsx +112 -0
- package/dist/cjs/src/stories/skeleton/Skeleton.stories.jsx +126 -0
- package/dist/cjs/src/stories/slider/Slider.stories.jsx +100 -0
- package/dist/cjs/src/stories/spinner/Spinner.stories.jsx +122 -0
- package/dist/cjs/src/stories/tab-nav/TabNav.stories.jsx +102 -0
- package/dist/cjs/src/stories/table/Table.stories.jsx +139 -0
- package/dist/cjs/src/stories/tabs/Tabs.stories.jsx +126 -0
- package/dist/cjs/src/stories/text/Text.stories.jsx +123 -0
- package/dist/cjs/src/stories/textArea/TextArea.stories.jsx +119 -0
- package/dist/cjs/src/stories/textfield/TextField.stories.jsx +133 -0
- package/dist/cjs/src/stories/toast/Toast.stories.jsx +230 -0
- package/dist/cjs/src/stories/toggle/Toggle.stories.jsx +114 -0
- package/dist/cjs/src/stories/toggle/ToggleGroup.stories.jsx +158 -0
- package/dist/cjs/src/stories/tooltip/Tooltip.stories.jsx +98 -0
- package/dist/cjs/src/utils/chart.js +582 -0
- package/dist/cjs/src/utils/move.mjs +40 -0
- package/dist/cjs/src/utils/post-publish.mjs +28 -0
- package/dist/cjs/tailwind.config.js +169 -0
- package/dist/cjs/tsconfig.tsbuildinfo +1 -0
- package/dist/esm/.storybook/main.js +22 -0
- package/dist/esm/.storybook/manager.js +12 -0
- package/dist/esm/.storybook/preview.jsx +80 -0
- package/dist/esm/src/app/layout.jsx +13 -0
- package/dist/esm/src/app/page.jsx +36 -0
- package/dist/esm/src/app/template/colorPicker.jsx +19 -0
- package/dist/esm/src/app/template/theme.jsx +17 -0
- package/dist/{lib/Typography/Header/index.js → esm/src/lib/Typography/Header/index.jsx} +7 -4
- package/dist/{lib/Typography/Text/index.js → esm/src/lib/Typography/Text/index.jsx} +8 -5
- package/dist/{lib/components/Accordion/index.js → esm/src/lib/components/Accordion/index.jsx} +19 -7
- package/dist/{lib/components/AlertDialog/AlertDialogAction.js → esm/src/lib/components/AlertDialog/AlertDialogAction.jsx} +6 -5
- package/dist/{lib/components/AlertDialog/AlertDialogCancel.js → esm/src/lib/components/AlertDialog/AlertDialogCancel.jsx} +6 -5
- package/dist/{lib/components/AlertDialog/AlertDialogContent.js → esm/src/lib/components/AlertDialog/AlertDialogContent.jsx} +9 -5
- package/dist/{lib/components/AlertDialog/AlertDialogDescription.js → esm/src/lib/components/AlertDialog/AlertDialogDescription.jsx} +5 -15
- package/dist/{lib/components/AlertDialog/AlertDialogRoot.js → esm/src/lib/components/AlertDialog/AlertDialogRoot.jsx} +6 -14
- package/dist/{lib/components/AlertDialog/AlertDialogTitle.js → esm/src/lib/components/AlertDialog/AlertDialogTitle.jsx} +5 -15
- package/dist/{lib/components/AlertDialog/AlertDialogTrigger.js → esm/src/lib/components/AlertDialog/AlertDialogTrigger.jsx} +6 -5
- package/dist/{lib/components/AspectRatio/index.js → esm/src/lib/components/AspectRatio/index.jsx} +6 -5
- package/dist/{lib/components/Avatar/index.js → esm/src/lib/components/Avatar/index.jsx} +9 -5
- package/dist/{lib/components/Badge/index.js → esm/src/lib/components/Badge/index.jsx} +6 -5
- package/dist/{lib/components/BarChart/index.js → esm/src/lib/components/BarChart/index.jsx} +6 -7
- package/dist/{lib/components/BubbleChart/index.js → esm/src/lib/components/BubbleChart/index.jsx} +7 -7
- package/dist/{lib/components/Button/index.js → esm/src/lib/components/Button/index.jsx} +6 -5
- package/dist/{lib/components/Callout/CalloutIcon.js → esm/src/lib/components/Callout/CalloutIcon.jsx} +10 -5
- package/dist/{lib/components/Callout/CalloutRoot.js → esm/src/lib/components/Callout/CalloutRoot.jsx} +8 -5
- package/dist/{lib/components/Callout/CalloutText.js → esm/src/lib/components/Callout/CalloutText.jsx} +5 -15
- package/dist/{lib/components/Card/index.js → esm/src/lib/components/Card/index.jsx} +6 -5
- package/dist/{lib/components/Checkbox/index.js → esm/src/lib/components/Checkbox/index.jsx} +14 -6
- package/dist/{lib/components/CheckboxCard/index.js → esm/src/lib/components/CheckboxCard/index.jsx} +9 -7
- package/dist/{lib/components/CheckboxGroup/CheckboxGroupItem.js → esm/src/lib/components/CheckboxGroup/CheckboxGroupItem.jsx} +7 -15
- package/dist/{lib/components/CheckboxGroup/CheckboxGroupRoot.js → esm/src/lib/components/CheckboxGroup/CheckboxGroupRoot.jsx} +6 -3
- package/dist/{lib/components/ContextMenu/ContextMenuCheckboxItem.js → esm/src/lib/components/ContextMenu/ContextMenuCheckboxItem.jsx} +9 -16
- package/dist/{lib/components/ContextMenu/ContextMenuContent.js → esm/src/lib/components/ContextMenu/ContextMenuContent.jsx} +8 -5
- package/dist/{lib/components/ContextMenu/ContextMenuGroup.js → esm/src/lib/components/ContextMenu/ContextMenuGroup.jsx} +4 -14
- package/dist/{lib/components/ContextMenu/ContextMenuItem.js → esm/src/lib/components/ContextMenu/ContextMenuItem.jsx} +7 -5
- package/dist/{lib/components/ContextMenu/ContextMenuItemIndicator.js → esm/src/lib/components/ContextMenu/ContextMenuItemIndicator.jsx} +6 -5
- package/dist/{lib/components/ContextMenu/ContextMenuLabel.js → esm/src/lib/components/ContextMenu/ContextMenuLabel.jsx} +6 -5
- package/dist/{lib/components/ContextMenu/ContextMenuRadioGroup.js → esm/src/lib/components/ContextMenu/ContextMenuRadioGroup.jsx} +6 -14
- package/dist/{lib/components/ContextMenu/ContextMenuRadioItem.js → esm/src/lib/components/ContextMenu/ContextMenuRadioItem.jsx} +9 -16
- package/dist/{lib/components/ContextMenu/ContextMenuRoot.js → esm/src/lib/components/ContextMenu/ContextMenuRoot.jsx} +6 -14
- package/dist/{lib/components/ContextMenu/ContextMenuSeparator.js → esm/src/lib/components/ContextMenu/ContextMenuSeparator.jsx} +5 -15
- package/dist/{lib/components/ContextMenu/ContextMenuSubContent.js → esm/src/lib/components/ContextMenu/ContextMenuSubContent.jsx} +12 -9
- package/dist/{lib/components/ContextMenu/ContextMenuSubTrigger.js → esm/src/lib/components/ContextMenu/ContextMenuSubTrigger.jsx} +11 -16
- package/dist/{lib/components/ContextMenu/ContextMenuTrigger.js → esm/src/lib/components/ContextMenu/ContextMenuTrigger.jsx} +5 -15
- package/dist/{lib/components/DataList/DataListItem.js → esm/src/lib/components/DataList/DataListItem.jsx} +6 -5
- package/dist/{lib/components/DataList/DataListLabel.js → esm/src/lib/components/DataList/DataListLabel.jsx} +6 -5
- package/dist/{lib/components/DataList/DataListRoot.js → esm/src/lib/components/DataList/DataListRoot.jsx} +7 -15
- package/dist/{lib/components/DataList/DataListValue.js → esm/src/lib/components/DataList/DataListValue.jsx} +6 -5
- package/dist/{lib/components/Dialog/DialogAction.js → esm/src/lib/components/Dialog/DialogAction.jsx} +6 -16
- package/dist/{lib/components/Dialog/DialogCancel.js → esm/src/lib/components/Dialog/DialogCancel.jsx} +5 -15
- package/dist/{lib/components/Dialog/DialogContent.js → esm/src/lib/components/Dialog/DialogContent.jsx} +6 -5
- package/dist/{lib/components/Dialog/DialogDescription.js → esm/src/lib/components/Dialog/DialogDescription.jsx} +5 -15
- package/dist/{lib/components/Dialog/DialogRoot.js → esm/src/lib/components/Dialog/DialogRoot.jsx} +6 -14
- package/dist/{lib/components/Dialog/DialogSlot.js → esm/src/lib/components/Dialog/DialogSlot.jsx} +5 -15
- package/dist/{lib/components/Dialog/DialogTitle.js → esm/src/lib/components/Dialog/DialogTitle.jsx} +5 -15
- package/dist/{lib/components/Dialog/DialogTrigger.js → esm/src/lib/components/Dialog/DialogTrigger.jsx} +4 -14
- package/dist/{lib/components/DoughnutChart/index.js → esm/src/lib/components/DoughnutChart/index.jsx} +6 -6
- package/dist/{lib/components/DropdownMenu/DropdonMenuRadioGroup.js → esm/src/lib/components/DropdownMenu/DropdonMenuRadioGroup.jsx} +3 -13
- package/dist/{lib/components/DropdownMenu/DropdonMenuSubContent.js → esm/src/lib/components/DropdownMenu/DropdonMenuSubContent.jsx} +12 -9
- package/dist/{lib/components/DropdownMenu/DropdownMenuCheckboxItem.js → esm/src/lib/components/DropdownMenu/DropdownMenuCheckboxItem.jsx} +9 -16
- package/dist/{lib/components/DropdownMenu/DropdownMenuContent.js → esm/src/lib/components/DropdownMenu/DropdownMenuContent.jsx} +8 -5
- package/dist/{lib/components/DropdownMenu/DropdownMenuItem.js → esm/src/lib/components/DropdownMenu/DropdownMenuItem.jsx} +7 -5
- package/dist/{lib/components/DropdownMenu/DropdownMenuItemIndicator.js → esm/src/lib/components/DropdownMenu/DropdownMenuItemIndicator.jsx} +6 -5
- package/dist/{lib/components/DropdownMenu/DropdownMenuLable.js → esm/src/lib/components/DropdownMenu/DropdownMenuLable.jsx} +5 -15
- package/dist/{lib/components/DropdownMenu/DropdownMenuRadioItem.js → esm/src/lib/components/DropdownMenu/DropdownMenuRadioItem.jsx} +9 -16
- package/dist/{lib/components/DropdownMenu/DropdownMenuRoot.js → esm/src/lib/components/DropdownMenu/DropdownMenuRoot.jsx} +4 -14
- package/dist/{lib/components/DropdownMenu/DropdownMenuSeparator.js → esm/src/lib/components/DropdownMenu/DropdownMenuSeparator.jsx} +3 -15
- package/dist/{lib/components/DropdownMenu/DropdownMenuSub.js → esm/src/lib/components/DropdownMenu/DropdownMenuSub.jsx} +2 -14
- package/dist/{lib/components/DropdownMenu/DropdownMenuSubTrigger.js → esm/src/lib/components/DropdownMenu/DropdownMenuSubTrigger.jsx} +9 -16
- package/dist/{lib/components/DropdownMenu/DropdownMenuTrigger.js → esm/src/lib/components/DropdownMenu/DropdownMenuTrigger.jsx} +5 -15
- package/dist/{lib/components/HoverCard/HoverCardContent.js → esm/src/lib/components/HoverCard/HoverCardContent.jsx} +6 -5
- package/dist/{lib/components/HoverCard/HoverCardRoot.js → esm/src/lib/components/HoverCard/HoverCardRoot.jsx} +6 -14
- package/dist/{lib/components/HoverCard/HoverCardTrigger.js → esm/src/lib/components/HoverCard/HoverCardTrigger.jsx} +4 -14
- package/dist/{lib/components/IconButton/index.js → esm/src/lib/components/IconButton/index.jsx} +5 -4
- package/dist/{lib/components/Inset/index.js → esm/src/lib/components/Inset/index.jsx} +8 -5
- package/dist/{lib/components/Label/index.js → esm/src/lib/components/Label/index.jsx} +5 -4
- package/dist/{lib/components/LineChart/index.js → esm/src/lib/components/LineChart/index.jsx} +6 -7
- package/dist/{lib/components/Menubar/MenubarCheckboxItem.js → esm/src/lib/components/Menubar/MenubarCheckboxItem.jsx} +9 -16
- package/dist/{lib/components/Menubar/MenubarContent.js → esm/src/lib/components/Menubar/MenubarContent.jsx} +12 -9
- package/dist/{lib/components/Menubar/MenubarItem.js → esm/src/lib/components/Menubar/MenubarItem.jsx} +7 -5
- package/dist/{lib/components/Menubar/MenubarItemIndicator.js → esm/src/lib/components/Menubar/MenubarItemIndicator.jsx} +6 -5
- package/dist/{lib/components/Menubar/MenubarMenu.js → esm/src/lib/components/Menubar/MenubarMenu.jsx} +2 -14
- package/dist/{lib/components/Menubar/MenubarRadioGroup.js → esm/src/lib/components/Menubar/MenubarRadioGroup.jsx} +6 -14
- package/dist/{lib/components/Menubar/MenubarRadioItem.js → esm/src/lib/components/Menubar/MenubarRadioItem.jsx} +9 -16
- package/dist/{lib/components/Menubar/MenubarRoot.js → esm/src/lib/components/Menubar/MenubarRoot.jsx} +8 -5
- package/dist/{lib/components/Menubar/MenubarSeparator.js → esm/src/lib/components/Menubar/MenubarSeparator.jsx} +5 -15
- package/dist/{lib/components/Menubar/MenubarSub.js → esm/src/lib/components/Menubar/MenubarSub.jsx} +2 -14
- package/dist/{lib/components/Menubar/MenubarSubContent.js → esm/src/lib/components/Menubar/MenubarSubContent.jsx} +7 -6
- package/dist/{lib/components/Menubar/MenubarSubTrigger.js → esm/src/lib/components/Menubar/MenubarSubTrigger.jsx} +9 -16
- package/dist/{lib/components/Menubar/MenubarTrigger.js → esm/src/lib/components/Menubar/MenubarTrigger.jsx} +6 -5
- package/dist/{lib/components/NavigationMenu/NavigationMenuContent.js → esm/src/lib/components/NavigationMenu/NavigationMenuContent.jsx} +6 -5
- package/dist/esm/src/lib/components/NavigationMenu/NavigationMenuIndicator.jsx +22 -0
- package/dist/{lib/components/NavigationMenu/NavigationMenuItem.js → esm/src/lib/components/NavigationMenu/NavigationMenuItem.jsx} +4 -14
- package/dist/{lib/components/NavigationMenu/NavigationMenuLink.js → esm/src/lib/components/NavigationMenu/NavigationMenuLink.jsx} +6 -5
- package/dist/{lib/components/NavigationMenu/NavigationMenuList.js → esm/src/lib/components/NavigationMenu/NavigationMenuList.jsx} +7 -5
- package/dist/{lib/components/NavigationMenu/NavigationMenuRoot.js → esm/src/lib/components/NavigationMenu/NavigationMenuRoot.jsx} +7 -15
- package/dist/{lib/components/NavigationMenu/NavigationMenuTrigger.js → esm/src/lib/components/NavigationMenu/NavigationMenuTrigger.jsx} +7 -5
- package/dist/{lib/components/NavigationMenu/NavigationMenuViewport.js → esm/src/lib/components/NavigationMenu/NavigationMenuViewport.jsx} +6 -5
- package/dist/{lib/components/PieChart/index.js → esm/src/lib/components/PieChart/index.jsx} +6 -6
- package/dist/{lib/components/Popover/PopoverClose.js → esm/src/lib/components/Popover/PopoverClose.jsx} +5 -15
- package/dist/{lib/components/Popover/PopoverContent.js → esm/src/lib/components/Popover/PopoverContent.jsx} +6 -5
- package/dist/{lib/components/Popover/PopoverRoot.js → esm/src/lib/components/Popover/PopoverRoot.jsx} +6 -14
- package/dist/{lib/components/Popover/PopoverTrigger.js → esm/src/lib/components/Popover/PopoverTrigger.jsx} +4 -14
- package/dist/{lib/components/Progress/index.js → esm/src/lib/components/Progress/index.jsx} +6 -5
- package/dist/{lib/components/RadarChart/index.js → esm/src/lib/components/RadarChart/index.jsx} +7 -7
- package/dist/{lib/components/Radio/index.js → esm/src/lib/components/Radio/index.jsx} +10 -15
- package/dist/{lib/components/RadioCards/RadioCardsItem.js → esm/src/lib/components/RadioCards/RadioCardsItem.jsx} +5 -15
- package/dist/{lib/components/RadioCards/RadioCardsRoot.js → esm/src/lib/components/RadioCards/RadioCardsRoot.jsx} +10 -5
- package/dist/{lib/components/RadioGroup/RadioGroupItem.js → esm/src/lib/components/RadioGroup/RadioGroupItem.jsx} +5 -15
- package/dist/{lib/components/RadioGroup/RadioGroupRoot.js → esm/src/lib/components/RadioGroup/RadioGroupRoot.jsx} +9 -15
- package/dist/{lib/components/ScrollArea/index.js → esm/src/lib/components/ScrollArea/index.jsx} +6 -14
- package/dist/{lib/components/SegmentedControl/SegmentedControlItem.js → esm/src/lib/components/SegmentedControl/SegmentedControlItem.jsx} +5 -15
- package/dist/{lib/components/SegmentedControl/SegmentedControlRoot.js → esm/src/lib/components/SegmentedControl/SegmentedControlRoot.jsx} +7 -4
- package/dist/{lib/components/Select/index.js → esm/src/lib/components/Select/index.jsx} +27 -10
- package/dist/{lib/components/Separator/index.js → esm/src/lib/components/Separator/index.jsx} +7 -4
- package/dist/{lib/components/Skeleton/index.js → esm/src/lib/components/Skeleton/index.jsx} +7 -4
- package/dist/{lib/components/Slider/index.js → esm/src/lib/components/Slider/index.jsx} +5 -4
- package/dist/{lib/components/Spinner/index.js → esm/src/lib/components/Spinner/index.jsx} +7 -4
- package/dist/{lib/components/TabNav/index.js → esm/src/lib/components/TabNav/index.jsx} +9 -15
- package/dist/{lib/components/Table/index.js → esm/src/lib/components/Table/index.jsx} +25 -10
- package/dist/{lib/components/Tabs/index.js → esm/src/lib/components/Tabs/index.jsx} +16 -7
- package/dist/{lib/components/TextArea/index.js → esm/src/lib/components/TextArea/index.jsx} +5 -4
- package/dist/{lib/components/TextField/index.js → esm/src/lib/components/TextField/index.jsx} +10 -5
- package/dist/{lib/components/Toast/ToastActionButton.js → esm/src/lib/components/Toast/ToastActionButton.jsx} +7 -6
- package/dist/{lib/components/Toast/ToastDescription.js → esm/src/lib/components/Toast/ToastDescription.jsx} +7 -15
- package/dist/{lib/components/Toast/ToastRoot.js → esm/src/lib/components/Toast/ToastRoot.jsx} +11 -5
- package/dist/{lib/components/Toast/ToastTitle.js → esm/src/lib/components/Toast/ToastTitle.jsx} +5 -15
- package/dist/{lib/components/Toggle/ToggleWithText.js → esm/src/lib/components/Toggle/ToggleWithText.jsx} +9 -7
- package/dist/{lib/components/Toggle/index.js → esm/src/lib/components/Toggle/index.jsx} +6 -5
- package/dist/{lib/components/ToggleGroup/ToggleGroupItem.js → esm/src/lib/components/ToggleGroup/ToggleGroupItem.jsx} +6 -16
- package/dist/{lib/components/ToggleGroup/ToggleGroupRoot.js → esm/src/lib/components/ToggleGroup/ToggleGroupRoot.jsx} +10 -5
- package/dist/{lib/components/ToggleSwitch/index.js → esm/src/lib/components/ToggleSwitch/index.jsx} +9 -5
- package/dist/{lib/components/Tooltip/index.js → esm/src/lib/components/Tooltip/index.jsx} +13 -4
- package/dist/{lib → esm/src/lib}/constants.js +2 -2
- package/dist/{lib → esm/src/lib}/utils/useDarkMode.js +1 -1
- package/dist/esm/src/stories/ToggleSwitch/ToggleSwitch.stories.jsx +118 -0
- package/dist/esm/src/stories/Welcome.jsx +68 -0
- package/dist/esm/src/stories/accordion/Accordion.stories.jsx +81 -0
- package/dist/esm/src/stories/alert-dialog/AlertDialog.stories.jsx +72 -0
- package/dist/esm/src/stories/aspect-ratio/AspectRatio.stories.jsx +106 -0
- package/dist/esm/src/stories/avatar/Avatar.stories.jsx +109 -0
- package/dist/esm/src/stories/badge/Badge.stories.jsx +135 -0
- package/dist/esm/src/stories/bar-chart/BarChart.stories.jsx +105 -0
- package/dist/esm/src/stories/bubble-chart/BubbleChart.stories.jsx +175 -0
- package/dist/esm/src/stories/button/Button.stories.jsx +105 -0
- package/dist/esm/src/stories/button/IconButton.stories.jsx +110 -0
- package/dist/esm/src/stories/callout/Callout.stories.jsx +202 -0
- package/dist/esm/src/stories/card/Card.stories.jsx +156 -0
- package/dist/esm/src/stories/checkbox/Checkbox.stories.jsx +174 -0
- package/dist/esm/src/stories/checkbox/CheckboxCard.stories.jsx +138 -0
- package/dist/esm/src/stories/checkbox/CheckboxGroup.stories.jsx +144 -0
- package/dist/esm/src/stories/context-menu/ContextMenu.stories.jsx +156 -0
- package/dist/esm/src/stories/data-list/DataList.stories.jsx +186 -0
- package/dist/esm/src/stories/dialog/Dialog.stories.jsx +173 -0
- package/dist/esm/src/stories/doughnut-chart/DoughnutChart.stories.jsx +118 -0
- package/dist/esm/src/stories/dropdown-menu/DropdownMenu.stories.jsx +146 -0
- package/dist/esm/src/stories/header/Header.stories.jsx +118 -0
- package/dist/esm/src/stories/hover-card/HoverCard.stories.jsx +143 -0
- package/dist/esm/src/stories/inset/Inset.stories.jsx +99 -0
- package/dist/esm/src/stories/label/Label.stories.jsx +112 -0
- package/dist/esm/src/stories/line-chart/LineChart.stories.jsx +234 -0
- package/dist/esm/src/stories/menubar/Menubar.stories.jsx +274 -0
- package/dist/esm/src/stories/navigation-menu/NavigationMenu.stories.jsx +237 -0
- package/dist/esm/src/stories/pie-chart/PieChart.stories.jsx +144 -0
- package/dist/esm/src/stories/popover/Popover.stories.jsx +128 -0
- package/dist/esm/src/stories/progress/Progress.stories.jsx +81 -0
- package/dist/esm/src/stories/radar-chart/RadarChart.stories.jsx +126 -0
- package/dist/esm/src/stories/radio/Radio.stories.jsx +110 -0
- package/dist/esm/src/stories/radio/RadioCards.stories.jsx +136 -0
- package/dist/esm/src/stories/radio/RadioGroup.stories.jsx +125 -0
- package/dist/esm/src/stories/scroll-area/ScrollArea.stories.jsx +197 -0
- package/dist/esm/src/stories/segmented-control/SegmentedControl.stories.jsx +100 -0
- package/dist/esm/src/stories/select/Select.stories.jsx +175 -0
- package/dist/esm/src/stories/separator/Separator.stories.jsx +105 -0
- package/dist/esm/src/stories/skeleton/Skeleton.stories.jsx +118 -0
- package/dist/esm/src/stories/slider/Slider.stories.jsx +93 -0
- package/dist/esm/src/stories/spinner/Spinner.stories.jsx +111 -0
- package/dist/esm/src/stories/tab-nav/TabNav.stories.jsx +94 -0
- package/dist/esm/src/stories/table/Table.stories.jsx +129 -0
- package/dist/esm/src/stories/tabs/Tabs.stories.jsx +118 -0
- package/dist/esm/src/stories/text/Text.stories.jsx +115 -0
- package/dist/esm/src/stories/textArea/TextArea.stories.jsx +111 -0
- package/dist/esm/src/stories/textfield/TextField.stories.jsx +122 -0
- package/dist/esm/src/stories/toast/Toast.stories.jsx +197 -0
- package/dist/esm/src/stories/toggle/Toggle.stories.jsx +106 -0
- package/dist/esm/src/stories/toggle/ToggleGroup.stories.jsx +151 -0
- package/dist/esm/src/stories/tooltip/Tooltip.stories.jsx +89 -0
- package/dist/esm/src/utils/chart.js +572 -0
- package/dist/esm/src/utils/move.mjs +35 -0
- package/dist/esm/src/utils/post-publish.mjs +23 -0
- package/dist/esm/tailwind.config.js +144 -0
- package/dist/esm/tsconfig.tsbuildinfo +1 -0
- package/package.json +5 -4
- package/dist/lib/Typography/Header/index.d.ts +0 -13
- package/dist/lib/Typography/Text/index.d.ts +0 -15
- package/dist/lib/Typography/index.d.ts +0 -2
- package/dist/lib/color/alpha.d.ts +0 -784
- package/dist/lib/color/constants.d.ts +0 -29
- package/dist/lib/color/dark.d.ts +0 -392
- package/dist/lib/color/krdsColors.d.ts +0 -309
- package/dist/lib/color/light.d.ts +0 -392
- package/dist/lib/components/Accordion/index.d.ts +0 -22
- package/dist/lib/components/AlertDialog/AlertDialogAction.d.ts +0 -14
- package/dist/lib/components/AlertDialog/AlertDialogCancel.d.ts +0 -13
- package/dist/lib/components/AlertDialog/AlertDialogContent.d.ts +0 -11
- package/dist/lib/components/AlertDialog/AlertDialogDescription.d.ts +0 -10
- package/dist/lib/components/AlertDialog/AlertDialogRoot.d.ts +0 -16
- package/dist/lib/components/AlertDialog/AlertDialogTitle.d.ts +0 -10
- package/dist/lib/components/AlertDialog/AlertDialogTrigger.d.ts +0 -17
- package/dist/lib/components/AlertDialog/index.d.ts +0 -11
- package/dist/lib/components/AspectRatio/index.d.ts +0 -10
- package/dist/lib/components/Avatar/index.d.ts +0 -21
- package/dist/lib/components/Badge/index.d.ts +0 -18
- package/dist/lib/components/BarChart/index.d.ts +0 -38
- package/dist/lib/components/BubbleChart/index.d.ts +0 -29
- package/dist/lib/components/Button/index.d.ts +0 -16
- package/dist/lib/components/Callout/CalloutIcon.d.ts +0 -13
- package/dist/lib/components/Callout/CalloutRoot.d.ts +0 -18
- package/dist/lib/components/Callout/CalloutText.d.ts +0 -10
- package/dist/lib/components/Callout/index.d.ts +0 -7
- package/dist/lib/components/Card/index.d.ts +0 -14
- package/dist/lib/components/Checkbox/index.d.ts +0 -17
- package/dist/lib/components/CheckboxCard/index.d.ts +0 -20
- package/dist/lib/components/CheckboxGroup/CheckboxGroupItem.d.ts +0 -5
- package/dist/lib/components/CheckboxGroup/CheckboxGroupRoot.d.ts +0 -17
- package/dist/lib/components/CheckboxGroup/index.d.ts +0 -6
- package/dist/lib/components/ContextMenu/ContextMenuCheckboxItem.d.ts +0 -4
- package/dist/lib/components/ContextMenu/ContextMenuContent.d.ts +0 -11
- package/dist/lib/components/ContextMenu/ContextMenuGroup.d.ts +0 -4
- package/dist/lib/components/ContextMenu/ContextMenuItem.d.ts +0 -13
- package/dist/lib/components/ContextMenu/ContextMenuItemIndicator.d.ts +0 -10
- package/dist/lib/components/ContextMenu/ContextMenuLabel.d.ts +0 -11
- package/dist/lib/components/ContextMenu/ContextMenuRadioGroup.d.ts +0 -8
- package/dist/lib/components/ContextMenu/ContextMenuRadioItem.d.ts +0 -4
- package/dist/lib/components/ContextMenu/ContextMenuRoot.d.ts +0 -13
- package/dist/lib/components/ContextMenu/ContextMenuSeparator.d.ts +0 -3
- package/dist/lib/components/ContextMenu/ContextMenuSubContent.d.ts +0 -11
- package/dist/lib/components/ContextMenu/ContextMenuSubTrigger.d.ts +0 -4
- package/dist/lib/components/ContextMenu/ContextMenuTrigger.d.ts +0 -4
- package/dist/lib/components/ContextMenu/index.d.ts +0 -17
- package/dist/lib/components/DataList/DataListItem.d.ts +0 -9
- package/dist/lib/components/DataList/DataListLabel.d.ts +0 -10
- package/dist/lib/components/DataList/DataListRoot.d.ts +0 -14
- package/dist/lib/components/DataList/DataListValue.d.ts +0 -11
- package/dist/lib/components/DataList/index.d.ts +0 -8
- package/dist/lib/components/Dialog/DialogAction.d.ts +0 -13
- package/dist/lib/components/Dialog/DialogCancel.d.ts +0 -11
- package/dist/lib/components/Dialog/DialogContent.d.ts +0 -11
- package/dist/lib/components/Dialog/DialogDescription.d.ts +0 -9
- package/dist/lib/components/Dialog/DialogRoot.d.ts +0 -15
- package/dist/lib/components/Dialog/DialogSlot.d.ts +0 -9
- package/dist/lib/components/Dialog/DialogTitle.d.ts +0 -11
- package/dist/lib/components/Dialog/DialogTrigger.d.ts +0 -3
- package/dist/lib/components/Dialog/index.d.ts +0 -15
- package/dist/lib/components/DoughnutChart/index.d.ts +0 -23
- package/dist/lib/components/DropdownMenu/DropdonMenuRadioGroup.d.ts +0 -3
- package/dist/lib/components/DropdownMenu/DropdonMenuSubContent.d.ts +0 -11
- package/dist/lib/components/DropdownMenu/DropdownMenuCheckboxItem.d.ts +0 -7
- package/dist/lib/components/DropdownMenu/DropdownMenuContent.d.ts +0 -11
- package/dist/lib/components/DropdownMenu/DropdownMenuItem.d.ts +0 -15
- package/dist/lib/components/DropdownMenu/DropdownMenuItemIndicator.d.ts +0 -10
- package/dist/lib/components/DropdownMenu/DropdownMenuLable.d.ts +0 -10
- package/dist/lib/components/DropdownMenu/DropdownMenuRadioItem.d.ts +0 -6
- package/dist/lib/components/DropdownMenu/DropdownMenuRoot.d.ts +0 -15
- package/dist/lib/components/DropdownMenu/DropdownMenuSeparator.d.ts +0 -3
- package/dist/lib/components/DropdownMenu/DropdownMenuSub.d.ts +0 -3
- package/dist/lib/components/DropdownMenu/DropdownMenuSubTrigger.d.ts +0 -4
- package/dist/lib/components/DropdownMenu/DropdownMenuTrigger.d.ts +0 -14
- package/dist/lib/components/DropdownMenu/index.d.ts +0 -20
- package/dist/lib/components/HoverCard/HoverCardContent.d.ts +0 -14
- package/dist/lib/components/HoverCard/HoverCardRoot.d.ts +0 -11
- package/dist/lib/components/HoverCard/HoverCardTrigger.d.ts +0 -3
- package/dist/lib/components/HoverCard/index.d.ts +0 -10
- package/dist/lib/components/IconButton/index.d.ts +0 -15
- package/dist/lib/components/Inset/index.d.ts +0 -10
- package/dist/lib/components/Label/index.d.ts +0 -17
- package/dist/lib/components/LineChart/index.d.ts +0 -44
- package/dist/lib/components/Menubar/MenubarCheckboxItem.d.ts +0 -4
- package/dist/lib/components/Menubar/MenubarContent.d.ts +0 -11
- package/dist/lib/components/Menubar/MenubarItem.d.ts +0 -13
- package/dist/lib/components/Menubar/MenubarItemIndicator.d.ts +0 -10
- package/dist/lib/components/Menubar/MenubarMenu.d.ts +0 -5
- package/dist/lib/components/Menubar/MenubarRadioGroup.d.ts +0 -8
- package/dist/lib/components/Menubar/MenubarRadioItem.d.ts +0 -4
- package/dist/lib/components/Menubar/MenubarRoot.d.ts +0 -19
- package/dist/lib/components/Menubar/MenubarSeparator.d.ts +0 -3
- package/dist/lib/components/Menubar/MenubarSub.d.ts +0 -3
- package/dist/lib/components/Menubar/MenubarSubContent.d.ts +0 -10
- package/dist/lib/components/Menubar/MenubarSubTrigger.d.ts +0 -4
- package/dist/lib/components/Menubar/MenubarTrigger.d.ts +0 -12
- package/dist/lib/components/Menubar/index.d.ts +0 -19
- package/dist/lib/components/NavigationMenu/NavigationMenuContent.d.ts +0 -11
- package/dist/lib/components/NavigationMenu/NavigationMenuIndicator.d.ts +0 -3
- package/dist/lib/components/NavigationMenu/NavigationMenuIndicator.js +0 -31
- package/dist/lib/components/NavigationMenu/NavigationMenuItem.d.ts +0 -3
- package/dist/lib/components/NavigationMenu/NavigationMenuLink.d.ts +0 -13
- package/dist/lib/components/NavigationMenu/NavigationMenuList.d.ts +0 -12
- package/dist/lib/components/NavigationMenu/NavigationMenuRoot.d.ts +0 -14
- package/dist/lib/components/NavigationMenu/NavigationMenuTrigger.d.ts +0 -13
- package/dist/lib/components/NavigationMenu/NavigationMenuViewport.d.ts +0 -12
- package/dist/lib/components/NavigationMenu/index.d.ts +0 -12
- package/dist/lib/components/PieChart/index.d.ts +0 -23
- package/dist/lib/components/Popover/PopoverClose.d.ts +0 -9
- package/dist/lib/components/Popover/PopoverContent.d.ts +0 -11
- package/dist/lib/components/Popover/PopoverRoot.d.ts +0 -12
- package/dist/lib/components/Popover/PopoverTrigger.d.ts +0 -3
- package/dist/lib/components/Popover/index.d.ts +0 -11
- package/dist/lib/components/Progress/index.d.ts +0 -13
- package/dist/lib/components/RadarChart/index.d.ts +0 -33
- package/dist/lib/components/Radio/index.d.ts +0 -13
- package/dist/lib/components/RadioCards/RadioCardsItem.d.ts +0 -10
- package/dist/lib/components/RadioCards/RadioCardsRoot.d.ts +0 -13
- package/dist/lib/components/RadioCards/index.d.ts +0 -6
- package/dist/lib/components/RadioGroup/RadioGroupItem.d.ts +0 -13
- package/dist/lib/components/RadioGroup/RadioGroupRoot.d.ts +0 -15
- package/dist/lib/components/RadioGroup/index.d.ts +0 -6
- package/dist/lib/components/ScrollArea/index.d.ts +0 -9
- package/dist/lib/components/SegmentedControl/SegmentedControlItem.d.ts +0 -6
- package/dist/lib/components/SegmentedControl/SegmentedControlRoot.d.ts +0 -14
- package/dist/lib/components/SegmentedControl/index.d.ts +0 -6
- package/dist/lib/components/Select/index.d.ts +0 -34
- package/dist/lib/components/Separator/index.d.ts +0 -11
- package/dist/lib/components/Skeleton/index.d.ts +0 -14
- package/dist/lib/components/Slider/index.d.ts +0 -14
- package/dist/lib/components/Spinner/index.d.ts +0 -15
- package/dist/lib/components/TabNav/index.d.ts +0 -15
- package/dist/lib/components/Table/index.d.ts +0 -30
- package/dist/lib/components/Tabs/index.d.ts +0 -22
- package/dist/lib/components/TextArea/index.d.ts +0 -16
- package/dist/lib/components/TextField/index.d.ts +0 -21
- package/dist/lib/components/Toast/ToastActionButton.d.ts +0 -14
- package/dist/lib/components/Toast/ToastDescription.d.ts +0 -13
- package/dist/lib/components/Toast/ToastRoot.d.ts +0 -27
- package/dist/lib/components/Toast/ToastTitle.d.ts +0 -13
- package/dist/lib/components/Toast/index.d.ts +0 -8
- package/dist/lib/components/Toggle/ToggleWithText.d.ts +0 -21
- package/dist/lib/components/Toggle/index.d.ts +0 -21
- package/dist/lib/components/ToggleGroup/ToggleGroupItem.d.ts +0 -17
- package/dist/lib/components/ToggleGroup/ToggleGroupRoot.d.ts +0 -15
- package/dist/lib/components/ToggleGroup/index.d.ts +0 -6
- package/dist/lib/components/ToggleSwitch/index.d.ts +0 -13
- package/dist/lib/components/Tooltip/index.d.ts +0 -19
- package/dist/lib/components/index.d.ts +0 -50
- package/dist/lib/constants.d.ts +0 -655
- package/dist/lib/index.d.ts +0 -2
- package/dist/lib/types.d.ts +0 -81
- package/dist/lib/utils/useDarkMode.d.ts +0 -1
- package/dist/lib/utils/utils.d.ts +0 -2
- /package/dist/{lib → esm/src/lib}/Typography/index.js +0 -0
- /package/dist/{lib → esm/src/lib}/color/alpha.js +0 -0
- /package/dist/{lib → esm/src/lib}/color/constants.js +0 -0
- /package/dist/{lib → esm/src/lib}/color/dark.js +0 -0
- /package/dist/{lib → esm/src/lib}/color/krdsColors.js +0 -0
- /package/dist/{lib → esm/src/lib}/color/light.js +0 -0
- /package/dist/{lib/components/AlertDialog/index.js → esm/src/lib/components/AlertDialog/index.jsx} +0 -0
- /package/dist/{lib/components/Callout/index.js → esm/src/lib/components/Callout/index.jsx} +0 -0
- /package/dist/{lib/components/CheckboxGroup/index.js → esm/src/lib/components/CheckboxGroup/index.jsx} +0 -0
- /package/dist/{lib/components/ContextMenu/index.js → esm/src/lib/components/ContextMenu/index.jsx} +0 -0
- /package/dist/{lib/components/DataList/index.js → esm/src/lib/components/DataList/index.jsx} +0 -0
- /package/dist/{lib/components/Dialog/index.js → esm/src/lib/components/Dialog/index.jsx} +0 -0
- /package/dist/{lib/components/DropdownMenu/index.js → esm/src/lib/components/DropdownMenu/index.jsx} +0 -0
- /package/dist/{lib/components/HoverCard/index.js → esm/src/lib/components/HoverCard/index.jsx} +0 -0
- /package/dist/{lib/components/Menubar/index.js → esm/src/lib/components/Menubar/index.jsx} +0 -0
- /package/dist/{lib/components/NavigationMenu/index.js → esm/src/lib/components/NavigationMenu/index.jsx} +0 -0
- /package/dist/{lib/components/Popover/index.js → esm/src/lib/components/Popover/index.jsx} +0 -0
- /package/dist/{lib/components/RadioCards/index.js → esm/src/lib/components/RadioCards/index.jsx} +0 -0
- /package/dist/{lib/components/RadioGroup/index.js → esm/src/lib/components/RadioGroup/index.jsx} +0 -0
- /package/dist/{lib/components/SegmentedControl/index.js → esm/src/lib/components/SegmentedControl/index.jsx} +0 -0
- /package/dist/{lib/components/Toast/index.js → esm/src/lib/components/Toast/index.jsx} +0 -0
- /package/dist/{lib/components/ToggleGroup/index.js → esm/src/lib/components/ToggleGroup/index.jsx} +0 -0
- /package/dist/{lib → esm/src/lib}/components/index.js +0 -0
- /package/dist/{lib → esm/src/lib}/index.js +0 -0
- /package/dist/{lib → esm/src/lib}/types.js +0 -0
- /package/dist/{lib → esm/src/lib}/utils/utils.js +0 -0
@@ -0,0 +1,115 @@
|
|
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
|
+
};
|
@@ -0,0 +1,111 @@
|
|
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
|
+
};
|
@@ -0,0 +1,122 @@
|
|
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
|
+
};
|
@@ -0,0 +1,197 @@
|
|
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
|
+
};
|
@@ -0,0 +1,106 @@
|
|
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 { commonArgTypes, radiusOptions, sizeOptions, appearanceOptions } from '../../../../lib/constants';
|
24
|
+
import { FontBoldIcon } from '@radix-ui/react-icons';
|
25
|
+
import { Toggle, ToggleWithText } from '../../../../lib/components/Toggle';
|
26
|
+
FontBoldIcon.displayName = 'FontBoldIcon';
|
27
|
+
var meta = {
|
28
|
+
title: 'Component/Toggle',
|
29
|
+
component: Toggle,
|
30
|
+
parameters: {
|
31
|
+
layout: 'centered',
|
32
|
+
themes: {
|
33
|
+
themeOverride: 'dark',
|
34
|
+
},
|
35
|
+
docs: {
|
36
|
+
description: {
|
37
|
+
component: '두 가지 상태값 중 하나를 선택, 전환을 목적으로 사용하는 버튼',
|
38
|
+
},
|
39
|
+
},
|
40
|
+
},
|
41
|
+
argTypes: {
|
42
|
+
radius: __assign(__assign({}, commonArgTypes.radius), { description: 'toggle 둥글기' }),
|
43
|
+
size: __assign(__assign({}, commonArgTypes.size), { table: {
|
44
|
+
category: 'Props',
|
45
|
+
type: {
|
46
|
+
summary: sizeOptions
|
47
|
+
.filter(function (size) { return !['x-small', 'x-large'].includes(size); })
|
48
|
+
.join(' | '),
|
49
|
+
},
|
50
|
+
}, options: sizeOptions.filter(function (size) { return !['x-small', 'x-large'].includes(size); }), description: 'toggle 크기' }),
|
51
|
+
scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'toggle scaling' }),
|
52
|
+
color: __assign(__assign({}, commonArgTypes.color), { description: 'toggle color' }),
|
53
|
+
appearance: {
|
54
|
+
table: {
|
55
|
+
category: 'Props',
|
56
|
+
type: {
|
57
|
+
summary: appearanceOptions
|
58
|
+
.filter(function (appearance) { return !['classic', 'solid'].includes(appearance); })
|
59
|
+
.join(' | '),
|
60
|
+
},
|
61
|
+
},
|
62
|
+
control: { type: 'select' },
|
63
|
+
options: appearanceOptions.filter(function (appearance) { return !['classic', 'solid'].includes(appearance); }),
|
64
|
+
defaultValue: { summary: 'surface' },
|
65
|
+
},
|
66
|
+
},
|
67
|
+
};
|
68
|
+
export default meta;
|
69
|
+
export var Default = function (_a) {
|
70
|
+
var args = __rest(_a, []);
|
71
|
+
return (<div className="flex items-center space-x-4">
|
72
|
+
<Toggle {...args} pressed={false} aria-label="Toggle italic">
|
73
|
+
<FontBoldIcon />
|
74
|
+
</Toggle>
|
75
|
+
</div>);
|
76
|
+
};
|
77
|
+
export var Radius = function (_a) {
|
78
|
+
var args = __rest(_a, []);
|
79
|
+
return (<div className="flex items-center space-x-4">
|
80
|
+
{radiusOptions.map(function (radius) { return (<Toggle key={radius} aria-label="Toggle italic" {...args} radius={radius}>
|
81
|
+
<FontBoldIcon />
|
82
|
+
</Toggle>); })}
|
83
|
+
</div>);
|
84
|
+
};
|
85
|
+
export var Size = function (_a) {
|
86
|
+
var args = __rest(_a, []);
|
87
|
+
return (<div className="flex items-center space-x-4">
|
88
|
+
{['small', 'medium', 'large'].map(function (size) { return (<Toggle key={size} aria-label="Toggle italic" {...args} size={size}>
|
89
|
+
<FontBoldIcon />
|
90
|
+
</Toggle>); })}
|
91
|
+
</div>);
|
92
|
+
};
|
93
|
+
export var WithText = function (_a) {
|
94
|
+
var args = __rest(_a, []);
|
95
|
+
return (<ToggleWithText {...args} aria-label="Toggle italic" text={'Bold'}>
|
96
|
+
<FontBoldIcon />
|
97
|
+
</ToggleWithText>);
|
98
|
+
};
|
99
|
+
export var Appearance = function (_a) {
|
100
|
+
var args = __rest(_a, []);
|
101
|
+
return (<div className="flex items-center space-x-4">
|
102
|
+
{['ghost', 'soft', 'surface', 'outline'].map(function (appearance) { return (<Toggle key={appearance} aria-label="Toggle italic" {...args} appearance={appearance}>
|
103
|
+
<FontBoldIcon />
|
104
|
+
</Toggle>); })}
|
105
|
+
</div>);
|
106
|
+
};
|