@lotte-innovate/ui-component-test 0.1.44 → 0.1.46
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +133 -133
- 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 → esm/src/lib}/color/constants.js +2 -0
- package/dist/{lib → esm/src/lib}/color/light.js +1 -0
- 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} +9 -6
- 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} +7 -6
- 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} +6 -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} +14 -4
- package/dist/{lib → esm/src/lib}/components/index.js +2 -0
- package/dist/{lib → esm/src/lib}/constants.js +18 -11
- package/dist/{lib → esm/src/lib}/utils/useDarkMode.js +1 -1
- package/dist/{lib → esm/src/lib}/utils/utils.js +1 -0
- 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/dist/globals.css +4 -4
- package/dist/tailwind.config.js +10 -2
- package/package.json +141 -131
- 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 -37
- package/dist/lib/components/BubbleChart/index.d.ts +0 -28
- 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 -22
- 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 -43
- 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 -22
- 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 -32
- 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/dark.js +0 -0
- /package/dist/{lib → esm/src/lib}/color/krdsColors.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}/index.js +0 -0
- /package/dist/{lib → esm/src/lib}/types.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,12 +9,11 @@ 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 MenubarPrimitive from '@radix-ui/react-menubar';
|
26
14
|
import { ChevronRightIcon } from '@radix-ui/react-icons';
|
27
|
-
import { cn } from '
|
28
|
-
import { blackText, menuItemAppearanceStyle } from '
|
15
|
+
import { cn } from '../../../../../lib/utils/utils';
|
16
|
+
import { blackText, menuItemAppearanceStyle } from '../../../../../lib/constants';
|
29
17
|
import { menubarItemVariants } from './MenubarItem';
|
30
18
|
import { useMenubarContext } from './MenubarRoot';
|
31
19
|
export var MenubarSubTrigger = forwardRef(function (_a, ref) {
|
@@ -36,6 +24,11 @@ export var MenubarSubTrigger = forwardRef(function (_a, ref) {
|
|
36
24
|
if (itemAppearance === 'solid' && !blackText.includes(color)) {
|
37
25
|
iconClassName = 'group-hover:text-white dark:group-hover:text-slateDark-1';
|
38
26
|
}
|
39
|
-
return (
|
27
|
+
return (<MenubarPrimitive.SubTrigger ref={ref} className={triggerClassName} {...props}>
|
28
|
+
{children}
|
29
|
+
<div className={iconClassName}>
|
30
|
+
<ChevronRightIcon />
|
31
|
+
</div>
|
32
|
+
</MenubarPrimitive.SubTrigger>);
|
40
33
|
});
|
41
34
|
MenubarSubTrigger.displayName = 'Menubar.SubTrigger';
|
@@ -20,14 +20,13 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import {
|
24
|
-
import { forwardRef } from 'react';
|
23
|
+
import React, { forwardRef } from 'react';
|
25
24
|
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
26
25
|
import { cva } from 'class-variance-authority';
|
27
|
-
import { cn } from '
|
28
|
-
import { appearanceStyle, scalingVariants } from '
|
26
|
+
import { cn } from '../../../../../lib/utils/utils';
|
27
|
+
import { appearanceStyle, scalingVariants } from '../../../../../lib/constants';
|
29
28
|
import { useMenubarContext } from './MenubarRoot';
|
30
|
-
export var menubarTriggerVariants = cva("flex items-center justify-between gap-[2px] outline-none select-none leading-none py-1 px-3
|
29
|
+
export var menubarTriggerVariants = cva("flex items-center justify-between gap-[2px] outline-none select-none leading-none py-1 px-3 font-medium", {
|
31
30
|
variants: {
|
32
31
|
size: {
|
33
32
|
small: 'text-xs',
|
@@ -52,6 +51,8 @@ export var MenubarTrigger = forwardRef(function (_a, ref) {
|
|
52
51
|
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
53
52
|
var _b = useMenubarContext(), scaling = _b.scaling, size = _b.size, radius = _b.radius, _c = _b.color, color = _c === void 0 ? 'red' : _c, _d = _b.appearance, appearance = _d === void 0 ? 'ghost' : _d;
|
54
53
|
var triggerClassName = cn(menubarTriggerVariants({ scaling: scaling, size: size, radius: radius }), appearanceStyle(appearance, color), className);
|
55
|
-
return (
|
54
|
+
return (<MenubarPrimitive.Trigger ref={ref} className={triggerClassName} {...props}>
|
55
|
+
{children}
|
56
|
+
</MenubarPrimitive.Trigger>);
|
56
57
|
});
|
57
58
|
MenubarTrigger.displayName = 'Menubar.Trigger';
|
@@ -20,12 +20,11 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import {
|
24
|
-
import { forwardRef } from 'react';
|
23
|
+
import React, { forwardRef } from 'react';
|
25
24
|
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
26
|
-
import { cn } from '
|
25
|
+
import { cn } from '../../../../../lib/utils/utils';
|
27
26
|
import { cva } from 'class-variance-authority';
|
28
|
-
import { radiusVariants } from '
|
27
|
+
import { radiusVariants } from '../../../../../lib/constants';
|
29
28
|
import { useNavigationMenuContext } from './NavigationMenuRoot';
|
30
29
|
export var navigationMenuContentVariants = cva("text-slate-12 dark:text-slateDark-12 bg-white dark:bg-slateDark-1 p-2 cursor-pointer", {
|
31
30
|
variants: {
|
@@ -43,6 +42,8 @@ export var navigationMenuContentVariants = cva("text-slate-12 dark:text-slateDar
|
|
43
42
|
export var NavigationMenuContent = forwardRef(function (_a, ref) {
|
44
43
|
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
45
44
|
var _b = useNavigationMenuContext(), radius = _b.radius, size = _b.size;
|
46
|
-
return (
|
45
|
+
return (<NavigationMenuPrimitive.Content ref={ref} className={cn("data-[motion=from-start]:animate-enterFromLeft data-[motion=from-end]:animate-enterFromRight data-[motion=to-start]:animate-exitToLeft data-[motion=to-end]:animate-exitToRight absolute left-0 top-0 w-full sm:w-auto", navigationMenuContentVariants({ radius: radius, size: size }), className)} {...props}>
|
46
|
+
{children}
|
47
|
+
</NavigationMenuPrimitive.Content>);
|
47
48
|
});
|
48
49
|
NavigationMenuContent.displayName = 'NavigationMenu.Content';
|
@@ -0,0 +1,22 @@
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
2
|
+
var t = {};
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
4
|
+
t[p] = s[p];
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
8
|
+
t[p[i]] = s[p[i]];
|
9
|
+
}
|
10
|
+
return t;
|
11
|
+
};
|
12
|
+
import React, { forwardRef } from 'react';
|
13
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
14
|
+
import { cn } from '../../../../../lib/utils/utils';
|
15
|
+
export var NavigationMenuIndicator = forwardRef(function (_a, ref) {
|
16
|
+
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
17
|
+
return (<NavigationMenuPrimitive.Indicator ref={ref} className={"data-[state=visible]:animate-fadeIn data-[state=hidden]:animate-fadeOut top-full z-[1] flex h-[10px] items-end justify-center overflow-hidden transition-[width,transform_250ms_ease]"} {...props}>
|
18
|
+
<div className={cn("relative top-[70%] h-[10px] w-[10px] rotate-[45deg] rounded-tl-[2px] bg-white shadow shadow-slate-4 dark:bg-slateDark-2 dark:shadow-slateDark-4", className)}/>
|
19
|
+
{children}
|
20
|
+
</NavigationMenuPrimitive.Indicator>);
|
21
|
+
});
|
22
|
+
NavigationMenuIndicator.displayName = 'NavigationMenu.Indicator';
|
@@ -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,12 @@ 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 NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
26
14
|
export var NavigationMenuItem = forwardRef(function (_a, ref) {
|
27
15
|
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
28
|
-
return (
|
16
|
+
return (<NavigationMenuPrimitive.Item ref={ref} className={className} {...props}>
|
17
|
+
{children}
|
18
|
+
</NavigationMenuPrimitive.Item>);
|
29
19
|
});
|
30
20
|
NavigationMenuItem.displayName = 'NavigationMenu.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 { forwardRef } from 'react';
|
23
|
+
import React, { forwardRef } from 'react';
|
25
24
|
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
26
|
-
import { cn } from '
|
25
|
+
import { cn } from '../../../../../lib/utils/utils';
|
27
26
|
import { cva } from 'class-variance-authority';
|
28
|
-
import { appearanceStyle, radiusVariants, scalingVariants } from '
|
27
|
+
import { appearanceStyle, radiusVariants, scalingVariants } from '../../../../../lib/constants';
|
29
28
|
import { useNavigationMenuContext } from './NavigationMenuRoot';
|
30
29
|
export var navigationMenuLinkVariants = cva("block select-none leading-none outline-none py-1 px-3 cursor-alias hover:underline font-medium", {
|
31
30
|
variants: {
|
@@ -46,6 +45,8 @@ export var NavigationMenuLink = forwardRef(function (_a, ref) {
|
|
46
45
|
var children = _a.children, className = _a.className, href = _a.href, props = __rest(_a, ["children", "className", "href"]);
|
47
46
|
var _b = useNavigationMenuContext(), scaling = _b.scaling, size = _b.size, radius = _b.radius, _c = _b.color, color = _c === void 0 ? 'red' : _c, _d = _b.appearance, appearance = _d === void 0 ? 'ghost' : _d;
|
48
47
|
var linkClassName = cn(navigationMenuLinkVariants({ scaling: scaling, size: size, radius: radius }), appearanceStyle(appearance, color), className);
|
49
|
-
return (
|
48
|
+
return (<NavigationMenuPrimitive.Link ref={ref} href={href} title={href} className={linkClassName} {...props}>
|
49
|
+
{children}
|
50
|
+
</NavigationMenuPrimitive.Link>);
|
50
51
|
});
|
51
52
|
NavigationMenuLink.displayName = 'NavigationMenu.Link';
|
@@ -20,12 +20,11 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import
|
24
|
-
import { forwardRef } from 'react';
|
23
|
+
import React, { forwardRef } from 'react';
|
25
24
|
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
26
|
-
import { cn } from '
|
25
|
+
import { cn } from '../../../../../lib/utils/utils';
|
27
26
|
import { cva } from 'class-variance-authority';
|
28
|
-
import { appearanceStyle, radiusVariants, scalingVariants } from '
|
27
|
+
import { appearanceStyle, radiusVariants, scalingVariants } from '../../../../../lib/constants';
|
29
28
|
import { NavigationMenuIndicator } from './NavigationMenuIndicator';
|
30
29
|
import { useNavigationMenuContext } from './NavigationMenuRoot';
|
31
30
|
export var navigationMenuListVariants = cva('flex p-1 space-x-1 shadow-slate-4 shadow dark:shadow-slateDark-4 bg-white dark:bg-slateDark-1', {
|
@@ -42,6 +41,9 @@ export var NavigationMenuList = forwardRef(function (_a, ref) {
|
|
42
41
|
var children = _a.children, className = _a.className, _b = _a.isShowIndicator, isShowIndicator = _b === void 0 ? true : _b, props = __rest(_a, ["children", "className", "isShowIndicator"]);
|
43
42
|
var _c = useNavigationMenuContext(), scaling = _c.scaling, radius = _c.radius, _d = _c.appearance, appearance = _d === void 0 ? 'ghost' : _d, _e = _c.color, color = _e === void 0 ? 'red' : _e;
|
44
43
|
var navigationMenuListClassName = cn(navigationMenuListVariants({ scaling: scaling, radius: radius }), appearanceStyle(appearance, color, false), 'border-none', appearance === 'ghost' && 'bg-white', className);
|
45
|
-
return (
|
44
|
+
return (<NavigationMenuPrimitive.List ref={ref} className={navigationMenuListClassName} {...props}>
|
45
|
+
{children}
|
46
|
+
{isShowIndicator && <NavigationMenuIndicator />}
|
47
|
+
</NavigationMenuPrimitive.List>);
|
46
48
|
});
|
47
49
|
NavigationMenuList.displayName = 'NavigationMenu.List';
|
@@ -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,10 +9,9 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
9
|
}
|
21
10
|
return t;
|
22
11
|
};
|
23
|
-
import {
|
24
|
-
import { forwardRef, createContext, useContext, useMemo, } from 'react';
|
12
|
+
import React, { forwardRef, createContext, useContext, useMemo, } from 'react';
|
25
13
|
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
26
|
-
import { cn } from '
|
14
|
+
import { cn } from '../../../../../lib/utils/utils';
|
27
15
|
var NavigationMenuContext = createContext({
|
28
16
|
radius: 'medium',
|
29
17
|
scaling: '100%',
|
@@ -37,7 +25,11 @@ export var useNavigationMenuContext = function () {
|
|
37
25
|
export var NavigationMenuRoot = forwardRef(function (_a, ref) {
|
38
26
|
var className = _a.className, children = _a.children, radius = _a.radius, size = _a.size, scaling = _a.scaling, color = _a.color, appearance = _a.appearance, props = __rest(_a, ["className", "children", "radius", "size", "scaling", "color", "appearance"]);
|
39
27
|
var contextValue = useMemo(function () { return ({ radius: radius, size: size, scaling: scaling, color: color, appearance: appearance }); }, [radius, size, scaling, color, appearance]);
|
40
|
-
return (
|
28
|
+
return (<NavigationMenuContext.Provider value={contextValue}>
|
29
|
+
<NavigationMenuPrimitive.Root ref={ref} className={cn('relative flex', className)} {...props}>
|
30
|
+
{children}
|
31
|
+
</NavigationMenuPrimitive.Root>
|
32
|
+
</NavigationMenuContext.Provider>);
|
41
33
|
});
|
42
34
|
NavigationMenuRoot.displayName = 'NavigationMenu.Root';
|
43
35
|
export default NavigationMenuRoot;
|
@@ -20,12 +20,11 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import
|
24
|
-
import { forwardRef } from 'react';
|
23
|
+
import React, { forwardRef } from 'react';
|
25
24
|
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
26
|
-
import { cn } from '
|
25
|
+
import { cn } from '../../../../../lib/utils/utils';
|
27
26
|
import { cva } from 'class-variance-authority';
|
28
|
-
import { appearanceStyle, scalingVariants } from '
|
27
|
+
import { appearanceStyle, scalingVariants } from '../../../../../lib/constants';
|
29
28
|
import { CaretDownIcon } from '@radix-ui/react-icons';
|
30
29
|
import { useNavigationMenuContext } from './NavigationMenuRoot';
|
31
30
|
export var navigationMenuTriggerVariants = cva("flex items-center justify-between outline-none select-none leading-none py-1 px-3 font-medium", {
|
@@ -53,6 +52,9 @@ export var NavigationMenuTrigger = forwardRef(function (_a, ref) {
|
|
53
52
|
var children = _a.children, className = _a.className, _b = _a.isShowIcon, isShowIcon = _b === void 0 ? true : _b, props = __rest(_a, ["children", "className", "isShowIcon"]);
|
54
53
|
var _c = useNavigationMenuContext(), scaling = _c.scaling, size = _c.size, radius = _c.radius, _d = _c.color, color = _d === void 0 ? 'red' : _d, _e = _c.appearance, appearance = _e === void 0 ? 'ghost' : _e;
|
55
54
|
var triggerClassName = cn(navigationMenuTriggerVariants({ scaling: scaling, size: size, radius: radius }), appearanceStyle(appearance, color), className);
|
56
|
-
return (
|
55
|
+
return (<NavigationMenuPrimitive.Trigger ref={ref} className={triggerClassName} {...props}>
|
56
|
+
{children}
|
57
|
+
{isShowIcon && (<CaretDownIcon className={cn("relative top-[1px] transition-transform duration-[250] ease-in group-data-[state=open]:-rotate-180")} aria-hidden/>)}
|
58
|
+
</NavigationMenuPrimitive.Trigger>);
|
57
59
|
});
|
58
60
|
NavigationMenuTrigger.displayName = 'NavigationMenu.Trigger';
|
@@ -20,12 +20,11 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import {
|
24
|
-
import { forwardRef } from 'react';
|
23
|
+
import React, { forwardRef } from 'react';
|
25
24
|
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
26
|
-
import { cn } from '
|
25
|
+
import { cn } from '../../../../../lib/utils/utils';
|
27
26
|
import { cva } from 'class-variance-authority';
|
28
|
-
import { radiusVariants, scalingVariants, weightVariants } from '
|
27
|
+
import { radiusVariants, scalingVariants, weightVariants } from '../../../../../lib/constants';
|
29
28
|
import { useNavigationMenuContext } from './NavigationMenuRoot';
|
30
29
|
export var navigationViewportVariants = cva("data-[state=open]:animate-scaleIn data-[state=closed]:animate-scaleOut relative mt-[10px] \n h-[var(--radix-navigation-menu-viewport-height)] w-full origin-[top_center] overflow-hidden \n transition-[width,_height] duration-300 shadow-slate-4 shadow dark:shadow-slateDark-4\n sm:w-[var(--radix-navigation-menu-viewport-width)]", {
|
31
30
|
variants: {
|
@@ -48,6 +47,8 @@ export var NavigationMenuViewport = forwardRef(function (_a, ref) {
|
|
48
47
|
var className = _a.className, props = __rest(_a, ["className"]);
|
49
48
|
var _b = useNavigationMenuContext(), size = _b.size, scaling = _b.scaling, radius = _b.radius;
|
50
49
|
var viewportClassName = cn(navigationViewportVariants({ size: size, scaling: scaling, radius: radius }), className);
|
51
|
-
return (
|
50
|
+
return (<div className="perspective-[2000px] absolute left-0 top-full flex w-full">
|
51
|
+
<NavigationMenuPrimitive.Viewport ref={ref} className={viewportClassName} {...props}/>
|
52
|
+
</div>);
|
52
53
|
});
|
53
54
|
NavigationMenuViewport.displayName = 'NavigationMenu.Viewport';
|
@@ -20,14 +20,14 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import
|
23
|
+
import React from 'react';
|
24
24
|
import { Pie } from 'react-chartjs-2';
|
25
25
|
import { Chart as ChartJS, ArcElement, Tooltip, Legend, plugins } from 'chart.js';
|
26
26
|
import ChartDataLabels from 'chartjs-plugin-datalabels';
|
27
|
-
import { cn } from '
|
27
|
+
import { cn } from '../../../../../lib/utils/utils';
|
28
28
|
import { cva } from 'class-variance-authority';
|
29
|
-
import { scalingVariants } from '
|
30
|
-
import { chartColorList, chartAlphaColorList } from '
|
29
|
+
import { scalingVariants } from '../../../../../lib/constants';
|
30
|
+
import { chartColorList, chartAlphaColorList } from '../../../../../lib/color/constants';
|
31
31
|
ChartJS.register(ArcElement, Tooltip, Legend, plugins, ChartDataLabels);
|
32
32
|
ChartJS.defaults.set('plugins.datalabels', {
|
33
33
|
display: false,
|
@@ -53,13 +53,13 @@ var PieChart = function (_a) {
|
|
53
53
|
datasets.forEach(function (dataset, index) {
|
54
54
|
datasets[index] = __assign(__assign({}, dataset), { backgroundColor: getChartColor(isColorMixed, appearance), borderColor: getChartColor(isColorMixed, 'solid') });
|
55
55
|
});
|
56
|
-
return (
|
56
|
+
return (<Pie data={{ labels: labels, datasets: datasets }} options={{
|
57
57
|
plugins: {
|
58
58
|
title: title,
|
59
59
|
legend: legend,
|
60
60
|
datalabels: datalabels,
|
61
61
|
},
|
62
|
-
}
|
62
|
+
}} className={cn(PieVariants({ scaling: scaling }), className)} {...rest}/>);
|
63
63
|
};
|
64
64
|
PieChart.displayName = 'PieChart';
|
65
65
|
export default PieChart;
|
@@ -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,12 +9,11 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
9
|
}
|
21
10
|
return t;
|
22
11
|
};
|
23
|
-
import {
|
24
|
-
import { forwardRef, useContext } from 'react';
|
12
|
+
import React, { forwardRef, useContext } from 'react';
|
25
13
|
import { cva } from 'class-variance-authority';
|
26
14
|
import { Popover as PopoverTheme } from '@radix-ui/themes';
|
27
15
|
import { PopoverContext } from './PopoverRoot';
|
28
|
-
import { cn } from '
|
16
|
+
import { cn } from '../../../../../lib/utils/utils';
|
29
17
|
export var popoverCloseVariants = cva('', {
|
30
18
|
variants: {
|
31
19
|
radius: {
|
@@ -43,6 +31,8 @@ export var popoverCloseVariants = cva('', {
|
|
43
31
|
export var PopoverClose = forwardRef(function (_a, ref) {
|
44
32
|
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
45
33
|
var radius = useContext(PopoverContext).radius;
|
46
|
-
return (
|
34
|
+
return (<PopoverTheme.Close ref={ref} className={cn(popoverCloseVariants({ radius: radius }), className)} {...props}>
|
35
|
+
{children}
|
36
|
+
</PopoverTheme.Close>);
|
47
37
|
});
|
48
38
|
PopoverClose.displayName = 'Popover.Close';
|
@@ -20,13 +20,12 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import {
|
24
|
-
import {
|
25
|
-
import { scalingVariants } from '../../../lib/constants';
|
23
|
+
import React, { forwardRef, useContext } from 'react';
|
24
|
+
import { scalingVariants } from '../../../../../lib/constants';
|
26
25
|
import { Popover as PopoverTheme } from '@radix-ui/themes';
|
27
26
|
import { cva } from 'class-variance-authority';
|
28
27
|
import { PopoverContext } from './PopoverRoot';
|
29
|
-
import { cn } from '
|
28
|
+
import { cn } from '../../../../../lib/utils/utils';
|
30
29
|
export var popoverContentVariants = cva('flex gap-2 bg-white dark:bg-slateDark-1 border-slateA-6 dark:border-slateDarkA-6', {
|
31
30
|
variants: {
|
32
31
|
radius: {
|
@@ -60,6 +59,8 @@ export var PopoverContent = forwardRef(function (_a, ref) {
|
|
60
59
|
sizeTheme = '3';
|
61
60
|
if (size === 'x-large')
|
62
61
|
sizeTheme = '4';
|
63
|
-
return (
|
62
|
+
return (<PopoverTheme.Content ref={ref} size={sizeTheme} className={cn(popoverContentVariants({ size: size, radius: radius, scaling: scaling }), className)} {...props}>
|
63
|
+
{children}
|
64
|
+
</PopoverTheme.Content>);
|
64
65
|
});
|
65
66
|
PopoverContent.displayName = 'Popover.Content';
|
@@ -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,8 +9,7 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
9
|
}
|
21
10
|
return t;
|
22
11
|
};
|
23
|
-
import {
|
24
|
-
import { createContext } from 'react';
|
12
|
+
import React, { createContext } from 'react';
|
25
13
|
import { Theme, Popover as PopoverTheme } from '@radix-ui/themes';
|
26
14
|
export var PopoverContext = createContext({
|
27
15
|
radius: 'medium',
|
@@ -31,6 +19,10 @@ export var PopoverContext = createContext({
|
|
31
19
|
export var PopoverRoot = function (_a) {
|
32
20
|
var children = _a.children, radius = _a.radius, size = _a.size, scaling = _a.scaling, props = __rest(_a, ["children", "radius", "size", "scaling"]);
|
33
21
|
var contextValue = { radius: radius, size: size, scaling: scaling };
|
34
|
-
return (
|
22
|
+
return (<Theme>
|
23
|
+
<PopoverContext.Provider value={contextValue}>
|
24
|
+
<PopoverTheme.Root {...props}>{children}</PopoverTheme.Root>
|
25
|
+
</PopoverContext.Provider>
|
26
|
+
</Theme>);
|
35
27
|
};
|
36
28
|
PopoverRoot.displayName = 'Popover.Root';
|
@@ -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,12 @@ 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 { Popover as PopoverTheme } from '@radix-ui/themes';
|
26
14
|
export var PopoverTrigger = forwardRef(function (_a, ref) {
|
27
15
|
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
28
|
-
return (
|
16
|
+
return (<PopoverTheme.Trigger ref={ref} {...props} className={className}>
|
17
|
+
{children}
|
18
|
+
</PopoverTheme.Trigger>);
|
29
19
|
});
|
30
20
|
PopoverTrigger.displayName = 'Popover.Trigger';
|
@@ -20,12 +20,11 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import {
|
24
|
-
import { forwardRef } from 'react';
|
23
|
+
import React, { forwardRef } from 'react';
|
25
24
|
import { cva } from 'class-variance-authority';
|
26
|
-
import { scalingVariants } from '
|
25
|
+
import { scalingVariants } from '../../../../../lib/constants';
|
27
26
|
import { Theme, Progress as ProgressTheme } from '@radix-ui/themes';
|
28
|
-
import { cn } from '
|
27
|
+
import { cn } from '../../../../../lib/utils/utils';
|
29
28
|
var progressVariants = cva('w-[300px]', {
|
30
29
|
variants: {
|
31
30
|
radius: {
|
@@ -50,7 +49,9 @@ var progressVariants = cva('w-[300px]', {
|
|
50
49
|
});
|
51
50
|
export var Progress = forwardRef(function (_a, ref) {
|
52
51
|
var className = _a.className, radius = _a.radius, size = _a.size, value = _a.value, _b = _a.appearance, appearance = _b === void 0 ? 'surface' : _b, _c = _a.color, color = _c === void 0 ? 'red' : _c, scaling = _a.scaling, props = __rest(_a, ["className", "radius", "size", "value", "appearance", "color", "scaling"]);
|
53
|
-
return (
|
52
|
+
return (<Theme accentColor={color}>
|
53
|
+
<ProgressTheme ref={ref} value={value} variant={appearance} className={cn(progressVariants({ radius: radius, size: size, scaling: scaling }), className)} {...props}/>
|
54
|
+
</Theme>);
|
54
55
|
});
|
55
56
|
Progress.displayName = 'Progress';
|
56
57
|
export default Progress;
|
package/dist/{lib/components/RadarChart/index.js → esm/src/lib/components/RadarChart/index.jsx}
RENAMED
@@ -20,14 +20,14 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import
|
23
|
+
import React from 'react';
|
24
24
|
import { cva } from 'class-variance-authority';
|
25
|
-
import { scalingVariants } from '
|
25
|
+
import { scalingVariants } from '../../../../../lib/constants';
|
26
26
|
import { Radar } from 'react-chartjs-2';
|
27
|
-
import { cn } from '
|
27
|
+
import { cn } from '../../../../../lib/utils/utils';
|
28
28
|
import { Chart as ChartJS, RadialLinearScale, PointElement, LineElement, Filler, Tooltip, Legend, plugins, } from 'chart.js/auto';
|
29
|
-
import { chartColorList, chartAlphaColorList } from '
|
30
|
-
import { useDarkMode } from '
|
29
|
+
import { chartColorList, chartAlphaColorList } from '../../../../../lib/color/constants';
|
30
|
+
import { useDarkMode } from '../../../../../lib/utils/useDarkMode';
|
31
31
|
import ChartDataLabels from 'chartjs-plugin-datalabels';
|
32
32
|
ChartJS.register(RadialLinearScale, PointElement, LineElement, Filler, Tooltip, Legend, plugins, ChartDataLabels);
|
33
33
|
ChartJS.defaults.set('plugins.datalabels', {
|
@@ -60,7 +60,7 @@ export var RadarChart = function (_a) {
|
|
60
60
|
dataset.backgroundColor = ChartColor[index];
|
61
61
|
dataset.borderColor = BorderColor[index];
|
62
62
|
});
|
63
|
-
return (
|
63
|
+
return (<Radar data={{ labels: labels, datasets: datasets }} options={{
|
64
64
|
plugins: {
|
65
65
|
title: title,
|
66
66
|
legend: legend,
|
@@ -70,7 +70,7 @@ export var RadarChart = function (_a) {
|
|
70
70
|
suggestedMin: 50,
|
71
71
|
suggestedMax: 100,
|
72
72
|
} }, defaultScales.linescale),
|
73
|
-
}
|
73
|
+
}} className={cn(radarChartVariants({ scaling: scaling }), className)} width={width} height={height} {...props}/>);
|
74
74
|
};
|
75
75
|
RadarChart.displayName = 'RadarChart';
|
76
76
|
export default RadarChart;
|
@@ -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,12 +9,11 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
9
|
}
|
21
10
|
return t;
|
22
11
|
};
|
23
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
24
12
|
import React from 'react';
|
25
13
|
import { cva } from 'class-variance-authority';
|
26
14
|
import { Theme, Radio as RadioTheme, Flex } from '@radix-ui/themes';
|
27
|
-
import { Text } from '
|
28
|
-
import { cn } from '
|
15
|
+
import { Text } from '../../../../../lib/Typography/Text';
|
16
|
+
import { cn } from '../../../../../lib/utils/utils';
|
29
17
|
var radioVariants = cva('font-normal', {
|
30
18
|
variants: {
|
31
19
|
size: {
|
@@ -47,7 +35,14 @@ export var Radio = React.forwardRef(function (_a, ref) {
|
|
47
35
|
sizeTheme = '1';
|
48
36
|
if (size === 'large')
|
49
37
|
sizeTheme = '3';
|
50
|
-
return (
|
38
|
+
return (<Theme accentColor={color} scaling={scaling}>
|
39
|
+
<Flex asChild className={cn(radioVariants({ size: size }), className)}>
|
40
|
+
<Text as="label" size={sizeTheme}>
|
41
|
+
<RadioTheme ref={ref} value={value} variant={appearance} size={sizeTheme} {...props}/>
|
42
|
+
{children}
|
43
|
+
</Text>
|
44
|
+
</Flex>
|
45
|
+
</Theme>);
|
51
46
|
});
|
52
47
|
Radio.displayName = 'Radio';
|
53
48
|
export default Radio;
|