@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
@@ -0,0 +1,22 @@
|
|
1
|
+
var config = {
|
2
|
+
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
|
3
|
+
addons: [
|
4
|
+
'@storybook/addon-links',
|
5
|
+
'@storybook/addon-essentials',
|
6
|
+
'@chromatic-com/storybook',
|
7
|
+
'@storybook/addon-interactions',
|
8
|
+
'@storybook/addon-styling-webpack',
|
9
|
+
'@storybook/addon-a11y',
|
10
|
+
'storybook-dark-mode',
|
11
|
+
'storybook-addon-deep-controls',
|
12
|
+
],
|
13
|
+
framework: {
|
14
|
+
name: '@storybook/nextjs',
|
15
|
+
options: {},
|
16
|
+
},
|
17
|
+
docs: {
|
18
|
+
autodocs: 'tag',
|
19
|
+
},
|
20
|
+
staticDirs: ['../public'],
|
21
|
+
};
|
22
|
+
export default config;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { addons } from '@storybook/addons';
|
2
|
+
import { create } from '@storybook/theming';
|
3
|
+
import logo from '../src/stories/assets/logo.png';
|
4
|
+
var lightTheme = create({
|
5
|
+
base: 'light', // 밝은 테마 설정
|
6
|
+
brandImage: logo,
|
7
|
+
brandTitle: '롯데이노베이트',
|
8
|
+
brandUrl: '../src/stories/assets/logo.png', //로고 적용
|
9
|
+
});
|
10
|
+
addons.setConfig({
|
11
|
+
theme: lightTheme,
|
12
|
+
});
|
@@ -0,0 +1,80 @@
|
|
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
|
+
import React, { useEffect } from 'react';
|
13
|
+
import { themes } from '@storybook/theming';
|
14
|
+
import { useDarkMode } from 'storybook-dark-mode';
|
15
|
+
import '../src/app/globals.css';
|
16
|
+
import '../src/app/styles.css';
|
17
|
+
import '../src/app/stories.css';
|
18
|
+
import 'tailwindcss/tailwind.css';
|
19
|
+
var preview = {
|
20
|
+
parameters: {
|
21
|
+
controls: {
|
22
|
+
matchers: {
|
23
|
+
color: /(background|color)$/i,
|
24
|
+
date: /Date$/i,
|
25
|
+
},
|
26
|
+
},
|
27
|
+
options: {
|
28
|
+
storySort: {
|
29
|
+
method: 'alphabetical',
|
30
|
+
order: [
|
31
|
+
'Welcome',
|
32
|
+
'Typography',
|
33
|
+
'Component',
|
34
|
+
'Chart',
|
35
|
+
'Light Color',
|
36
|
+
'Dark Color',
|
37
|
+
'Light Alpha Color',
|
38
|
+
'Dark Alpha Color',
|
39
|
+
],
|
40
|
+
},
|
41
|
+
},
|
42
|
+
docs: {
|
43
|
+
theme: themes.light,
|
44
|
+
},
|
45
|
+
darkMode: {
|
46
|
+
dark: __assign(__assign({}, themes.dark), { appBg: '#272a2d', textColor: '#edeef0' }),
|
47
|
+
light: __assign(__assign({}, themes.light), { appBg: 'white', textColor: '#2E3438' }),
|
48
|
+
},
|
49
|
+
backgrounds: { disable: true },
|
50
|
+
deepControls: { enabled: true },
|
51
|
+
},
|
52
|
+
};
|
53
|
+
export default preview;
|
54
|
+
var changeClassOnBody = function (oldClassName, newClassName) {
|
55
|
+
var classList = document.body.classList;
|
56
|
+
if (classList.contains(oldClassName)) {
|
57
|
+
classList.replace(oldClassName, newClassName);
|
58
|
+
}
|
59
|
+
};
|
60
|
+
var withBackground = function (Story, context) {
|
61
|
+
var isDarkMode = useDarkMode();
|
62
|
+
useEffect(function () {
|
63
|
+
if (isDarkMode) {
|
64
|
+
changeClassOnBody('light', 'dark');
|
65
|
+
}
|
66
|
+
else {
|
67
|
+
changeClassOnBody('dark', 'light');
|
68
|
+
}
|
69
|
+
var docsStoryElements = document.querySelectorAll('.docs-story');
|
70
|
+
docsStoryElements.forEach(function (element) {
|
71
|
+
element.style.backgroundColor = isDarkMode ? '#111113' : 'white';
|
72
|
+
});
|
73
|
+
docsStoryElements = document.querySelectorAll('.sb-show-main');
|
74
|
+
docsStoryElements.forEach(function (element) {
|
75
|
+
element.style.backgroundColor = isDarkMode ? '#111113' : 'white';
|
76
|
+
});
|
77
|
+
}, [isDarkMode]);
|
78
|
+
return <Story {...context}/>;
|
79
|
+
};
|
80
|
+
export var decorators = [withBackground];
|
@@ -0,0 +1,13 @@
|
|
1
|
+
// import { Inter } from 'next/font/google';
|
2
|
+
import './globals.css';
|
3
|
+
// const inter = Inter({ subsets: ['latin'] });
|
4
|
+
export var metadata = {
|
5
|
+
title: 'Create Next App',
|
6
|
+
description: 'Generated by create next app',
|
7
|
+
};
|
8
|
+
export default function RootLayout(_a) {
|
9
|
+
var children = _a.children;
|
10
|
+
return (<html lang="en">
|
11
|
+
<body>{children}</body>
|
12
|
+
</html>);
|
13
|
+
}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
'use client';
|
2
|
+
import React, { useState } from 'react';
|
3
|
+
import Logo from '../stories/assets/logo.png';
|
4
|
+
import Login from '../stories/assets/login.svg';
|
5
|
+
import Image from 'next/image';
|
6
|
+
export default function Home() {
|
7
|
+
var _a = useState(''), username = _a[0], setUsername = _a[1];
|
8
|
+
var _b = useState(''), password = _b[0], setPassword = _b[1];
|
9
|
+
var _c = useState(false), rememberMe = _c[0], setRememberMe = _c[1];
|
10
|
+
var _d = useState(false), open = _d[0], setOpen = _d[1];
|
11
|
+
return (<div className="grid grid-cols-2">
|
12
|
+
<div className="App text-black">
|
13
|
+
<div>
|
14
|
+
<Image src={Logo} width={300} height={0} alt="logo"/>
|
15
|
+
<div className="mb-3">
|
16
|
+
<label htmlFor="username">아이디</label>
|
17
|
+
<input type="text" id="username" value={username} onChange={function (e) { return setUsername(e.target.value); }} required/>
|
18
|
+
</div>
|
19
|
+
<div className="mb-3">
|
20
|
+
<label htmlFor="password">비밀번호</label>
|
21
|
+
<input type="password" id="password" value={password} onChange={function (e) { return setPassword(e.target.value); }} required/>
|
22
|
+
</div>
|
23
|
+
<div className="mb-3">
|
24
|
+
<label>
|
25
|
+
<input type="checkbox" checked={rememberMe} onChange={function (e) { return setRememberMe(e.target.checked); }}/>
|
26
|
+
아이디 저장
|
27
|
+
</label>
|
28
|
+
</div>
|
29
|
+
<button type="submit">로그인</button>
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
<div className="flex items-center justify-center">
|
33
|
+
<Image src={Login} width={0} height={0} alt="Login"/>
|
34
|
+
</div>
|
35
|
+
</div>);
|
36
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
'use client';
|
2
|
+
import { bgColorStyle } from '../../../../lib/constants';
|
3
|
+
var ColorPicker = function (_a) {
|
4
|
+
var setColorTheme = _a.setColorTheme;
|
5
|
+
var handleColorClick = function (color) {
|
6
|
+
setColorTheme(color);
|
7
|
+
};
|
8
|
+
return (<div>
|
9
|
+
<div className="flex flex-row flex-wrap gap-2">
|
10
|
+
{Object.entries(bgColorStyle).map(function (_a) {
|
11
|
+
var key = _a[0], value = _a[1];
|
12
|
+
return (<button className={"w-12 p-2 rounded-full text-xs cursor-pointer hover:border-gray-900 ".concat(value, " text-white hover:text-black")} key={key}>
|
13
|
+
{key.replace('Dark', '')}
|
14
|
+
</button>);
|
15
|
+
})}
|
16
|
+
</div>
|
17
|
+
</div>);
|
18
|
+
};
|
19
|
+
export default ColorPicker;
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import ColorPicker from './colorPicker';
|
3
|
+
var Theme = function (_a) {
|
4
|
+
var setRadiusTheme = _a.setRadiusTheme, setScalingTheme = _a.setScalingTheme, setFontWeightTheme = _a.setFontWeightTheme, setColorTheme = _a.setColorTheme, setFontColorTheme = _a.setFontColorTheme, mode = _a.mode;
|
5
|
+
var setColor = function (color) {
|
6
|
+
setColorTheme(color);
|
7
|
+
setFontColorTheme(color);
|
8
|
+
};
|
9
|
+
return (<div className="flex flex-col p-3">
|
10
|
+
<p className="text-2xl font-bold">Themes</p>
|
11
|
+
<div className="flex flex-col text-xl gap-2">
|
12
|
+
Accent Color
|
13
|
+
<ColorPicker mode={mode} setColorTheme={setColor}/>
|
14
|
+
</div>
|
15
|
+
</div>);
|
16
|
+
};
|
17
|
+
export default Theme;
|
@@ -20,10 +20,9 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
20
20
|
}
|
21
21
|
return t;
|
22
22
|
};
|
23
|
-
import {
|
24
|
-
import { cn } from '../../../lib/utils/utils';
|
23
|
+
import { cn } from '../../../../../lib/utils/utils';
|
25
24
|
import { cva } from 'class-variance-authority';
|
26
|
-
import { textColorStyle, weightVariants } from '
|
25
|
+
import { textColorStyle, weightVariants } from '../../../../../lib/constants';
|
27
26
|
import { Heading as HeadingTheme, Theme } from '@radix-ui/themes';
|
28
27
|
import React from 'react';
|
29
28
|
var weights = __assign({}, weightVariants);
|
@@ -49,7 +48,11 @@ export var Header = React.forwardRef(function (_a, ref) {
|
|
49
48
|
var className = _a.className, children = _a.children, size = _a.size, weight = _a.weight, color = _a.color, headers = _a.headers, align = _a.align, rootProps = __rest(_a, ["className", "children", "size", "weight", "color", "headers", "align"]);
|
50
49
|
if (!headers)
|
51
50
|
headers = 'h1';
|
52
|
-
return (
|
51
|
+
return (<Theme>
|
52
|
+
<HeadingTheme ref={ref} as={headers} size={size} align={align} className={cn('leading-normal', headerVariants({ weight: weight, color: color }), className)} {...rootProps}>
|
53
|
+
{children}
|
54
|
+
</HeadingTheme>
|
55
|
+
</Theme>);
|
53
56
|
});
|
54
57
|
Header.displayName = 'Header';
|
55
58
|
export default Header;
|
@@ -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
25
|
import { Text as TextTheme, Theme } from '@radix-ui/themes';
|
27
|
-
import { textColorStyle, weightVariants } from '
|
28
|
-
import { cn } from '
|
26
|
+
import { textColorStyle, weightVariants } from '../../../../../lib/constants';
|
27
|
+
import { cn } from '../../../../../lib/utils/utils';
|
29
28
|
var textVariants = cva('', {
|
30
29
|
variants: {
|
31
30
|
weight: __assign({ light: 'font-light' }, weightVariants),
|
@@ -38,7 +37,11 @@ var textVariants = cva('', {
|
|
38
37
|
});
|
39
38
|
export var Text = forwardRef(function (_a, ref) {
|
40
39
|
var className = _a.className, children = _a.children, as = _a.as, align = _a.align, weight = _a.weight, color = _a.color, size = _a.size, props = __rest(_a, ["className", "children", "as", "align", "weight", "color", "size"]);
|
41
|
-
return (
|
40
|
+
return (<Theme>
|
41
|
+
<TextTheme as={as} ref={ref} size={size} align={align} className={cn(textVariants({ weight: weight, color: color }), className)} {...props}>
|
42
|
+
{children}
|
43
|
+
</TextTheme>
|
44
|
+
</Theme>);
|
42
45
|
});
|
43
46
|
Text.displayName = 'Text';
|
44
47
|
export default Text;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { blue, crimson, teal, orange, purple, amber, slate, cyan, red, grass, brown, indigo, plum, yellow, sky, lime, } from './light';
|
2
2
|
import { blueA, crimsonA, tealA, orangeA, purpleA, amberA, slateA, cyanA, redA, grassA, brownA, indigoA, plumA, yellowA, skyA, limeA, } from './alpha';
|
3
3
|
export var colorOptions = [
|
4
|
+
// 'black',
|
4
5
|
'slate',
|
5
6
|
'olive',
|
6
7
|
'sand',
|
@@ -29,6 +30,7 @@ export var colorOptions = [
|
|
29
30
|
'yellow',
|
30
31
|
'amber',
|
31
32
|
'orange',
|
33
|
+
// 'white',
|
32
34
|
];
|
33
35
|
export var alphaColorOptions = [
|
34
36
|
'slateA',
|
package/dist/{lib/components/Accordion/index.js → esm/src/lib/components/Accordion/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 * as AccordionPrimitive from '@radix-ui/react-accordion';
|
26
25
|
import { ChevronDownIcon } from '@radix-ui/react-icons';
|
27
|
-
import { cn } from '
|
26
|
+
import { cn } from '../../../../../lib/utils/utils';
|
28
27
|
import { cva } from 'class-variance-authority';
|
29
|
-
import { scalingVariants } from '
|
28
|
+
import { scalingVariants } from '../../../../../lib/constants';
|
30
29
|
var accoridanVariants = cva('', {
|
31
30
|
variants: {
|
32
31
|
scaling: __assign({}, scalingVariants),
|
@@ -37,22 +36,35 @@ var accoridanVariants = cva('', {
|
|
37
36
|
});
|
38
37
|
export var Root = React.forwardRef(function (_a, forwardedRef) {
|
39
38
|
var className = _a.className, children = _a.children, scaling = _a.scaling, rootProps = __rest(_a, ["className", "children", "scaling"]);
|
40
|
-
return (
|
39
|
+
return (<AccordionPrimitive.Root className={cn('w-[280px] rounded-md border border-slateA-4 dark:border-slateDarkA-4', accoridanVariants({ scaling: scaling }), className)} {...rootProps} ref={forwardedRef}>
|
40
|
+
{children}
|
41
|
+
</AccordionPrimitive.Root>);
|
41
42
|
});
|
42
43
|
Root.displayName = 'Accordion.Root';
|
43
44
|
export var Item = React.forwardRef(function (_a, forwardedRef) {
|
44
45
|
var className = _a.className, children = _a.children, rootProps = __rest(_a, ["className", "children"]);
|
45
|
-
return (
|
46
|
+
return (<AccordionPrimitive.Item {...rootProps} ref={forwardedRef} className={cn('mt-px w-[278px] overflow-hidden first:mt-0 first:rounded-t last:rounded-b', className)}>
|
47
|
+
{children}
|
48
|
+
</AccordionPrimitive.Item>);
|
46
49
|
});
|
47
50
|
Item.displayName = 'Accordion.Item';
|
48
51
|
export var Trigger = React.forwardRef(function (_a, forwardedRef) {
|
49
52
|
var className = _a.className, children = _a.children, _b = _a.color, color = _b === void 0 ? 'red' : _b, rootProps = __rest(_a, ["className", "children", "color"]);
|
50
|
-
return (
|
53
|
+
return (<AccordionPrimitive.Header {...rootProps} className={cn('flex', className)}>
|
54
|
+
<AccordionPrimitive.Trigger {...rootProps} ref={forwardedRef} className={cn("group flex h-[44px] w-[278px] cursor-default items-center justify-between px-[20px] py-[10px] text-base font-normal", "dark:bg-[#111113] text-".concat(color, "A-11 dark:text-").concat(color, "Dark-11 "), "hover:bg-".concat(color, "A-4 dark:hover:bg-").concat(color, "Dark-4 hover:text-").concat(color, "A-11 dark:hover:text-").concat(color, "DarkA-11"), "data-[state=open]:bg-".concat(color, "A-5 dark:data-[state=open]:bg-").concat(color, "DarkA-5"), "disabled:bg-slateA-3 disabled:text-slateA-8 disabled:dark:bg-slateDarkA-3 disabled:dark:text-slateDarkA-8", className)}>
|
55
|
+
{children}
|
56
|
+
<ChevronDownIcon className="transition-transform duration-300 ease-[cubic-bezier(0.87,_0,_0.13,_1)] group-data-[state=open]:rotate-180" aria-hidden/>
|
57
|
+
</AccordionPrimitive.Trigger>
|
58
|
+
</AccordionPrimitive.Header>);
|
51
59
|
});
|
52
60
|
Trigger.displayName = 'Accordion.Trigger';
|
53
61
|
export var Content = React.forwardRef(function (_a, forwardedRef) {
|
54
62
|
var className = _a.className, children = _a.children, rootProps = __rest(_a, ["className", "children"]);
|
55
|
-
return (
|
63
|
+
return (<AccordionPrimitive.Content {...rootProps} ref={forwardedRef} className={cn('max-h-[800px] w-[278px] overflow-hidden border-t border-t-slateA-4 bg-slateA-2 text-[16px] text-slateA-11 data-[state=closed]:animate-slideUp data-[state=open]:animate-slideDown dark:border-t-slateDarkA-4 dark:bg-slateDarkA-2 dark:text-slateDarkA-11', className)}>
|
64
|
+
<div className="h-auto max-h-[1000px] overflow-y-auto px-[20px] py-[15px] text-base font-normal">
|
65
|
+
{children}
|
66
|
+
</div>
|
67
|
+
</AccordionPrimitive.Content>);
|
56
68
|
});
|
57
69
|
Content.displayName = 'Accordion.Content';
|
58
70
|
var Accordion = {
|
@@ -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 AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
26
25
|
import { cva } from 'class-variance-authority';
|
27
|
-
import { cn } from '
|
28
|
-
import { appearanceStyle, primaryColorStyle, weightVariants } from '
|
26
|
+
import { cn } from '../../../../../lib/utils/utils';
|
27
|
+
import { appearanceStyle, primaryColorStyle, weightVariants } from '../../../../../lib/constants';
|
29
28
|
import { useAlertDialogContext } from './AlertDialogRoot';
|
30
29
|
export var alertDialogActionVariants = cva("inline-flex items-center justify-center px-[15px] outline-none focus:shadow-[0_0_0_2px] font-normal w-fit", {
|
31
30
|
variants: {
|
@@ -56,6 +55,8 @@ export var AlertDialogAction = forwardRef(function (_a, ref) {
|
|
56
55
|
var className = _a.className, children = _a.children, weight = _a.weight, props = __rest(_a, ["className", "children", "weight"]);
|
57
56
|
var _b = useAlertDialogContext(), radius = _b.radius, size = _b.size, _c = _b.color, color = _c === void 0 ? 'red' : _c, _d = _b.appearance, appearance = _d === void 0 ? 'solid' : _d;
|
58
57
|
var buttonClassName = cn(alertDialogActionVariants({ radius: radius, size: size, weight: weight, color: color }), appearanceStyle(appearance, color), className);
|
59
|
-
return (
|
58
|
+
return (<AlertDialogPrimitive.Action ref={ref} className={buttonClassName} {...props}>
|
59
|
+
{children}
|
60
|
+
</AlertDialogPrimitive.Action>);
|
60
61
|
});
|
61
62
|
AlertDialogAction.displayName = 'AlertDialog.Action';
|
@@ -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 AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
26
25
|
import { cva } from 'class-variance-authority';
|
27
|
-
import { cn } from '
|
28
|
-
import { appearanceStyle, weightVariants } from '
|
26
|
+
import { cn } from '../../../../../lib/utils/utils';
|
27
|
+
import { appearanceStyle, weightVariants } from '../../../../../lib/constants';
|
29
28
|
import { useAlertDialogContext } from './AlertDialogRoot';
|
30
29
|
export var alertDialogCancelVariants = cva("inline-flex justify-center items-center outline-none w-fit", {
|
31
30
|
variants: {
|
@@ -55,6 +54,8 @@ export var AlertDialogCancel = forwardRef(function (_a, ref) {
|
|
55
54
|
var _b = useAlertDialogContext(), radius = _b.radius, size = _b.size, _c = _b.appearance, appearance = _c === void 0 ? 'solid' : _c;
|
56
55
|
var disabledButtonStyle = "border-none text-slate-11 bg-slate-3 \n active:bg-slate-4 active:border-none hover:cursor-pointer hover:bg-slateA-4\n dark:text-slateDark-11 dark:bg-slateDark-3 dark:hover:bg-slateDarkA-4";
|
57
56
|
var buttonClassName = cn(alertDialogCancelVariants({ radius: radius, size: size, weight: weight }), appearanceStyle(appearance, 'slate'), disabledButtonStyle, className);
|
58
|
-
return (
|
57
|
+
return (<AlertDialogPrimitive.Cancel ref={ref} {...props} className={buttonClassName}>
|
58
|
+
{children}
|
59
|
+
</AlertDialogPrimitive.Cancel>);
|
59
60
|
});
|
60
61
|
AlertDialogCancel.displayName = 'AlertDialog.Cancel';
|
@@ -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 AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
26
25
|
import { cva } from 'class-variance-authority';
|
27
|
-
import { cn } from '
|
28
|
-
import { radiusVariants, scalingVariants } from '
|
26
|
+
import { cn } from '../../../../../lib/utils/utils';
|
27
|
+
import { radiusVariants, scalingVariants } from '../../../../../lib/constants';
|
29
28
|
import { useAlertDialogContext } from './AlertDialogRoot';
|
30
29
|
export var alertDialogContentVariants = cva("fixed max-h-[85vh] top-[50%] left-[50%] focus:outline-none\n translate-x-[-50%] translate-y-[-50%] data-[state=open]:animate-contentShow bg-white dark:bg-slateDark-1 \n shadow-[hsl(206_22%_7%_/_35%)_0px_10px_38px_-10px,_hsl(206_22%_7%_/_20%)_0px_10px_20px_-15px]", {
|
31
30
|
variants: {
|
@@ -46,6 +45,11 @@ export var alertDialogContentVariants = cva("fixed max-h-[85vh] top-[50%] left-[
|
|
46
45
|
export var AlertDialogContent = forwardRef(function (_a, ref) {
|
47
46
|
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
48
47
|
var _b = useAlertDialogContext(), radius = _b.radius, size = _b.size, scaling = _b.scaling;
|
49
|
-
return (
|
48
|
+
return (<AlertDialogPrimitive.Portal>
|
49
|
+
<AlertDialogPrimitive.Overlay className="fixed data-[state=open]:animate-overlayShow inset-0"/>
|
50
|
+
<AlertDialogPrimitive.Content className={cn(alertDialogContentVariants({ radius: radius, size: size, scaling: scaling }), className)} ref={ref} {...props}>
|
51
|
+
{children}
|
52
|
+
</AlertDialogPrimitive.Content>
|
53
|
+
</AlertDialogPrimitive.Portal>);
|
50
54
|
});
|
51
55
|
AlertDialogContent.displayName = 'AlertDialog.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,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 AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
26
14
|
import { cva } from 'class-variance-authority';
|
27
|
-
import { cn } from '
|
15
|
+
import { cn } from '../../../../../lib/utils/utils';
|
28
16
|
import { useAlertDialogContext } from './AlertDialogRoot';
|
29
17
|
export var alertDialogDescriptionVariants = cva("text-slate-12 dark:text-slateDark-12 font-normal", {
|
30
18
|
variants: {
|
@@ -42,6 +30,8 @@ export var alertDialogDescriptionVariants = cva("text-slate-12 dark:text-slateDa
|
|
42
30
|
export var AlertDialogDescription = forwardRef(function (_a, ref) {
|
43
31
|
var className = _a.className, children = _a.children, contentText = _a.contentText, props = __rest(_a, ["className", "children", "contentText"]);
|
44
32
|
var size = useAlertDialogContext().size;
|
45
|
-
return (
|
33
|
+
return (<AlertDialogPrimitive.Description className={cn(alertDialogDescriptionVariants({ size: size }), className)} ref={ref} {...props}>
|
34
|
+
{contentText !== null && contentText !== void 0 ? contentText : children}
|
35
|
+
</AlertDialogPrimitive.Description>);
|
46
36
|
});
|
47
37
|
AlertDialogDescription.displayName = 'AlertDialog.Description';
|
@@ -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 { forwardRef, createContext, useContext, useMemo, } from 'react';
|
12
|
+
import React, { forwardRef, createContext, useContext, useMemo, } from 'react';
|
25
13
|
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
26
14
|
var AlertDialogContext = createContext({
|
27
15
|
size: 'medium',
|
@@ -41,6 +29,10 @@ export var AlertDialogRoot = forwardRef(function (_a, ref) {
|
|
41
29
|
scaling: scaling,
|
42
30
|
color: color,
|
43
31
|
}); }, [radius, size, scaling, color]);
|
44
|
-
return (
|
32
|
+
return (<AlertDialogContext.Provider value={contextValue}>
|
33
|
+
<div ref={ref}>
|
34
|
+
<AlertDialogPrimitive.Root {...props}>{children}</AlertDialogPrimitive.Root>
|
35
|
+
</div>
|
36
|
+
</AlertDialogContext.Provider>);
|
45
37
|
});
|
46
38
|
AlertDialogRoot.displayName = 'AlertDialog.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,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 AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
26
14
|
import { cva } from 'class-variance-authority';
|
27
|
-
import { cn } from '
|
15
|
+
import { cn } from '../../../../../lib/utils/utils';
|
28
16
|
import { useAlertDialogContext } from './AlertDialogRoot';
|
29
17
|
export var alertDialogTitleVariants = cva("m-0 text-slate-12 dark:text-slateDark-12 font-bold", {
|
30
18
|
variants: {
|
@@ -42,6 +30,8 @@ export var alertDialogTitleVariants = cva("m-0 text-slate-12 dark:text-slateDark
|
|
42
30
|
export var AlertDialogTitle = forwardRef(function (_a, ref) {
|
43
31
|
var className = _a.className, children = _a.children, titleText = _a.titleText, props = __rest(_a, ["className", "children", "titleText"]);
|
44
32
|
var size = useAlertDialogContext().size;
|
45
|
-
return (
|
33
|
+
return (<AlertDialogPrimitive.Title className={cn(alertDialogTitleVariants({ size: size }), className)} ref={ref} {...props}>
|
34
|
+
{titleText !== null && titleText !== void 0 ? titleText : children}
|
35
|
+
</AlertDialogPrimitive.Title>);
|
46
36
|
});
|
47
37
|
AlertDialogTitle.displayName = 'AlertDialog.Title';
|
@@ -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 AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
26
25
|
import { cva } from 'class-variance-authority';
|
27
|
-
import { cn } from '
|
28
|
-
import { radiusVariants, scalingVariants, weightVariants, primaryColorStyle, appearanceStyle, } from '
|
26
|
+
import { cn } from '../../../../../lib/utils/utils';
|
27
|
+
import { radiusVariants, scalingVariants, weightVariants, primaryColorStyle, appearanceStyle, } from '../../../../../lib/constants';
|
29
28
|
var buttonVariants = cva("inline-flex items-center transition-colors focus:outline-none hover:cursor-pointer\n disabled:cursor-not-allowed disabled:bg-slate-3 disabled:text-slate-8", {
|
30
29
|
variants: {
|
31
30
|
radius: __assign({}, radiusVariants['base']),
|
@@ -50,6 +49,8 @@ var buttonVariants = cva("inline-flex items-center transition-colors focus:outli
|
|
50
49
|
export var AlertDialogTrigger = forwardRef(function (_a, ref) {
|
51
50
|
var children = _a.children, className = _a.className, radius = _a.radius, scaling = _a.scaling, size = _a.size, weight = _a.weight, _b = _a.color, color = _b === void 0 ? 'red' : _b, _c = _a.appearance, appearance = _c === void 0 ? 'solid' : _c, props = __rest(_a, ["children", "className", "radius", "scaling", "size", "weight", "color", "appearance"]);
|
52
51
|
var buttonClassName = cn(buttonVariants({ radius: radius, scaling: scaling, size: size, weight: weight, color: color }), appearanceStyle(appearance, color), className);
|
53
|
-
return (
|
52
|
+
return (<AlertDialogPrimitive.Trigger asChild ref={ref} className={buttonClassName} {...props}>
|
53
|
+
{children}
|
54
|
+
</AlertDialogPrimitive.Trigger>);
|
54
55
|
});
|
55
56
|
AlertDialogTrigger.displayName = 'AlertDialog.Trigger';
|
package/dist/{lib/components/AspectRatio/index.js → esm/src/lib/components/AspectRatio/index.jsx}
RENAMED
@@ -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 AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
|
26
25
|
import { cva } from 'class-variance-authority';
|
27
|
-
import { cn } from '
|
28
|
-
import { scalingVariants } from '
|
26
|
+
import { cn } from '../../../../../lib/utils/utils';
|
27
|
+
import { scalingVariants } from '../../../../../lib/constants';
|
29
28
|
export var aspectRatioVariants = cva('', {
|
30
29
|
variants: {
|
31
30
|
scaling: __assign({}, scalingVariants),
|
@@ -36,7 +35,9 @@ export var aspectRatioVariants = cva('', {
|
|
36
35
|
});
|
37
36
|
var AspectRatio = forwardRef(function (_a, ref) {
|
38
37
|
var children = _a.children, className = _a.className, _b = _a.ratio, ratio = _b === void 0 ? 16 / 9 : _b, scaling = _a.scaling, props = __rest(_a, ["children", "className", "ratio", "scaling"]);
|
39
|
-
return (
|
38
|
+
return (<AspectRatioPrimitive.Root ratio={ratio} ref={ref} {...props} className={cn(aspectRatioVariants({ scaling: scaling }), className)}>
|
39
|
+
{children}
|
40
|
+
</AspectRatioPrimitive.Root>);
|
40
41
|
});
|
41
42
|
AspectRatio.displayName = 'AspectRatio';
|
42
43
|
export default AspectRatio;
|