@lotte-innovate/ui-component-test 0.1.45 → 0.1.46
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 +4 -2
- 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
@@ -1,14 +1,3 @@
|
|
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
1
|
var __rest = (this && this.__rest) || function (s, e) {
|
13
2
|
var t = {};
|
14
3
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
@@ -20,11 +9,10 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
9
|
}
|
21
10
|
return t;
|
22
11
|
};
|
23
|
-
import {
|
24
|
-
import { forwardRef } from 'react';
|
12
|
+
import React, { forwardRef } from 'react';
|
25
13
|
import * as ToastPrimitive from '@radix-ui/react-toast';
|
26
14
|
import { cva } from 'class-variance-authority';
|
27
|
-
import { cn } from '
|
15
|
+
import { cn } from '../../../../../lib/utils/utils';
|
28
16
|
import { useToastContext } from './ToastRoot';
|
29
17
|
export var toastDescriptionVariants = cva('flex m-0 text-wrap text-slate-11 dark:text-slateDark-11', {
|
30
18
|
variants: {
|
@@ -48,6 +36,10 @@ export var toastDescriptionVariants = cva('flex m-0 text-wrap text-slate-11 dark
|
|
48
36
|
export var ToastDescription = forwardRef(function (_a, ref) {
|
49
37
|
var className = _a.className, children = _a.children, contentText = _a.contentText, props = __rest(_a, ["className", "children", "contentText"]);
|
50
38
|
var _b = useToastContext(), size = _b.size, color = _b.color;
|
51
|
-
return (
|
39
|
+
return (<ToastPrimitive.Description ref={ref} {...props}>
|
40
|
+
<p className={cn(toastDescriptionVariants({ size: size, color: color }), className)}>
|
41
|
+
{contentText !== null && contentText !== void 0 ? contentText : children}
|
42
|
+
</p>
|
43
|
+
</ToastPrimitive.Description>);
|
52
44
|
});
|
53
45
|
ToastDescription.displayName = 'Toast.Description';
|
package/dist/{lib/components/Toast/ToastRoot.js → esm/src/lib/components/Toast/ToastRoot.jsx}
RENAMED
@@ -20,11 +20,10 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import {
|
24
|
-
import { forwardRef, createContext, useContext, useMemo, } from 'react';
|
23
|
+
import React, { forwardRef, createContext, useContext, useMemo, } from 'react';
|
25
24
|
import { cva } from 'class-variance-authority';
|
26
|
-
import { cn } from '
|
27
|
-
import { scalingVariants } from '
|
25
|
+
import { cn } from '../../../../../lib/utils/utils';
|
26
|
+
import { scalingVariants } from '../../../../../lib/constants';
|
28
27
|
import * as ToastPrimitive from '@radix-ui/react-toast';
|
29
28
|
export var toastVariants = cva('flex bg-white dark:bg-slateDark-1', {
|
30
29
|
variants: {
|
@@ -84,7 +83,14 @@ export var ToastRoot = forwardRef(function (_a, ref) {
|
|
84
83
|
var contextValue = useMemo(function () { return ({ radius: radius, size: size, scaling: scaling, color: color }); }, [radius, size, scaling, color]);
|
85
84
|
var toastRootStyle = "\n shadow-[hsl(206_22%_7%_/_35%)_0px_10px_38px_-10px,_hsl(206_22%_7%_/_20%)_0px_10px_20px_-15px] \n flex flex-col px-[15px] relative justify-center\n data-[state=open]:animate-slideIn \n data-[state=closed]:animate-hide \n data-[swipe=move]:translate-x-[var(--radix-toast-swipe-move-x)] \n data-[swipe=cancel]:translate-x-0 \n data-[swipe=cancel]:transition-[transform_200ms_ease-out] \n data-[swipe=end]:animate-swipeOut\n ";
|
86
85
|
var toastClassName = cn(toastVariants({ radius: radius, scaling: scaling, size: size, color: color }), toastRootStyle, className);
|
87
|
-
return (
|
86
|
+
return (<ToastContext.Provider value={contextValue}>
|
87
|
+
<ToastPrimitive.Provider swipeDirection="right" duration={duration}>
|
88
|
+
<ToastPrimitive.Root ref={ref} className={toastClassName} open={openToast} onOpenChange={setOpenToast} {...props}>
|
89
|
+
{children}
|
90
|
+
</ToastPrimitive.Root>
|
91
|
+
<ToastPrimitive.Viewport className={cn(toastViewportVariants({ toastPosition: toastPosition }))}/>
|
92
|
+
</ToastPrimitive.Provider>
|
93
|
+
</ToastContext.Provider>);
|
88
94
|
});
|
89
95
|
ToastRoot.displayName = 'Toast.Root';
|
90
96
|
export default ToastRoot;
|
package/dist/{lib/components/Toast/ToastTitle.js → esm/src/lib/components/Toast/ToastTitle.jsx}
RENAMED
@@ -1,14 +1,3 @@
|
|
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
1
|
var __rest = (this && this.__rest) || function (s, e) {
|
13
2
|
var t = {};
|
14
3
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
@@ -20,11 +9,10 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
9
|
}
|
21
10
|
return t;
|
22
11
|
};
|
23
|
-
import {
|
24
|
-
import { forwardRef } from 'react';
|
12
|
+
import React, { forwardRef } from 'react';
|
25
13
|
import * as ToastPrimitive from '@radix-ui/react-toast';
|
26
14
|
import { cva } from 'class-variance-authority';
|
27
|
-
import { cn } from '
|
15
|
+
import { cn } from '../../../../../lib/utils/utils';
|
28
16
|
import { useToastContext } from './ToastRoot';
|
29
17
|
export var toastTitleVariants = cva('flex mb-[5px] text-slate-12 dark:text-slateDark-12 text-wrap break-words font-medium', {
|
30
18
|
variants: {
|
@@ -48,6 +36,8 @@ export var toastTitleVariants = cva('flex mb-[5px] text-slate-12 dark:text-slate
|
|
48
36
|
export var ToastTitle = forwardRef(function (_a, ref) {
|
49
37
|
var className = _a.className, children = _a.children, titleText = _a.titleText, props = __rest(_a, ["className", "children", "titleText"]);
|
50
38
|
var _b = useToastContext(), size = _b.size, color = _b.color;
|
51
|
-
return (
|
39
|
+
return (<ToastPrimitive.Title ref={ref} {...props}>
|
40
|
+
<p className={cn(toastTitleVariants({ size: size, color: color }), className)}>{titleText !== null && titleText !== void 0 ? titleText : children}</p>
|
41
|
+
</ToastPrimitive.Title>);
|
52
42
|
});
|
53
43
|
ToastTitle.displayName = 'Toast.Title';
|
@@ -20,13 +20,12 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import { jsxs as _jsxs } from "react/jsx-runtime";
|
24
23
|
import React, { Children, forwardRef } from 'react';
|
25
24
|
import { cva } from 'class-variance-authority';
|
26
25
|
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
27
|
-
import { radiusVariants, toggleAppearanceStyle } from '
|
28
|
-
import { scalingVariants } from '
|
29
|
-
import { cn } from '
|
26
|
+
import { radiusVariants, toggleAppearanceStyle } from '../../../../../lib/constants';
|
27
|
+
import { scalingVariants } from '../../../../../lib/constants';
|
28
|
+
import { cn } from '../../../../../lib/utils/utils';
|
30
29
|
var toggleWithTextVariants = cva('flex items-center justify-center box-border font-medium', {
|
31
30
|
variants: {
|
32
31
|
radius: __assign({}, radiusVariants['base']),
|
@@ -50,9 +49,12 @@ export var IconScaling = {
|
|
50
49
|
};
|
51
50
|
export var ToggleWithText = forwardRef(function (_a, ref) {
|
52
51
|
var className = _a.className, children = _a.children, radius = _a.radius, _b = _a.size, size = _b === void 0 ? 'medium' : _b, scaling = _a.scaling, _c = _a.color, color = _c === void 0 ? 'red' : _c, _d = _a.appearance, appearance = _d === void 0 ? 'surface' : _d, text = _a.text, props = __rest(_a, ["className", "children", "radius", "size", "scaling", "color", "appearance", "text"]);
|
53
|
-
return (
|
54
|
-
|
55
|
-
|
52
|
+
return (<TogglePrimitive.Root ref={ref} className={cn(toggleWithTextVariants({ radius: radius, size: size, scaling: scaling }), toggleAppearanceStyle(appearance, color, true, 'data-[state=on]:'), className)} {...props}>
|
53
|
+
{Children.map(children, function (child) {
|
54
|
+
return React.cloneElement(child, { className: IconScaling[size] });
|
55
|
+
})}
|
56
|
+
{text}
|
57
|
+
</TogglePrimitive.Root>);
|
56
58
|
});
|
57
59
|
ToggleWithText.displayName = 'ToggleWithText';
|
58
60
|
export default ToggleWithText;
|
@@ -20,12 +20,11 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
24
23
|
import React, { Children, forwardRef } from 'react';
|
25
24
|
import { cva } from 'class-variance-authority';
|
26
25
|
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
27
|
-
import { radiusVariants, scalingVariants, toggleAppearanceStyle } from '
|
28
|
-
import { cn } from '
|
26
|
+
import { radiusVariants, scalingVariants, toggleAppearanceStyle } from '../../../../../lib/constants';
|
27
|
+
import { cn } from '../../../../../lib/utils/utils';
|
29
28
|
export * from './ToggleWithText';
|
30
29
|
var toggleVariants = cva('grid place-content-center items-center justify-center box-border"', {
|
31
30
|
variants: {
|
@@ -50,9 +49,11 @@ export var IconScaling = {
|
|
50
49
|
};
|
51
50
|
export var Toggle = forwardRef(function (_a, ref) {
|
52
51
|
var className = _a.className, children = _a.children, radius = _a.radius, _b = _a.size, size = _b === void 0 ? 'medium' : _b, scaling = _a.scaling, _c = _a.color, color = _c === void 0 ? 'red' : _c, _d = _a.appearance, appearance = _d === void 0 ? 'surface' : _d, props = __rest(_a, ["className", "children", "radius", "size", "scaling", "color", "appearance"]);
|
53
|
-
return (
|
52
|
+
return (<TogglePrimitive.Root ref={ref} className={cn(toggleVariants({ radius: radius, size: size, scaling: scaling }), toggleAppearanceStyle(appearance, color, true, 'data-[state=on]:'), className)} {...props}>
|
53
|
+
{Children.map(children, function (child) {
|
54
54
|
return React.cloneElement(child, { className: IconScaling[size] });
|
55
|
-
})
|
55
|
+
})}
|
56
|
+
</TogglePrimitive.Root>);
|
56
57
|
});
|
57
58
|
Toggle.displayName = 'Toggle';
|
58
59
|
export default Toggle;
|
@@ -1,14 +1,3 @@
|
|
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
1
|
var __rest = (this && this.__rest) || function (s, e) {
|
13
2
|
var t = {};
|
14
3
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
@@ -20,13 +9,12 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
9
|
}
|
21
10
|
return t;
|
22
11
|
};
|
23
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
24
12
|
import React, { Children, forwardRef, useContext, } from 'react';
|
25
13
|
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
26
14
|
import { cva } from 'class-variance-authority';
|
27
|
-
import { toggleAppearanceStyle } from '
|
15
|
+
import { toggleAppearanceStyle } from '../../../../../lib/constants';
|
28
16
|
import { ToggleGroupContext } from './ToggleGroupRoot';
|
29
|
-
import { cn } from '
|
17
|
+
import { cn } from '../../../../../lib/utils/utils';
|
30
18
|
export var toggleGroupItemVariants = cva('grid place-content-center mr-[-1px] first:rounded-l last:rounded-r', {
|
31
19
|
variants: {
|
32
20
|
size: {
|
@@ -47,8 +35,10 @@ export var IconScaling = {
|
|
47
35
|
export var ToggleGroupItem = forwardRef(function (_a, ref) {
|
48
36
|
var className = _a.className, children = _a.children, value = _a.value, props = __rest(_a, ["className", "children", "value"]);
|
49
37
|
var _b = useContext(ToggleGroupContext), size = _b.size, _c = _b.color, color = _c === void 0 ? 'red' : _c, _d = _b.appearance, appearance = _d === void 0 ? 'surface' : _d;
|
50
|
-
return (
|
38
|
+
return (<ToggleGroupPrimitive.Item ref={ref} value={value} className={cn(toggleGroupItemVariants({ size: size }), toggleAppearanceStyle(appearance, color, true, 'data-[state=on]:'), className)} {...props}>
|
39
|
+
{Children.map(children, function (child) {
|
51
40
|
return React.cloneElement(child, { className: IconScaling[size !== null && size !== void 0 ? size : 'medium'] });
|
52
|
-
})
|
41
|
+
})}
|
42
|
+
</ToggleGroupPrimitive.Item>);
|
53
43
|
});
|
54
44
|
ToggleGroupItem.displayName = 'ToggleGroup.Item';
|
@@ -20,12 +20,11 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import {
|
24
|
-
import { createContext, forwardRef } from 'react';
|
23
|
+
import React, { createContext, forwardRef } from 'react';
|
25
24
|
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
26
25
|
import { cva } from 'class-variance-authority';
|
27
|
-
import { scalingVariants } from '
|
28
|
-
import { cn } from '
|
26
|
+
import { scalingVariants } from '../../../../../lib/constants';
|
27
|
+
import { cn } from '../../../../../lib/utils/utils';
|
29
28
|
var toggleVariants = cva('inline-flex', {
|
30
29
|
variants: {
|
31
30
|
scaling: __assign({}, scalingVariants),
|
@@ -43,6 +42,12 @@ export var ToggleGroupRoot = forwardRef(function (_a, ref) {
|
|
43
42
|
var className = _a.className, children = _a.children, scaling = _a.scaling, size = _a.size, color = _a.color, appearance = _a.appearance, props = __rest(_a, ["className", "children", "scaling", "size", "color", "appearance"]);
|
44
43
|
var type = __assign({}, props).type;
|
45
44
|
var contextValue = { size: size, color: color, appearance: appearance };
|
46
|
-
return (
|
45
|
+
return (<ToggleGroupContext.Provider value={contextValue}>
|
46
|
+
{type === 'single' ? (<ToggleGroupPrimitive.Root className={cn(toggleVariants({ scaling: scaling }), className)} {...props} ref={ref}>
|
47
|
+
{children}
|
48
|
+
</ToggleGroupPrimitive.Root>) : (<ToggleGroupPrimitive.Root className={cn(toggleVariants({ scaling: scaling }), className)} {...props} ref={ref}>
|
49
|
+
{children}
|
50
|
+
</ToggleGroupPrimitive.Root>)}
|
51
|
+
</ToggleGroupContext.Provider>);
|
47
52
|
});
|
48
53
|
ToggleGroupRoot.displayName = 'ToggleGroup.Root';
|
package/dist/{lib/components/ToggleSwitch/index.js → esm/src/lib/components/ToggleSwitch/index.jsx}
RENAMED
@@ -20,13 +20,12 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
24
23
|
import React from 'react';
|
25
24
|
import { cva } from 'class-variance-authority';
|
26
|
-
import { cn } from '
|
27
|
-
import { radiusVariants, scalingVariants } from '
|
25
|
+
import { cn } from '../../../../../lib/utils/utils';
|
26
|
+
import { radiusVariants, scalingVariants } from '../../../../../lib/constants';
|
28
27
|
import { Switch as SwitchTheme, Theme } from '@radix-ui/themes';
|
29
|
-
import { Text } from '
|
28
|
+
import { Text } from '../../../../../lib/Typography/Text';
|
30
29
|
var toggleSwitchVariants = cva('', {
|
31
30
|
variants: {
|
32
31
|
scaling: __assign({}, scalingVariants),
|
@@ -65,7 +64,12 @@ export var ToggleSwitch = React.forwardRef(function (_a, forwardedRef) {
|
|
65
64
|
sizeTheme = '1';
|
66
65
|
if (size === 'large')
|
67
66
|
sizeTheme = '3';
|
68
|
-
return (
|
67
|
+
return (<Theme className="flex" accentColor={color} hasBackground={false}>
|
68
|
+
<Text as="label" className={cn('flex items-center', SwitchLabelVariants({ size: size, scaling: scaling }))}>
|
69
|
+
<SwitchTheme ref={forwardedRef} {...switchProps} variant={appearance} radius={radius} size={sizeTheme} color={color} className={cn(toggleSwitchVariants({ scaling: scaling, radius: radius, size: size }), className)} aria-label="Switch"></SwitchTheme>
|
70
|
+
{children}
|
71
|
+
</Text>
|
72
|
+
</Theme>);
|
69
73
|
});
|
70
74
|
ToggleSwitch.displayName = 'ToggleSwitch';
|
71
75
|
export default ToggleSwitch;
|
@@ -20,13 +20,12 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
24
23
|
// your-tooltip.jsx
|
25
24
|
import React from 'react';
|
26
25
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
27
26
|
import { cva } from 'class-variance-authority';
|
28
|
-
import { cn } from '
|
29
|
-
import { primaryColorStyle, radiusVariants, weightVariants } from '
|
27
|
+
import { cn } from '../../../../../lib/utils/utils';
|
28
|
+
import { primaryColorStyle, radiusVariants, weightVariants } from '../../../../../lib/constants';
|
30
29
|
var tooltipVariants = cva('bg-slate-12 text-slate-1 dark:bg-slateDark-12 dark:text-slateDark-1 data-[state=delayed-open]:data-[side=top]:animate-slideDownAndFade data-[state=delayed-open]:data-[side=right]:animate-slideLeftAndFade data-[state=delayed-open]:data-[side=left]:animate-slideRightAndFade data-[state=delayed-open]:data-[side=bottom]:animate-slideUpAndFade select-none rounded-[4px] px-[9px] py-[6px] text-[12px] leading-none shadow-[hsl(206_22%_7%_/_35%)_0px_10px_38px_-10px,_hsl(206_22%_7%_/_20%)_0px_10px_20px_-15px] will-change-[transform,opacity]', {
|
31
30
|
variants: {
|
32
31
|
weight: __assign({}, weightVariants),
|
@@ -43,7 +42,17 @@ var Tooltip = React.forwardRef(function (_a, ref) {
|
|
43
42
|
var arrowColor = color
|
44
43
|
? "fill-".concat(color, "-9 dark:fill-").concat(color, "Dark-9")
|
45
44
|
: 'fill-slate-12 dark:fill-slateDark-12';
|
46
|
-
return (
|
45
|
+
return (<TooltipPrimitive.Provider>
|
46
|
+
<TooltipPrimitive.Root open={open} defaultOpen={defaultOpen} onOpenChange={onOpenChange}>
|
47
|
+
<TooltipPrimitive.Trigger className="cursor-pointer text-slate-12 dark:text-slateDark-12" asChild>
|
48
|
+
{children}
|
49
|
+
</TooltipPrimitive.Trigger>
|
50
|
+
<TooltipPrimitive.Content align="center" {...props} side={side} className={cn('mr-2', tooltipVariants({ weight: weight, radius: radius, color: color }), className)} sideOffset={5}>
|
51
|
+
{content}
|
52
|
+
<TooltipPrimitive.Arrow width={11} height={5} className={arrowColor}/>
|
53
|
+
</TooltipPrimitive.Content>
|
54
|
+
</TooltipPrimitive.Root>
|
55
|
+
</TooltipPrimitive.Provider>);
|
47
56
|
});
|
48
57
|
Tooltip.displayName = 'Tooltip';
|
49
58
|
export default Tooltip;
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { ColorStyle, DarkColorStyle, colorOptions, chartColorOptions } from '
|
2
|
-
import * as lightColors from '
|
1
|
+
import { ColorStyle, DarkColorStyle, colorOptions, chartColorOptions } from '../../../lib/color/constants';
|
2
|
+
import * as lightColors from '../../../lib/color/light';
|
3
3
|
export var radiusOptions = ['none', 'small', 'medium', 'large', 'full'];
|
4
4
|
export var typoSizeOptions = ['1', '2', '3', '4', '5', '6', '7', '8', '9'];
|
5
5
|
export var scalingOptions = ['90%', '95%', '100%', '105%', '110%'];
|
@@ -0,0 +1,118 @@
|
|
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 { ToggleSwitch } from '../../../../lib/components/ToggleSwitch/index';
|
24
|
+
import { commonArgTypes, radiusOptions, scalingOptions } from '../../../../lib/constants';
|
25
|
+
var meta = {
|
26
|
+
title: 'Component/ToggleSwitch',
|
27
|
+
component: ToggleSwitch,
|
28
|
+
parameters: {
|
29
|
+
layout: 'centered',
|
30
|
+
themes: {
|
31
|
+
themeOverride: 'dark',
|
32
|
+
},
|
33
|
+
docs: {
|
34
|
+
description: {
|
35
|
+
component: '선택 상태와 선택 해제 상태를 전환하여 컨트롤하는 요소',
|
36
|
+
},
|
37
|
+
},
|
38
|
+
},
|
39
|
+
argTypes: {
|
40
|
+
radius: __assign(__assign({}, commonArgTypes.radius), { description: 'ToggleSwitch 의 둥굴기' }),
|
41
|
+
size: {
|
42
|
+
table: {
|
43
|
+
category: 'Props',
|
44
|
+
type: { summary: ['small', 'medium', 'large'].join(' | ') },
|
45
|
+
},
|
46
|
+
control: { type: 'select' },
|
47
|
+
options: ['small', 'medium', 'large'],
|
48
|
+
defaultValue: { summary: 'medium' },
|
49
|
+
description: 'ToggleSwitch 의 크기',
|
50
|
+
},
|
51
|
+
scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'ToggleSwitch 비율' }),
|
52
|
+
color: __assign(__assign({}, commonArgTypes.color), { description: 'ToggleSwitch' }),
|
53
|
+
appearance: {
|
54
|
+
table: {
|
55
|
+
category: 'Props',
|
56
|
+
type: { summary: ['classic', 'soft', 'surface'].join(' | ') },
|
57
|
+
},
|
58
|
+
control: { type: 'select' },
|
59
|
+
defaultValue: { summary: 'surface' },
|
60
|
+
description: 'ToggleSwitch 스타일',
|
61
|
+
options: ['classic', 'soft', 'surface'],
|
62
|
+
},
|
63
|
+
disabled: {
|
64
|
+
description: 'ToggleSwitch disabled 기본 속성',
|
65
|
+
defaultValue: { summary: 'false' },
|
66
|
+
table: {
|
67
|
+
category: 'Props',
|
68
|
+
type: { summary: 'boolean' },
|
69
|
+
},
|
70
|
+
control: { type: 'boolean' },
|
71
|
+
},
|
72
|
+
label: {
|
73
|
+
table: {
|
74
|
+
category: 'Props',
|
75
|
+
type: { summary: '' },
|
76
|
+
},
|
77
|
+
control: { type: 'text' },
|
78
|
+
defaultValue: { summary: '' },
|
79
|
+
description: 'ToggleSwitch Label',
|
80
|
+
},
|
81
|
+
},
|
82
|
+
};
|
83
|
+
export default meta;
|
84
|
+
export var Default = {
|
85
|
+
args: {
|
86
|
+
scaling: '100%',
|
87
|
+
disabled: false,
|
88
|
+
children: '토글 스위치',
|
89
|
+
},
|
90
|
+
};
|
91
|
+
export var Size = function (_a) {
|
92
|
+
var args = __rest(_a, []);
|
93
|
+
return (<div className="flex items-center gap-3">
|
94
|
+
<ToggleSwitch {...args} size={'small'}></ToggleSwitch>
|
95
|
+
<ToggleSwitch {...args} size={'medium'}></ToggleSwitch>
|
96
|
+
<ToggleSwitch {...args} size={'large'}></ToggleSwitch>
|
97
|
+
</div>);
|
98
|
+
};
|
99
|
+
export var Scaling = function (_a) {
|
100
|
+
var args = __rest(_a, []);
|
101
|
+
return (<div className="flex items-center gap-3">
|
102
|
+
{scalingOptions.map(function (scaling) { return (<ToggleSwitch key={scaling} {...args} scaling={scaling}></ToggleSwitch>); })}
|
103
|
+
</div>);
|
104
|
+
};
|
105
|
+
export var Radius = function (_a) {
|
106
|
+
var args = __rest(_a, []);
|
107
|
+
return (<div className="flex items-center gap-3">
|
108
|
+
{radiusOptions.map(function (radius) { return (<div key={radius}>
|
109
|
+
<ToggleSwitch key={radius} radius={radius} {...args}/>
|
110
|
+
</div>); })}
|
111
|
+
</div>);
|
112
|
+
};
|
113
|
+
export var Appearance = function (_a) {
|
114
|
+
var args = __rest(_a, []);
|
115
|
+
return (<div className="flex items-center gap-3">
|
116
|
+
{['classic', 'soft', 'surface'].map(function (appearance) { return (<ToggleSwitch key={appearance} {...args} appearance={appearance}></ToggleSwitch>); })}
|
117
|
+
</div>);
|
118
|
+
};
|
@@ -0,0 +1,68 @@
|
|
1
|
+
import React, { useEffect, useState } from 'react';
|
2
|
+
import LandingLight from './assets/landing.svg';
|
3
|
+
import LandingDark from './assets/landing_dark.svg';
|
4
|
+
import Figma from './assets/figma.svg';
|
5
|
+
import Gitlab from './assets/gitlab.svg';
|
6
|
+
import Image from 'next/image';
|
7
|
+
import Button from '../../../lib/components/Button';
|
8
|
+
import Header from '../../../lib/Typography/Header';
|
9
|
+
var addParentClass = function (theme) {
|
10
|
+
var elements = document.querySelectorAll('.welcome-wrap');
|
11
|
+
elements.forEach(function (element) {
|
12
|
+
var parent = element.parentElement.parentElement;
|
13
|
+
if (parent) {
|
14
|
+
parent.classList.add('welcome-wrap-layout');
|
15
|
+
if (theme === 'dark') {
|
16
|
+
document.body.classList.add('dark');
|
17
|
+
parent.classList.remove('light');
|
18
|
+
parent.classList.add('dark');
|
19
|
+
}
|
20
|
+
else {
|
21
|
+
document.body.classList.remove('dark');
|
22
|
+
parent.classList.remove('dark');
|
23
|
+
parent.classList.add('light');
|
24
|
+
}
|
25
|
+
}
|
26
|
+
});
|
27
|
+
};
|
28
|
+
var Welcome = function () {
|
29
|
+
var themeValue = localStorage.getItem('sb-addon-themes-3');
|
30
|
+
var _a = useState(JSON.parse(themeValue).current), theme = _a[0], setTheme = _a[1];
|
31
|
+
window.addEventListener('storage', function (event) {
|
32
|
+
themeValue = localStorage.getItem('sb-addon-themes-3');
|
33
|
+
if (!themeValue)
|
34
|
+
return;
|
35
|
+
if (event.key === 'sb-addon-themes-3') {
|
36
|
+
setTheme(JSON.parse(themeValue).current);
|
37
|
+
}
|
38
|
+
});
|
39
|
+
useEffect(function () {
|
40
|
+
addParentClass(theme);
|
41
|
+
}, [theme]);
|
42
|
+
var navigateToGitlab = function () {
|
43
|
+
window.open('http://s-gitlab.ldcc.co.kr/l-ui/ui-component', '_blank');
|
44
|
+
};
|
45
|
+
var navigateToFigma = function () {
|
46
|
+
window.open('https://www.figma.com/design/tlcB7UYdvUNzPk5T66FqLf/UI-%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC-%EA%B3%B5%EC%9C%A0%EC%9A%A9?node-id=0-1&t=k7fMSU17MKc42lzy-0', '_blank');
|
47
|
+
};
|
48
|
+
return (<div className="welcome-wrap">
|
49
|
+
<div>
|
50
|
+
<div>
|
51
|
+
<p className="!text-[30px] dark:text-slateDark-12">Style Guide UI Kit</p>
|
52
|
+
<Header className="welcome-title">LOTTE UI Library</Header>
|
53
|
+
</div>
|
54
|
+
<div className="flex gap-2 pt-[40px]">
|
55
|
+
<Button color="slate" radius="medium" scaling="100%" weight="medium" size={'x-large'} appearance={'outline'} onClick={navigateToGitlab} className="relative z-10">
|
56
|
+
<Image src={Gitlab} width={0} height={0} alt="Gitlab" className="mr-2"/>
|
57
|
+
GitLab
|
58
|
+
</Button>
|
59
|
+
<Button color="slate" radius="medium" scaling="100%" weight="medium" size={'x-large'} appearance={'outline'} onClick={navigateToFigma} className="relative z-10">
|
60
|
+
<Image src={Figma} width={0} height={0} alt="Figma" className="mr-2"/>
|
61
|
+
Figma
|
62
|
+
</Button>
|
63
|
+
</div>
|
64
|
+
</div>
|
65
|
+
{theme === 'dark' ? (<Image className="absolute bottom-0 w-full" src={LandingDark} width={0} height={0} alt="컴포넌트 이미지입니다."/>) : (<Image className="absolute bottom-0 w-auto" src={LandingLight} width={0} height={0} alt="컴포넌트 이미지입니다."/>)}
|
66
|
+
</div>);
|
67
|
+
};
|
68
|
+
export default Welcome;
|
@@ -0,0 +1,81 @@
|
|
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 Accordion from '../../../../lib/components/Accordion/index';
|
24
|
+
import { commonArgTypes } from '../../../../lib/constants';
|
25
|
+
var meta = {
|
26
|
+
title: 'Component/Accordion',
|
27
|
+
component: Accordion.Root,
|
28
|
+
parameters: {
|
29
|
+
layout: 'centered',
|
30
|
+
themes: {
|
31
|
+
themeOverride: 'dark',
|
32
|
+
},
|
33
|
+
docs: {
|
34
|
+
description: {
|
35
|
+
component: '제한된 공간에 많은 정보를 구성할 수 있는 요소로 접힘, 펼침을 통해 정보를 보이거나 숨기는 기능',
|
36
|
+
},
|
37
|
+
},
|
38
|
+
},
|
39
|
+
tags: ['autodocs'],
|
40
|
+
argTypes: {
|
41
|
+
color: __assign(__assign({}, commonArgTypes.color), { description: 'Accordion 색상' }),
|
42
|
+
scaling: __assign(__assign({}, commonArgTypes.scaling), { description: 'Accordion 크기' }),
|
43
|
+
type: {
|
44
|
+
description: 'Accordion 항목을 하나 또는 여러개 열 수 있는지 설정',
|
45
|
+
defaultValue: { summary: 'single' },
|
46
|
+
table: {
|
47
|
+
category: 'Props',
|
48
|
+
type: { summary: ['single', 'multiple'].join(' | ') },
|
49
|
+
},
|
50
|
+
options: ['single', 'multiple'],
|
51
|
+
control: { type: 'select' },
|
52
|
+
},
|
53
|
+
},
|
54
|
+
};
|
55
|
+
export default meta;
|
56
|
+
export var Default = function (_a) {
|
57
|
+
var _b;
|
58
|
+
var args = __rest(_a, []);
|
59
|
+
return (<Accordion.Root defaultValue="item-1" type={(_b = args.type) !== null && _b !== void 0 ? _b : 'single'} {...args}>
|
60
|
+
<Accordion.Item value="item-1">
|
61
|
+
<Accordion.Trigger {...args}>리액트는 무엇인가요?</Accordion.Trigger>
|
62
|
+
<Accordion.Content>
|
63
|
+
리액트는 자바스크립트 라이브러리의 하나로서 사용자 인터페이스를 만들기 위해 사용된다.
|
64
|
+
</Accordion.Content>
|
65
|
+
</Accordion.Item>
|
66
|
+
|
67
|
+
<Accordion.Item value="item-2">
|
68
|
+
<Accordion.Trigger {...args}>자바스크립트란 무엇인가요?</Accordion.Trigger>
|
69
|
+
<Accordion.Content>
|
70
|
+
자바스크립트는 객체 기반의 스크립트 프로그래밍 언어이다.
|
71
|
+
</Accordion.Content>
|
72
|
+
</Accordion.Item>
|
73
|
+
|
74
|
+
<Accordion.Item value="item-3" disabled={true}>
|
75
|
+
<Accordion.Trigger {...args}>Can it be animated?</Accordion.Trigger>
|
76
|
+
<Accordion.Content>
|
77
|
+
Yes! You can animate the Accordion with CSS or JavaScript.
|
78
|
+
</Accordion.Content>
|
79
|
+
</Accordion.Item>
|
80
|
+
</Accordion.Root>);
|
81
|
+
};
|