@lotte-innovate/ui-component-test 0.1.48 → 0.1.49
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/.storybook/main.js +24 -0
- package/dist/cjs/.storybook/manager.js +17 -0
- package/dist/cjs/.storybook/preview.jsx +106 -0
- package/dist/cjs/lib/Typography/Header/index.jsx +64 -0
- package/dist/cjs/lib/Typography/Text/index.jsx +73 -0
- package/dist/cjs/lib/Typography/index.js +10 -0
- package/dist/cjs/lib/color/alpha.js +788 -0
- package/dist/cjs/lib/color/constants.js +299 -0
- package/dist/cjs/lib/color/dark.js +395 -0
- package/dist/cjs/lib/color/krdsColors.js +312 -0
- package/dist/cjs/lib/color/light.js +396 -0
- package/dist/cjs/lib/components/Accordion/index.jsx +105 -0
- package/dist/cjs/lib/components/AlertDialog/AlertDialogAction.jsx +88 -0
- package/dist/cjs/lib/components/AlertDialog/AlertDialogCancel.jsx +87 -0
- package/dist/cjs/lib/components/AlertDialog/AlertDialogContent.jsx +81 -0
- package/dist/cjs/lib/components/AlertDialog/AlertDialogDescription.jsx +63 -0
- package/dist/cjs/lib/components/AlertDialog/AlertDialogRoot.jsx +65 -0
- package/dist/cjs/lib/components/AlertDialog/AlertDialogTitle.jsx +63 -0
- package/dist/cjs/lib/components/AlertDialog/AlertDialogTrigger.jsx +82 -0
- package/dist/cjs/lib/components/AlertDialog/index.jsx +19 -0
- package/dist/cjs/lib/components/AspectRatio/index.jsx +69 -0
- package/dist/cjs/lib/components/Avatar/index.jsx +87 -0
- package/dist/cjs/lib/components/Badge/index.jsx +80 -0
- package/dist/cjs/lib/components/BarChart/index.jsx +64 -0
- package/dist/cjs/lib/components/BubbleChart/index.jsx +80 -0
- package/dist/cjs/lib/components/Button/index.jsx +83 -0
- package/dist/cjs/lib/components/Callout/CalloutIcon.jsx +88 -0
- package/dist/cjs/lib/components/Callout/CalloutRoot.jsx +102 -0
- package/dist/cjs/lib/components/Callout/CalloutText.jsx +68 -0
- package/dist/cjs/lib/components/Callout/index.jsx +11 -0
- package/dist/cjs/lib/components/Card/index.jsx +90 -0
- package/dist/cjs/lib/components/Checkbox/index.jsx +123 -0
- package/dist/cjs/lib/components/CheckboxCard/index.jsx +89 -0
- package/dist/cjs/lib/components/CheckboxGroup/CheckboxGroupItem.jsx +54 -0
- package/dist/cjs/lib/components/CheckboxGroup/CheckboxGroupRoot.jsx +64 -0
- package/dist/cjs/lib/components/CheckboxGroup/index.jsx +6 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuCheckboxItem.jsx +61 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuContent.jsx +85 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuGroup.jsx +46 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuItem.jsx +87 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuItemIndicator.jsx +77 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuLabel.jsx +75 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuRadioGroup.jsx +49 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuRadioItem.jsx +63 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuRoot.jsx +61 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuSeparator.jsx +47 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuSubContent.jsx +83 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuSubTrigger.jsx +61 -0
- package/dist/cjs/lib/components/ContextMenu/ContextMenuTrigger.jsx +47 -0
- package/dist/cjs/lib/components/ContextMenu/index.jsx +31 -0
- package/dist/cjs/lib/components/DataList/DataListItem.jsx +70 -0
- package/dist/cjs/lib/components/DataList/DataListLabel.jsx +76 -0
- package/dist/cjs/lib/components/DataList/DataListRoot.jsx +73 -0
- package/dist/cjs/lib/components/DataList/DataListValue.jsx +78 -0
- package/dist/cjs/lib/components/DataList/index.jsx +8 -0
- package/dist/cjs/lib/components/Dialog/DialogAction.jsx +75 -0
- package/dist/cjs/lib/components/Dialog/DialogCancel.jsx +71 -0
- package/dist/cjs/lib/components/Dialog/DialogContent.jsx +84 -0
- package/dist/cjs/lib/components/Dialog/DialogDescription.jsx +63 -0
- package/dist/cjs/lib/components/Dialog/DialogRoot.jsx +56 -0
- package/dist/cjs/lib/components/Dialog/DialogSlot.jsx +62 -0
- package/dist/cjs/lib/components/Dialog/DialogTitle.jsx +63 -0
- package/dist/cjs/lib/components/Dialog/DialogTrigger.jsx +46 -0
- package/dist/cjs/lib/components/Dialog/index.jsx +21 -0
- package/dist/cjs/lib/components/DoughnutChart/index.jsx +70 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdonMenuRadioGroup.jsx +46 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdonMenuSubContent.jsx +89 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuCheckboxItem.jsx +60 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuContent.jsx +85 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuItem.jsx +86 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuItemIndicator.jsx +75 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuLable.jsx +61 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuRadioItem.jsx +60 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuRoot.jsx +55 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuSeparator.jsx +45 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuSub.jsx +44 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuSubTrigger.jsx +59 -0
- package/dist/cjs/lib/components/DropdownMenu/DropdownMenuTrigger.jsx +69 -0
- package/dist/cjs/lib/components/DropdownMenu/index.jsx +31 -0
- package/dist/cjs/lib/components/HoverCard/HoverCardContent.jsx +88 -0
- package/dist/cjs/lib/components/HoverCard/HoverCardRoot.jsx +57 -0
- package/dist/cjs/lib/components/HoverCard/HoverCardTrigger.jsx +46 -0
- package/dist/cjs/lib/components/HoverCard/index.jsx +11 -0
- package/dist/cjs/lib/components/IconButton/index.jsx +90 -0
- package/dist/cjs/lib/components/Inset/index.jsx +79 -0
- package/dist/cjs/lib/components/Label/index.jsx +83 -0
- package/dist/cjs/lib/components/LineChart/index.jsx +62 -0
- package/dist/cjs/lib/components/Menubar/MenubarCheckboxItem.jsx +57 -0
- package/dist/cjs/lib/components/Menubar/MenubarContent.jsx +89 -0
- package/dist/cjs/lib/components/Menubar/MenubarItem.jsx +82 -0
- package/dist/cjs/lib/components/Menubar/MenubarItemIndicator.jsx +76 -0
- package/dist/cjs/lib/components/Menubar/MenubarMenu.jsx +44 -0
- package/dist/cjs/lib/components/Menubar/MenubarRadioGroup.jsx +49 -0
- package/dist/cjs/lib/components/Menubar/MenubarRadioItem.jsx +59 -0
- package/dist/cjs/lib/components/Menubar/MenubarRoot.jsx +91 -0
- package/dist/cjs/lib/components/Menubar/MenubarSeparator.jsx +47 -0
- package/dist/cjs/lib/components/Menubar/MenubarSub.jsx +44 -0
- package/dist/cjs/lib/components/Menubar/MenubarSubContent.jsx +78 -0
- package/dist/cjs/lib/components/Menubar/MenubarSubTrigger.jsx +60 -0
- package/dist/cjs/lib/components/Menubar/MenubarTrigger.jsx +84 -0
- package/dist/cjs/lib/components/Menubar/index.jsx +31 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuContent.jsx +75 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuIndicator.jsx +48 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuItem.jsx +46 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuLink.jsx +78 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuList.jsx +75 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuRoot.jsx +62 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuTrigger.jsx +86 -0
- package/dist/cjs/lib/components/NavigationMenu/NavigationMenuViewport.jsx +80 -0
- package/dist/cjs/lib/components/NavigationMenu/index.jsx +12 -0
- package/dist/cjs/lib/components/PieChart/index.jsx +70 -0
- package/dist/cjs/lib/components/Popover/PopoverClose.jsx +64 -0
- package/dist/cjs/lib/components/Popover/PopoverContent.jsx +92 -0
- package/dist/cjs/lib/components/Popover/PopoverRoot.jsx +55 -0
- package/dist/cjs/lib/components/Popover/PopoverTrigger.jsx +46 -0
- package/dist/cjs/lib/components/Popover/index.jsx +13 -0
- package/dist/cjs/lib/components/Progress/index.jsx +83 -0
- package/dist/cjs/lib/components/RadarChart/index.jsx +83 -0
- package/dist/cjs/lib/components/Radio/index.jsx +54 -0
- package/dist/cjs/lib/components/RadioCards/RadioCardsItem.jsx +70 -0
- package/dist/cjs/lib/components/RadioCards/RadioCardsRoot.jsx +77 -0
- package/dist/cjs/lib/components/RadioCards/index.jsx +9 -0
- package/dist/cjs/lib/components/RadioGroup/RadioGroupItem.jsx +62 -0
- package/dist/cjs/lib/components/RadioGroup/RadioGroupRoot.jsx +73 -0
- package/dist/cjs/lib/components/RadioGroup/index.jsx +9 -0
- package/dist/cjs/lib/components/ScrollArea/index.jsx +54 -0
- package/dist/cjs/lib/components/SegmentedControl/SegmentedControlItem.jsx +51 -0
- package/dist/cjs/lib/components/SegmentedControl/SegmentedControlRoot.jsx +79 -0
- package/dist/cjs/lib/components/SegmentedControl/index.jsx +9 -0
- package/dist/cjs/lib/components/Select/index.jsx +115 -0
- package/dist/cjs/lib/components/Separator/index.jsx +56 -0
- package/dist/cjs/lib/components/Skeleton/index.jsx +51 -0
- package/dist/cjs/lib/components/Slider/index.jsx +56 -0
- package/dist/cjs/lib/components/Spinner/index.jsx +56 -0
- package/dist/cjs/lib/components/TabNav/index.jsx +50 -0
- package/dist/cjs/lib/components/Table/index.jsx +119 -0
- package/dist/cjs/lib/components/Tabs/index.jsx +80 -0
- package/dist/cjs/lib/components/TextArea/index.jsx +65 -0
- package/dist/cjs/lib/components/TextField/index.jsx +67 -0
- package/dist/cjs/lib/components/Toast/ToastActionButton.jsx +97 -0
- package/dist/cjs/lib/components/Toast/ToastDescription.jsx +71 -0
- package/dist/cjs/lib/components/Toast/ToastRoot.jsx +123 -0
- package/dist/cjs/lib/components/Toast/ToastTitle.jsx +69 -0
- package/dist/cjs/lib/components/Toast/index.jsx +13 -0
- package/dist/cjs/lib/components/Toggle/ToggleWithText.jsx +86 -0
- package/dist/cjs/lib/components/Toggle/index.jsx +88 -0
- package/dist/cjs/lib/components/ToggleGroup/ToggleGroupItem.jsx +70 -0
- package/dist/cjs/lib/components/ToggleGroup/ToggleGroupRoot.jsx +79 -0
- package/dist/cjs/lib/components/ToggleGroup/index.jsx +9 -0
- package/dist/cjs/lib/components/ToggleSwitch/index.jsx +81 -0
- package/dist/cjs/lib/components/Tooltip/index.jsx +86 -0
- package/dist/cjs/lib/components/index.js +108 -0
- package/dist/cjs/lib/constants.js +950 -0
- package/dist/cjs/lib/index.js +18 -0
- package/dist/cjs/lib/types.js +2 -0
- package/dist/cjs/lib/utils/useDarkMode.js +53 -0
- package/dist/cjs/lib/utils/utils.js +14 -0
- package/dist/cjs/tailwind.config.js +169 -0
- package/dist/cjs/tsconfig.tsbuildinfo +1 -0
- package/dist/esm/tsconfig.tsbuildinfo +1 -0
- package/package.json +4 -4
- package/dist/esm/lib/src/app/layout.jsx +0 -13
- package/dist/esm/lib/src/app/page.jsx +0 -36
- package/dist/esm/lib/src/app/template/colorPicker.jsx +0 -19
- package/dist/esm/lib/src/app/template/theme.jsx +0 -17
- package/dist/esm/lib/src/stories/ToggleSwitch/ToggleSwitch.stories.jsx +0 -118
- package/dist/esm/lib/src/stories/Welcome.jsx +0 -68
- package/dist/esm/lib/src/stories/accordion/Accordion.stories.jsx +0 -81
- package/dist/esm/lib/src/stories/alert-dialog/AlertDialog.stories.jsx +0 -72
- package/dist/esm/lib/src/stories/aspect-ratio/AspectRatio.stories.jsx +0 -106
- package/dist/esm/lib/src/stories/avatar/Avatar.stories.jsx +0 -109
- package/dist/esm/lib/src/stories/badge/Badge.stories.jsx +0 -135
- package/dist/esm/lib/src/stories/bar-chart/BarChart.stories.jsx +0 -105
- package/dist/esm/lib/src/stories/bubble-chart/BubbleChart.stories.jsx +0 -175
- package/dist/esm/lib/src/stories/button/Button.stories.jsx +0 -105
- package/dist/esm/lib/src/stories/button/IconButton.stories.jsx +0 -110
- package/dist/esm/lib/src/stories/callout/Callout.stories.jsx +0 -202
- package/dist/esm/lib/src/stories/card/Card.stories.jsx +0 -156
- package/dist/esm/lib/src/stories/checkbox/Checkbox.stories.jsx +0 -174
- package/dist/esm/lib/src/stories/checkbox/CheckboxCard.stories.jsx +0 -138
- package/dist/esm/lib/src/stories/checkbox/CheckboxGroup.stories.jsx +0 -144
- package/dist/esm/lib/src/stories/context-menu/ContextMenu.stories.jsx +0 -156
- package/dist/esm/lib/src/stories/data-list/DataList.stories.jsx +0 -186
- package/dist/esm/lib/src/stories/dialog/Dialog.stories.jsx +0 -173
- package/dist/esm/lib/src/stories/doughnut-chart/DoughnutChart.stories.jsx +0 -118
- package/dist/esm/lib/src/stories/dropdown-menu/DropdownMenu.stories.jsx +0 -146
- package/dist/esm/lib/src/stories/header/Header.stories.jsx +0 -118
- package/dist/esm/lib/src/stories/hover-card/HoverCard.stories.jsx +0 -143
- package/dist/esm/lib/src/stories/inset/Inset.stories.jsx +0 -99
- package/dist/esm/lib/src/stories/label/Label.stories.jsx +0 -112
- package/dist/esm/lib/src/stories/line-chart/LineChart.stories.jsx +0 -234
- package/dist/esm/lib/src/stories/menubar/Menubar.stories.jsx +0 -274
- package/dist/esm/lib/src/stories/navigation-menu/NavigationMenu.stories.jsx +0 -237
- package/dist/esm/lib/src/stories/pie-chart/PieChart.stories.jsx +0 -144
- package/dist/esm/lib/src/stories/popover/Popover.stories.jsx +0 -128
- package/dist/esm/lib/src/stories/progress/Progress.stories.jsx +0 -81
- package/dist/esm/lib/src/stories/radar-chart/RadarChart.stories.jsx +0 -126
- package/dist/esm/lib/src/stories/radio/Radio.stories.jsx +0 -110
- package/dist/esm/lib/src/stories/radio/RadioCards.stories.jsx +0 -136
- package/dist/esm/lib/src/stories/radio/RadioGroup.stories.jsx +0 -125
- package/dist/esm/lib/src/stories/scroll-area/ScrollArea.stories.jsx +0 -197
- package/dist/esm/lib/src/stories/segmented-control/SegmentedControl.stories.jsx +0 -100
- package/dist/esm/lib/src/stories/select/Select.stories.jsx +0 -175
- package/dist/esm/lib/src/stories/separator/Separator.stories.jsx +0 -105
- package/dist/esm/lib/src/stories/skeleton/Skeleton.stories.jsx +0 -118
- package/dist/esm/lib/src/stories/slider/Slider.stories.jsx +0 -93
- package/dist/esm/lib/src/stories/spinner/Spinner.stories.jsx +0 -111
- package/dist/esm/lib/src/stories/tab-nav/TabNav.stories.jsx +0 -94
- package/dist/esm/lib/src/stories/table/Table.stories.jsx +0 -129
- package/dist/esm/lib/src/stories/tabs/Tabs.stories.jsx +0 -118
- package/dist/esm/lib/src/stories/text/Text.stories.jsx +0 -115
- package/dist/esm/lib/src/stories/textArea/TextArea.stories.jsx +0 -111
- package/dist/esm/lib/src/stories/textfield/TextField.stories.jsx +0 -122
- package/dist/esm/lib/src/stories/toast/Toast.stories.jsx +0 -197
- package/dist/esm/lib/src/stories/toggle/Toggle.stories.jsx +0 -106
- package/dist/esm/lib/src/stories/toggle/ToggleGroup.stories.jsx +0 -151
- package/dist/esm/lib/src/stories/tooltip/Tooltip.stories.jsx +0 -89
- package/dist/esm/lib/src/utils/chart.js +0 -572
- package/dist/esm/lib/src/utils/move.mjs +0 -46
- package/dist/esm/lib/src/utils/post-publish.mjs +0 -23
- package/dist/esm/lib/tsconfig.tsbuildinfo +0 -1
- /package/dist/esm/{lib/.storybook → .storybook}/main.js +0 -0
- /package/dist/esm/{lib/.storybook → .storybook}/manager.js +0 -0
- /package/dist/esm/{lib/.storybook → .storybook}/preview.jsx +0 -0
- /package/dist/esm/lib/{src/lib/Typography → Typography}/Header/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/Typography → Typography}/Text/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/Typography → Typography}/index.js +0 -0
- /package/dist/esm/lib/{src/lib/color → color}/alpha.js +0 -0
- /package/dist/esm/lib/{src/lib/color → color}/constants.js +0 -0
- /package/dist/esm/lib/{src/lib/color → color}/dark.js +0 -0
- /package/dist/esm/lib/{src/lib/color → color}/krdsColors.js +0 -0
- /package/dist/esm/lib/{src/lib/color → color}/light.js +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Accordion/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/AlertDialogAction.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/AlertDialogCancel.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/AlertDialogContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/AlertDialogDescription.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/AlertDialogRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/AlertDialogTitle.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/AlertDialogTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AlertDialog/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/AspectRatio/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Avatar/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Badge/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/BarChart/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/BubbleChart/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Button/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Callout/CalloutIcon.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Callout/CalloutRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Callout/CalloutText.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Callout/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Card/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Checkbox/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/CheckboxCard/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/CheckboxGroup/CheckboxGroupItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/CheckboxGroup/CheckboxGroupRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/CheckboxGroup/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuCheckboxItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuGroup.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuItemIndicator.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuLabel.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuRadioGroup.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuRadioItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuSeparator.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuSubContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuSubTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/ContextMenuTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ContextMenu/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DataList/DataListItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DataList/DataListLabel.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DataList/DataListRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DataList/DataListValue.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DataList/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogAction.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogCancel.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogDescription.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogSlot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogTitle.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/DialogTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Dialog/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DoughnutChart/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdonMenuRadioGroup.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdonMenuSubContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuCheckboxItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuItemIndicator.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuLable.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuRadioItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuSeparator.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuSub.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuSubTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/DropdownMenuTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/DropdownMenu/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/HoverCard/HoverCardContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/HoverCard/HoverCardRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/HoverCard/HoverCardTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/HoverCard/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/IconButton/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Inset/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Label/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/LineChart/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarCheckboxItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarItemIndicator.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarMenu.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarRadioGroup.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarRadioItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarSeparator.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarSub.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarSubContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarSubTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/MenubarTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Menubar/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuIndicator.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuLink.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuList.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/NavigationMenuViewport.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/NavigationMenu/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/PieChart/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Popover/PopoverClose.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Popover/PopoverContent.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Popover/PopoverRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Popover/PopoverTrigger.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Popover/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Progress/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/RadarChart/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Radio/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/RadioCards/RadioCardsItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/RadioCards/RadioCardsRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/RadioCards/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/RadioGroup/RadioGroupItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/RadioGroup/RadioGroupRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/RadioGroup/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ScrollArea/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/SegmentedControl/SegmentedControlItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/SegmentedControl/SegmentedControlRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/SegmentedControl/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Select/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Separator/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Skeleton/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Slider/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Spinner/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/TabNav/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Table/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Tabs/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/TextArea/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/TextField/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Toast/ToastActionButton.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Toast/ToastDescription.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Toast/ToastRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Toast/ToastTitle.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Toast/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Toggle/ToggleWithText.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Toggle/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ToggleGroup/ToggleGroupItem.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ToggleGroup/ToggleGroupRoot.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ToggleGroup/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/ToggleSwitch/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/Tooltip/index.jsx +0 -0
- /package/dist/esm/lib/{src/lib/components → components}/index.js +0 -0
- /package/dist/esm/lib/{src/lib/constants.js → constants.js} +0 -0
- /package/dist/esm/lib/{src/lib/index.js → index.js} +0 -0
- /package/dist/esm/lib/{src/lib/types.js → types.js} +0 -0
- /package/dist/esm/lib/{src/lib/utils → utils}/useDarkMode.js +0 -0
- /package/dist/esm/lib/{src/lib/utils → utils}/utils.js +0 -0
- /package/dist/esm/{lib/tailwind.config.js → tailwind.config.js} +0 -0
@@ -0,0 +1,950 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
15
|
+
}) : function(o, v) {
|
16
|
+
o["default"] = v;
|
17
|
+
});
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
19
|
+
if (mod && mod.__esModule) return mod;
|
20
|
+
var result = {};
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
22
|
+
__setModuleDefault(result, mod);
|
23
|
+
return result;
|
24
|
+
};
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
26
|
+
exports.selectAppearanceStyle = exports.checkboxAppearanceStyle = exports.switchCheckedApperanceStyle = exports.menuItemAppearanceStyle = exports.toggleAppearanceStyle = exports.appearanceStyle = exports.textColorStyle = exports.bgColorStyle = exports.primaryColorStyle = exports.blackText = exports.chartDatalabelsArgsTypes = exports.chartDatasetsArgsTypes = exports.chartLegendArgTypes = exports.chartTitleArgTypes = exports.chartColorStyle = exports.commonArgTypes = exports.scalingVariants = exports.weightVariants = exports.radiusVariants = exports.pointStyleList = exports.labelPositionList = exports.appearanceOptions = exports.themeOptions = exports.weightOptions = exports.sizeOptions = exports.scalingOptions = exports.typoSizeOptions = exports.radiusOptions = void 0;
|
27
|
+
var constants_1 = require("lib/color/constants");
|
28
|
+
var lightColors = __importStar(require("lib/color/light"));
|
29
|
+
exports.radiusOptions = ['none', 'small', 'medium', 'large', 'full'];
|
30
|
+
exports.typoSizeOptions = ['1', '2', '3', '4', '5', '6', '7', '8', '9'];
|
31
|
+
exports.scalingOptions = ['90%', '95%', '100%', '105%', '110%'];
|
32
|
+
exports.sizeOptions = ['x-small', 'small', 'medium', 'large', 'x-large'];
|
33
|
+
exports.weightOptions = ['regular', 'medium', 'semibold', 'bold'];
|
34
|
+
exports.themeOptions = ['light', 'dark'];
|
35
|
+
exports.appearanceOptions = [
|
36
|
+
'classic',
|
37
|
+
'ghost',
|
38
|
+
'outline',
|
39
|
+
'soft',
|
40
|
+
'solid',
|
41
|
+
'surface',
|
42
|
+
];
|
43
|
+
//차트
|
44
|
+
exports.labelPositionList = ['top', 'bottom', 'left', 'right'];
|
45
|
+
exports.pointStyleList = [
|
46
|
+
'circle',
|
47
|
+
'cross',
|
48
|
+
'crossRot',
|
49
|
+
'dash',
|
50
|
+
'line',
|
51
|
+
'rect',
|
52
|
+
'rectRounded',
|
53
|
+
'rectRot',
|
54
|
+
'star',
|
55
|
+
'triangle',
|
56
|
+
false,
|
57
|
+
];
|
58
|
+
exports.radiusVariants = {
|
59
|
+
// 체크박스
|
60
|
+
small: {
|
61
|
+
none: 'rounded-none',
|
62
|
+
small: 'rounded-[3px]',
|
63
|
+
medium: 'rounded',
|
64
|
+
large: 'rounded',
|
65
|
+
full: 'rounded',
|
66
|
+
},
|
67
|
+
// 라디오버튼, 스위치, 태그, 배지, 버튼, 텍스트인풋, 텍스트영역, 페이지네이션
|
68
|
+
base: {
|
69
|
+
none: 'rounded-none',
|
70
|
+
small: 'rounded-[3px]',
|
71
|
+
medium: 'rounded', // 4px
|
72
|
+
large: 'rounded-md', // 6px
|
73
|
+
full: 'rounded-full',
|
74
|
+
},
|
75
|
+
// 배너
|
76
|
+
large: {
|
77
|
+
none: 'rounded-none',
|
78
|
+
small: 'rounded',
|
79
|
+
medium: 'rounded-lg', // 8px
|
80
|
+
large: 'rounded-xl', // 12px
|
81
|
+
full: 'rounded-2xl', // 16px
|
82
|
+
},
|
83
|
+
// 다이얼로그, 바텀시트, 그리드, 카드
|
84
|
+
'extra-large': {
|
85
|
+
none: 'rounded-none',
|
86
|
+
small: 'rounded',
|
87
|
+
medium: 'rounded-lg',
|
88
|
+
large: 'rounded-xl',
|
89
|
+
full: 'rounded-xl',
|
90
|
+
},
|
91
|
+
// Dropdown, Context Menu 아이템
|
92
|
+
'menu-item': {
|
93
|
+
none: 'rounded-none',
|
94
|
+
small: 'rounded-[1px]',
|
95
|
+
medium: 'rounded-sm',
|
96
|
+
large: 'rounded',
|
97
|
+
full: 'rounded',
|
98
|
+
},
|
99
|
+
};
|
100
|
+
exports.weightVariants = {
|
101
|
+
regular: 'font-normal', // 400
|
102
|
+
medium: 'font-medium', // 500
|
103
|
+
semibold: 'font-semibold', // 600
|
104
|
+
bold: 'font-bold', // 700
|
105
|
+
};
|
106
|
+
exports.scalingVariants = {
|
107
|
+
'90%': 'scale-90',
|
108
|
+
'95%': 'scale-95',
|
109
|
+
'100%': 'scale-100',
|
110
|
+
'105%': 'scale-105',
|
111
|
+
'110%': 'scale-110',
|
112
|
+
};
|
113
|
+
// 스토리북 공통 argTypes 설정
|
114
|
+
exports.commonArgTypes = {
|
115
|
+
typoSize: {
|
116
|
+
table: {
|
117
|
+
category: 'Theme Props',
|
118
|
+
type: { summary: '1 ~ 9' },
|
119
|
+
},
|
120
|
+
control: { type: 'select' },
|
121
|
+
options: exports.typoSizeOptions,
|
122
|
+
defaultValue: { summary: '3' },
|
123
|
+
},
|
124
|
+
scaling: {
|
125
|
+
table: {
|
126
|
+
category: 'Theme Props',
|
127
|
+
type: { summary: exports.scalingOptions.join(' | ') },
|
128
|
+
},
|
129
|
+
control: { type: 'select' },
|
130
|
+
options: exports.scalingOptions,
|
131
|
+
defaultValue: { summary: '100%' },
|
132
|
+
},
|
133
|
+
weight: {
|
134
|
+
table: {
|
135
|
+
category: 'Theme Props',
|
136
|
+
type: { summary: exports.weightOptions.join(' | ') },
|
137
|
+
},
|
138
|
+
options: exports.weightOptions,
|
139
|
+
control: { type: 'select' },
|
140
|
+
defaultValue: { summary: 'medium' },
|
141
|
+
},
|
142
|
+
radius: {
|
143
|
+
table: {
|
144
|
+
category: 'Theme Props',
|
145
|
+
type: { summary: exports.radiusOptions.join(' | ') },
|
146
|
+
},
|
147
|
+
options: exports.radiusOptions,
|
148
|
+
control: { type: 'select' },
|
149
|
+
defaultValue: { summary: 'medium' },
|
150
|
+
},
|
151
|
+
color: {
|
152
|
+
table: {
|
153
|
+
category: 'Theme Props',
|
154
|
+
type: { summary: 'colorVariants' },
|
155
|
+
},
|
156
|
+
options: constants_1.colorOptions,
|
157
|
+
control: { type: 'select' },
|
158
|
+
defaultValue: { summary: 'red' },
|
159
|
+
},
|
160
|
+
basicText: {
|
161
|
+
table: {
|
162
|
+
category: 'Props',
|
163
|
+
type: { summary: 'string' },
|
164
|
+
},
|
165
|
+
control: 'text',
|
166
|
+
},
|
167
|
+
appearance: {
|
168
|
+
table: {
|
169
|
+
category: 'Props',
|
170
|
+
type: { summary: exports.appearanceOptions.join(' | ') },
|
171
|
+
},
|
172
|
+
options: exports.appearanceOptions,
|
173
|
+
control: { type: 'select' },
|
174
|
+
defaultValue: { summary: 'solid' },
|
175
|
+
},
|
176
|
+
size: {
|
177
|
+
table: {
|
178
|
+
category: 'Props',
|
179
|
+
type: { summary: exports.sizeOptions.join(' | ') },
|
180
|
+
},
|
181
|
+
control: { type: 'select' },
|
182
|
+
options: exports.sizeOptions,
|
183
|
+
defaultValue: { summary: 'medium' },
|
184
|
+
},
|
185
|
+
isColorMixed: {
|
186
|
+
table: {
|
187
|
+
category: 'Props',
|
188
|
+
type: { summary: 'boolean' },
|
189
|
+
},
|
190
|
+
description: "- \uCC28\uD2B8 \uAE30\uBCF8 \uC0C9\uC0C1 \uC2A4\uD0C0\uC77C \n - true\uC778 \uACBD\uC6B0 \uC0C9\uC0C1\uC774 \uAD50\uCC28\uB428, false\uC778 \uACBD\uC6B0 \uC0C9\uC0C1 \uC21C\uCC28\uC801\uC73C\uB85C \uC0AC\uC6A9",
|
191
|
+
control: 'readonly',
|
192
|
+
defaultValue: { summary: 'true' },
|
193
|
+
},
|
194
|
+
chartAppearance: {
|
195
|
+
table: {
|
196
|
+
category: 'Props',
|
197
|
+
type: { summary: 'solid | soft' },
|
198
|
+
},
|
199
|
+
options: ['solid', 'soft'],
|
200
|
+
control: 'readonly',
|
201
|
+
defaultValue: { summary: 'solid' },
|
202
|
+
description: "- \uCC28\uD2B8 \uAE30\uBCF8 \uC0C9\uC0C1 \uC2A4\uD0C0\uC77C \n - \uBC30\uACBD\uC0C9\uACFC \uD14C\uB450\uB9AC\uC0C9 \uAE30\uBCF8 \uC2A4\uD0C0\uC77C\uC744 \uC9C0\uC815\uD574\uC900\uB2E4",
|
203
|
+
},
|
204
|
+
datasets: {
|
205
|
+
name: 'datasets',
|
206
|
+
description: '차트에 사용할 데이터셋',
|
207
|
+
table: {
|
208
|
+
category: 'Props',
|
209
|
+
type: { summary: 'object' },
|
210
|
+
},
|
211
|
+
},
|
212
|
+
labels: {
|
213
|
+
description: '차트 위에 표시될 라벨들',
|
214
|
+
table: {
|
215
|
+
category: 'Props',
|
216
|
+
type: { summary: 'object' },
|
217
|
+
},
|
218
|
+
},
|
219
|
+
};
|
220
|
+
var chartColorStyle = function () {
|
221
|
+
var colorValues = lightColors;
|
222
|
+
var colorMappings = {};
|
223
|
+
constants_1.chartColorOptions.forEach(function (color) {
|
224
|
+
colorMappings[color] = colorValues[color][9];
|
225
|
+
});
|
226
|
+
return colorMappings;
|
227
|
+
};
|
228
|
+
exports.chartColorStyle = chartColorStyle;
|
229
|
+
exports.chartTitleArgTypes = {
|
230
|
+
title: {
|
231
|
+
description: '차트 타이틀',
|
232
|
+
table: {
|
233
|
+
category: 'Props',
|
234
|
+
type: { summary: 'object' },
|
235
|
+
},
|
236
|
+
},
|
237
|
+
'title.display': {
|
238
|
+
description: '타이틀 표시 여부',
|
239
|
+
table: {
|
240
|
+
category: 'Title Props',
|
241
|
+
type: { summary: 'boolean' },
|
242
|
+
},
|
243
|
+
control: { type: 'boolean', defaultValue: false },
|
244
|
+
defaultValue: { summary: false },
|
245
|
+
},
|
246
|
+
'title.text': {
|
247
|
+
description: '타이틀 내용',
|
248
|
+
table: {
|
249
|
+
category: 'Title Props',
|
250
|
+
type: { summary: 'string | string[]' },
|
251
|
+
},
|
252
|
+
control: { type: 'text' },
|
253
|
+
defaultValue: { summary: '' },
|
254
|
+
},
|
255
|
+
'title.position': {
|
256
|
+
description: '타이틀 위치',
|
257
|
+
table: {
|
258
|
+
category: 'Title Props',
|
259
|
+
type: { summary: 'top | right | bottom | left' },
|
260
|
+
},
|
261
|
+
control: { type: 'select' },
|
262
|
+
options: ['top', 'right', 'bottom', 'left'],
|
263
|
+
defaultValue: { summary: 'top' },
|
264
|
+
},
|
265
|
+
'title.align': {
|
266
|
+
description: '타이틀 정렬',
|
267
|
+
table: {
|
268
|
+
category: 'Title Props',
|
269
|
+
type: { summary: 'start | center | end' },
|
270
|
+
},
|
271
|
+
control: { type: 'select' },
|
272
|
+
options: ['start', 'center', 'end'],
|
273
|
+
defaultValue: { summary: 'top' },
|
274
|
+
},
|
275
|
+
'title.font.size': {
|
276
|
+
description: '타이틀 폰트 크기',
|
277
|
+
table: {
|
278
|
+
category: 'Title Props',
|
279
|
+
type: { summary: 'number' },
|
280
|
+
},
|
281
|
+
control: { type: 'text' },
|
282
|
+
defaultValue: { summary: 12 },
|
283
|
+
},
|
284
|
+
};
|
285
|
+
exports.chartLegendArgTypes = {
|
286
|
+
legend: {
|
287
|
+
description: '차트 범례',
|
288
|
+
table: {
|
289
|
+
category: 'Props',
|
290
|
+
type: { summary: 'object' },
|
291
|
+
},
|
292
|
+
},
|
293
|
+
'legend.display': {
|
294
|
+
description: '범례 표시 여부',
|
295
|
+
table: {
|
296
|
+
category: 'Legend Props',
|
297
|
+
type: { summary: 'boolean' },
|
298
|
+
},
|
299
|
+
control: { type: 'boolean' },
|
300
|
+
defaultValue: { summary: true },
|
301
|
+
},
|
302
|
+
'legend.align': {
|
303
|
+
description: '범례 정렬',
|
304
|
+
table: {
|
305
|
+
category: 'Legend Props',
|
306
|
+
type: { summary: 'start | center | end' },
|
307
|
+
},
|
308
|
+
control: { type: 'select' },
|
309
|
+
options: ['start', 'center', 'end'],
|
310
|
+
defaultValue: { summary: 'center' },
|
311
|
+
},
|
312
|
+
'legend.position': {
|
313
|
+
description: '범례 위치',
|
314
|
+
table: {
|
315
|
+
category: 'Legend Props',
|
316
|
+
type: { summary: 'top | right | bottom | left' },
|
317
|
+
},
|
318
|
+
control: { type: 'select' },
|
319
|
+
options: ['top', 'right', 'bottom', 'left'],
|
320
|
+
defaultValue: { summary: 'top' },
|
321
|
+
},
|
322
|
+
'legend.maxHeight': {
|
323
|
+
description: '범례 최대 높이(픽셀)',
|
324
|
+
table: {
|
325
|
+
category: 'Legend Props',
|
326
|
+
type: { summary: 'number' },
|
327
|
+
},
|
328
|
+
control: { type: 'text' },
|
329
|
+
defaultValue: { summary: 12 },
|
330
|
+
},
|
331
|
+
'legend.maxWidth': {
|
332
|
+
description: '범례 최대 길이(픽셀)',
|
333
|
+
table: {
|
334
|
+
category: 'Legend Props',
|
335
|
+
type: { summary: 'number' },
|
336
|
+
},
|
337
|
+
control: { type: 'text' },
|
338
|
+
defaultValue: { summary: 12 },
|
339
|
+
},
|
340
|
+
'legend.title.display': {
|
341
|
+
description: '범례 타이틀 표시 여부',
|
342
|
+
table: {
|
343
|
+
category: 'Legend Props',
|
344
|
+
type: { summary: 'boolean' },
|
345
|
+
},
|
346
|
+
control: { type: 'boolean' },
|
347
|
+
defaultValue: { summary: false },
|
348
|
+
},
|
349
|
+
'legend.title.text': {
|
350
|
+
description: '범례 타이틀 문구',
|
351
|
+
table: {
|
352
|
+
category: 'Legend Props',
|
353
|
+
type: { summary: 'string' },
|
354
|
+
},
|
355
|
+
control: { type: 'text' },
|
356
|
+
defaultValue: { summary: '' },
|
357
|
+
},
|
358
|
+
'legend.labels.usePointStyle': {
|
359
|
+
description: '범례 스타일 사용여부',
|
360
|
+
table: {
|
361
|
+
category: 'Legend Props',
|
362
|
+
type: { summary: 'boolean' },
|
363
|
+
},
|
364
|
+
control: { type: 'boolean' },
|
365
|
+
defaultValue: { summary: 'false' },
|
366
|
+
},
|
367
|
+
'legend.labels.pointStyle': {
|
368
|
+
description: "- \uB77C\uBCA8 \uD3EC\uC778\uD2B8 \uC2A4\uD0C0\uC77C\n - usePointStyle\uAC00 true\uC778 \uACBD\uC6B0 \uC801\uC6A9",
|
369
|
+
table: {
|
370
|
+
category: 'Legend Props',
|
371
|
+
type: { summary: exports.pointStyleList.join(' | ') },
|
372
|
+
},
|
373
|
+
control: { type: 'select' },
|
374
|
+
options: exports.pointStyleList,
|
375
|
+
defaultValue: { summary: 'false' },
|
376
|
+
},
|
377
|
+
};
|
378
|
+
exports.chartDatasetsArgsTypes = {
|
379
|
+
'datasets[n].data': {
|
380
|
+
description: '데이터셋 데이터',
|
381
|
+
table: {
|
382
|
+
category: 'Dataset Props',
|
383
|
+
type: { summary: 'object | object[] | number[] | string[]' },
|
384
|
+
},
|
385
|
+
},
|
386
|
+
'datasets[n].label': {
|
387
|
+
description: '데이터셋 라벨',
|
388
|
+
table: {
|
389
|
+
category: 'Dataset Props',
|
390
|
+
type: { summary: 'string' },
|
391
|
+
},
|
392
|
+
},
|
393
|
+
'datasets[n].backgroundColor': {
|
394
|
+
description: '데이터셋 배경 색상',
|
395
|
+
table: {
|
396
|
+
category: 'Dataset Props',
|
397
|
+
type: { summary: 'object' },
|
398
|
+
},
|
399
|
+
},
|
400
|
+
'datasets[n].borderColor': {
|
401
|
+
description: '데이터셋 테두리 색상',
|
402
|
+
table: {
|
403
|
+
category: 'Dataset Props',
|
404
|
+
type: { summary: 'object' },
|
405
|
+
},
|
406
|
+
},
|
407
|
+
'datasets[n].borderWidth': {
|
408
|
+
description: '데이터셋 테두리 두꼐',
|
409
|
+
table: {
|
410
|
+
category: 'Dataset Props',
|
411
|
+
type: { summary: 'number' },
|
412
|
+
},
|
413
|
+
},
|
414
|
+
'datasets[n].borderRadius': {
|
415
|
+
description: '데이터셋 둥글기',
|
416
|
+
table: {
|
417
|
+
category: 'Dataset Props',
|
418
|
+
type: { summary: 'number' },
|
419
|
+
},
|
420
|
+
},
|
421
|
+
'datasets[n].hoverBackgroundColor': {
|
422
|
+
description: '데이터셋 마우스 호버 시 배경 색상',
|
423
|
+
table: {
|
424
|
+
category: 'Dataset Props',
|
425
|
+
type: { summary: 'object' },
|
426
|
+
},
|
427
|
+
},
|
428
|
+
'datasets[n].hoverBorderColor': {
|
429
|
+
description: '데이터셋 마우스 호버 시 테두리 색상',
|
430
|
+
table: {
|
431
|
+
category: 'Dataset Props',
|
432
|
+
type: { summary: 'object' },
|
433
|
+
},
|
434
|
+
},
|
435
|
+
'datasets[n].hoverBorderWidth': {
|
436
|
+
description: '데이터셋 호버 시 테두리 두께',
|
437
|
+
table: {
|
438
|
+
category: 'Dataset Props',
|
439
|
+
type: { summary: 'number' },
|
440
|
+
},
|
441
|
+
},
|
442
|
+
'datasets[n].hoverBorderRadius': {
|
443
|
+
description: '데이터셋 호버 시 둥글기',
|
444
|
+
table: {
|
445
|
+
category: 'Dataset Props',
|
446
|
+
type: { summary: 'number' },
|
447
|
+
},
|
448
|
+
},
|
449
|
+
'datasets[n].order': {
|
450
|
+
description: '데이터셋 순서',
|
451
|
+
table: {
|
452
|
+
category: 'Dataset Props',
|
453
|
+
type: { summary: 'number' },
|
454
|
+
},
|
455
|
+
},
|
456
|
+
'datasets[n].hidden': {
|
457
|
+
description: '데이터셋 표시 여부',
|
458
|
+
table: {
|
459
|
+
category: 'Dataset Props',
|
460
|
+
type: { summary: 'boolean' },
|
461
|
+
},
|
462
|
+
},
|
463
|
+
'datasets[n].borderDash': {
|
464
|
+
description: "- \uCC28\uD2B8\uC758 \uAC01 \uC139\uC158\uC758 \uD14C\uB450\uB9AC\uB97C \uC810\uC120\uC73C\uB85C \uB9CC\uB4EC\n - ex)[5,5]: 5\uD53D\uC140 \uAE38\uC774\uC758 \uC120\uACFC 5\uD53D\uC140 \uAE38\uC774\uC758 \uAC04\uACA9",
|
465
|
+
table: {
|
466
|
+
category: 'Dataset Props',
|
467
|
+
type: { summary: 'number[]' },
|
468
|
+
},
|
469
|
+
},
|
470
|
+
'datasets[n].borderDashOffset': {
|
471
|
+
description: "- \uC810\uC120\uC758 \uC2DC\uC791 \uC704\uCE58 \uC870\uC815\n - ex) 2: \uC810\uC120\uC758 \uC2DC\uC791 \uC9C0\uC810\uC744 2\uD53D\uC140 \uC774\uB3D9",
|
472
|
+
table: {
|
473
|
+
category: 'Dataset Props',
|
474
|
+
type: { summary: 'number' },
|
475
|
+
},
|
476
|
+
},
|
477
|
+
'datasets[n].offset': {
|
478
|
+
description: '각 섹션 사이의 간격 조정',
|
479
|
+
table: {
|
480
|
+
category: 'Dataset Props',
|
481
|
+
type: { summary: 'number' },
|
482
|
+
},
|
483
|
+
},
|
484
|
+
'datasets[n].weight': {
|
485
|
+
description: '각 섹션의 상대적인 두께를 설정, 섹션이 차지하는 공간의 비율을 조정',
|
486
|
+
table: {
|
487
|
+
category: 'Dataset Props',
|
488
|
+
type: { summary: 'number' },
|
489
|
+
},
|
490
|
+
},
|
491
|
+
};
|
492
|
+
exports.chartDatalabelsArgsTypes = {
|
493
|
+
datalabels: {
|
494
|
+
table: {
|
495
|
+
disable: true,
|
496
|
+
},
|
497
|
+
},
|
498
|
+
'datalabels.display': {
|
499
|
+
description: '차트 데이터 라벨 표시 여부',
|
500
|
+
table: {
|
501
|
+
category: 'Datalabels Props',
|
502
|
+
type: { summary: 'boolean' },
|
503
|
+
},
|
504
|
+
control: { type: 'boolean' },
|
505
|
+
defaultValue: { summary: false },
|
506
|
+
},
|
507
|
+
'datalabels.color': {
|
508
|
+
description: '차트 데이터 라벨 색상',
|
509
|
+
table: {
|
510
|
+
category: 'Datalabels Props',
|
511
|
+
type: { summary: 'string' },
|
512
|
+
},
|
513
|
+
control: { type: 'select' },
|
514
|
+
options: ['white', 'gray', 'black'],
|
515
|
+
defaultValue: { summary: 'gray' },
|
516
|
+
},
|
517
|
+
};
|
518
|
+
exports.blackText = ['sky', 'mint', 'lime', 'yellow', 'amber', 'orange', 'white'];
|
519
|
+
var primaryColorStyle = function () {
|
520
|
+
var color = {};
|
521
|
+
for (var i in constants_1.ColorStyle) {
|
522
|
+
var darkColor = "".concat(i, "Dark");
|
523
|
+
color[i] = exports.blackText.includes(i)
|
524
|
+
? "bg-".concat(constants_1.ColorStyle[i], " text-slate-12 dark:bg-").concat(constants_1.DarkColorStyle[darkColor], " dark:text-slateDark-12")
|
525
|
+
: "bg-".concat(constants_1.ColorStyle[i], " text-white dark:bg-").concat(constants_1.DarkColorStyle[darkColor], " dark:text-slateDark-1");
|
526
|
+
}
|
527
|
+
return color;
|
528
|
+
};
|
529
|
+
exports.primaryColorStyle = primaryColorStyle;
|
530
|
+
var bgColorStyle = function () {
|
531
|
+
var color = {};
|
532
|
+
for (var i in constants_1.ColorStyle) {
|
533
|
+
var darkColor = "".concat(i, "Dark");
|
534
|
+
color[i] = "bg-".concat(constants_1.ColorStyle[i], " dark:bg-").concat(constants_1.DarkColorStyle[darkColor]);
|
535
|
+
}
|
536
|
+
return color;
|
537
|
+
};
|
538
|
+
exports.bgColorStyle = bgColorStyle;
|
539
|
+
var textColorStyle = function () {
|
540
|
+
var color = {};
|
541
|
+
for (var i in constants_1.ColorStyle) {
|
542
|
+
var darkColor = "".concat(i, "Dark");
|
543
|
+
color[i] = "text-".concat(constants_1.ColorStyle[i], " dark:text-").concat(constants_1.DarkColorStyle[darkColor]);
|
544
|
+
}
|
545
|
+
return color;
|
546
|
+
};
|
547
|
+
exports.textColorStyle = textColorStyle;
|
548
|
+
var makeClassName = function (type, isClickable) {
|
549
|
+
var className = '';
|
550
|
+
className += "".concat(type.light.default, " ").concat(type.dark.default);
|
551
|
+
if (isClickable) {
|
552
|
+
className += " ".concat(type.light.hover, " ").concat(type.light.active, " ").concat(type.light.disable, " ").concat(type.dark.hover, " ").concat(type.dark.active, " ").concat(type.dark.disable);
|
553
|
+
}
|
554
|
+
return className;
|
555
|
+
};
|
556
|
+
var appearanceStyle = function (type, color, isClickable) {
|
557
|
+
if (isClickable === void 0) { isClickable = true; }
|
558
|
+
var darkColor = "".concat(color, "Dark");
|
559
|
+
var classic = {
|
560
|
+
light: {
|
561
|
+
default: "bg-".concat(color, "-9 border border-solid border-").concat(color, "-9 shadow-button-classic"),
|
562
|
+
hover: "hover:bg-".concat(color, "-10 hover:border-").concat(color, "-9"),
|
563
|
+
active: "active:bg-".concat(color, "-9 active:border-").concat(color, "-9"),
|
564
|
+
disable: "disabled:bg-slateA-3 disabled:border-slate-4 disabled:text-slateA-8",
|
565
|
+
},
|
566
|
+
dark: {
|
567
|
+
default: "dark:bg-".concat(darkColor, "-9 dark:border-").concat(darkColor, "-9 dark:shadow-button-dark-classic"),
|
568
|
+
hover: "dark:hover:bg-".concat(darkColor, "-10 dark:hover:border-").concat(darkColor, "-9"),
|
569
|
+
active: "dark:active:bg-".concat(darkColor, "-9 dark:active:border-").concat(darkColor, "-9"),
|
570
|
+
disable: "dark:disabled:bg-slateDarkA-3 dark:disabled:border-slateDark-4 dark:disabled:text-slateDarkA-8",
|
571
|
+
},
|
572
|
+
};
|
573
|
+
var solid = {
|
574
|
+
light: {
|
575
|
+
default: "bg-".concat(color, "-9 border-none"),
|
576
|
+
hover: "hover:bg-".concat(color, "-10 hover:border-none"),
|
577
|
+
active: "active:bg-".concat(color, "-10 active:border-none active:opacity-[.92]"),
|
578
|
+
disable: "disabled:bg-slateA-3 disabled:border-none disabled:text-slateA-8",
|
579
|
+
},
|
580
|
+
dark: {
|
581
|
+
default: "dark:bg-".concat(darkColor, "-9"),
|
582
|
+
hover: "dark:hover:bg-".concat(darkColor, "-10"),
|
583
|
+
active: "dark:active:bg-".concat(darkColor, "-10 dark:active:opacity-[.92]"),
|
584
|
+
disable: "dark:disabled:bg-slateDarkA-3 dark:disabled:text-slateDarkA-8",
|
585
|
+
},
|
586
|
+
};
|
587
|
+
var soft = {
|
588
|
+
light: {
|
589
|
+
default: "bg-".concat(color, "A-3 border-none text-").concat(color, "A-11"),
|
590
|
+
hover: "hover:bg-".concat(color, "A-4 hover:border-none hover:text-").concat(color, "A-11"),
|
591
|
+
active: "active:bg-".concat(color, "A-5 active:border-none active:text-").concat(color, "A-11 active:opacity-[.92]"),
|
592
|
+
disable: "disabled:bg-slateA-3 disabled:border-none disabled:text-slateA-8",
|
593
|
+
},
|
594
|
+
dark: {
|
595
|
+
default: "dark:bg-".concat(darkColor, "A-3 dark:text-").concat(darkColor, "A-11"),
|
596
|
+
hover: "dark:hover:bg-".concat(darkColor, "A-4 dark:hover:text-").concat(darkColor, "A-11"),
|
597
|
+
active: "dark:active:bg-".concat(darkColor, "A-5 dark:active:text-").concat(darkColor, "A-11 dark:active:opacity-[.92]"),
|
598
|
+
disable: "dark:disabled:bg-slateDarkA-3 dark:disabled:text-slateDarkA-8",
|
599
|
+
},
|
600
|
+
};
|
601
|
+
var surface = {
|
602
|
+
light: {
|
603
|
+
default: "bg-".concat(color, "A-2 border border-solid border-").concat(color, "A-7 text-").concat(color, "A-11"),
|
604
|
+
hover: "hover:bg-".concat(color, "A-2 hover:border-").concat(color, "A-8 hover:text-").concat(color, "A-11"),
|
605
|
+
active: "active:bg-".concat(color, "A-3 active:border-").concat(color, "A-8 active:text-").concat(color, "A-11 active:opacity-[.92]"),
|
606
|
+
disable: "disabled:bg-slateA-2 disabled:border-slateA-6 disabled:text-slateA-8",
|
607
|
+
},
|
608
|
+
dark: {
|
609
|
+
default: "dark:bg-".concat(darkColor, "A-2 dark:border-").concat(darkColor, "A-7 dark:text-").concat(darkColor, "A-11"),
|
610
|
+
hover: "dark:hover:bg-".concat(darkColor, "A-2 dark:hover:border-").concat(darkColor, "A-8 dark:hover:text-").concat(darkColor, "A-11"),
|
611
|
+
active: "dark:active:bg-".concat(darkColor, "A-3 dark:active:border-").concat(darkColor, "A-8 dark:active:text-").concat(darkColor, "A-11 dark:active:opacity-[.92]"),
|
612
|
+
disable: "dark:disabled:bg-slateDarkA-2 dark:disabled:border-slateDarkA-6 dark:disabled:text-slateDarkA-8",
|
613
|
+
},
|
614
|
+
};
|
615
|
+
var outline = {
|
616
|
+
light: {
|
617
|
+
default: "bg-transparent border border-solid border-".concat(color, "A-8 text-").concat(color, "A-11"),
|
618
|
+
hover: "hover:bg-".concat(color, "A-2 hover:border-").concat(color, "A-8 hover:text-").concat(color, "A-11"),
|
619
|
+
active: "active:bg-".concat(color, "A-3 active:border-").concat(color, "A-8 active:text-").concat(color, "A-11"),
|
620
|
+
disable: "disabled:bg-transparent disabled:border-slateA-7 disabled:text-slateA-8",
|
621
|
+
},
|
622
|
+
dark: {
|
623
|
+
default: "dark:border-".concat(darkColor, "A-8 dark:bg-transparent dark:text-").concat(darkColor, "A-11"),
|
624
|
+
hover: "dark:hover:bg-".concat(darkColor, "A-2 dark:hover:border-").concat(darkColor, "A-8 dark:hover:text-").concat(darkColor, "A-11"),
|
625
|
+
active: "dark:active:bg-".concat(darkColor, "A-3 dark:active:border-").concat(darkColor, "A-8 dark:active:text-").concat(darkColor, "A-11 dark:active:opacity-[.92]"),
|
626
|
+
disable: "dark:disabled:border-slateDarkA-7 dark:disabled:bg-transparent dark:disabled:text-slateDarkA-8 ",
|
627
|
+
},
|
628
|
+
};
|
629
|
+
var ghost = {
|
630
|
+
light: {
|
631
|
+
default: "bg-transparent border-none text-".concat(color, "A-11"),
|
632
|
+
hover: "hover:bg-".concat(color, "A-3 hover:border-none hover:text-").concat(color, "A-11"),
|
633
|
+
active: "active:bg-".concat(color, "A-4 active:border-none active:text-").concat(color, "A-11 active:opacity-[.92]"),
|
634
|
+
disable: "disabled:bg-transparent disabled:border-none disabled:text-slateA-8",
|
635
|
+
},
|
636
|
+
dark: {
|
637
|
+
default: "dark:bg-transparent dark:text-".concat(darkColor, "A-11"),
|
638
|
+
hover: "dark:hover:bg-".concat(darkColor, "A-3 dark:hover:text-").concat(darkColor, "A-11"),
|
639
|
+
active: "dark:active:bg-".concat(darkColor, "A-4 dark:active:text-").concat(darkColor, "A-11 dark:active:opacity-[.92]"),
|
640
|
+
disable: "dark:disabled:text-slateDarkA-8",
|
641
|
+
},
|
642
|
+
};
|
643
|
+
switch (type) {
|
644
|
+
case 'classic':
|
645
|
+
return makeClassName(classic, isClickable);
|
646
|
+
case 'solid':
|
647
|
+
return makeClassName(solid, isClickable);
|
648
|
+
case 'soft':
|
649
|
+
return makeClassName(soft, isClickable);
|
650
|
+
case 'surface':
|
651
|
+
return makeClassName(surface, isClickable);
|
652
|
+
case 'outline':
|
653
|
+
return makeClassName(outline, isClickable);
|
654
|
+
case 'ghost':
|
655
|
+
return makeClassName(ghost, isClickable);
|
656
|
+
default:
|
657
|
+
return '';
|
658
|
+
}
|
659
|
+
};
|
660
|
+
exports.appearanceStyle = appearanceStyle;
|
661
|
+
var toggleAppearanceStyle = function (type, color, isClickable, stateOn) {
|
662
|
+
if (isClickable === void 0) { isClickable = true; }
|
663
|
+
if (stateOn === void 0) { stateOn = ''; }
|
664
|
+
var darkColor = "".concat(color, "Dark");
|
665
|
+
var classic = {
|
666
|
+
light: {
|
667
|
+
default: "bg-".concat(color, "-9 border border-solid border-").concat(color, "-9 text-white shadow-button-classic"),
|
668
|
+
hover: "hover:bg-".concat(color, "-10 hover:border-").concat(color, "-9 hover:text-white ").concat(stateOn, "hover:bg-").concat(color, "-10 ").concat(stateOn, "hover:border-").concat(color, "-9 ").concat(stateOn, "hover:text-white"),
|
669
|
+
active: "".concat(stateOn, "bg-").concat(color, "-9 ").concat(stateOn, "border-").concat(color, "-9 ").concat(stateOn, "text-white"),
|
670
|
+
disable: "disabled:bg-slateA-3 disabled:border-slate-4 disabled:text-slateA-8",
|
671
|
+
},
|
672
|
+
dark: {
|
673
|
+
default: "dark:bg-".concat(darkColor, "-9 dark:border-").concat(darkColor, "-9 dark:text-slateDark-1"),
|
674
|
+
hover: "dark:hover:bg-".concat(darkColor, "-10 dark:hover:border-").concat(darkColor, "-9 dark:hover:text-slateDark-1 ").concat(stateOn, "dark:hover:bg-").concat(darkColor, "-10 ").concat(stateOn, "dark:hover:border-").concat(darkColor, "-9 ").concat(stateOn, "dark:hover:text-slateDark-1"),
|
675
|
+
active: "dark:".concat(stateOn, "bg-").concat(darkColor, "-9 dark:").concat(stateOn, "border-").concat(darkColor, "-9 dark:").concat(stateOn, "text-slateDark-1"),
|
676
|
+
disable: "dark:disabled:bg-slateDarkA-3 dark:disabled:border-slateDark-4 dark:disabled:text-slateDarkA-8",
|
677
|
+
},
|
678
|
+
};
|
679
|
+
var solid = {
|
680
|
+
light: {
|
681
|
+
default: "bg-".concat(color, "-9 border-none text-white"),
|
682
|
+
hover: "hover:bg-".concat(color, "-10 hover:border-none hover:text-white ").concat(stateOn, "hover:bg-").concat(color, "-10 ").concat(stateOn, "hover:border-none ").concat(stateOn, "hover:text-white"),
|
683
|
+
active: "".concat(stateOn, "bg-").concat(color, "-10 ").concat(stateOn, "border-none ").concat(stateOn, "text-white ").concat(stateOn, "opacity-[.92]"),
|
684
|
+
disable: "disabled:bg-slateA-3 disabled:border-none disabled:text-slateA-8",
|
685
|
+
},
|
686
|
+
dark: {
|
687
|
+
default: "dark:bg-".concat(darkColor, "-9 dark:text-slateDark-1"),
|
688
|
+
hover: "dark:hover:bg-".concat(darkColor, "-10 dark:hover:text-slateDark-1 ").concat(stateOn, "dark:hover:bg-").concat(darkColor, "-10 ").concat(stateOn, "dark:hover:text-slateDark-1"),
|
689
|
+
active: "dark:".concat(stateOn, "bg-").concat(darkColor, "-10 dark:").concat(stateOn, "text-slateDark-1 dark:").concat(stateOn, "opacity-[.92]"),
|
690
|
+
disable: "dark:disabled:bg-slateDarkA-3 disabled:text-slateDarkA-8",
|
691
|
+
},
|
692
|
+
};
|
693
|
+
var soft = {
|
694
|
+
light: {
|
695
|
+
default: "bg-".concat(color, "A-3 border-none text-").concat(color, "A-11"),
|
696
|
+
hover: "hover:bg-".concat(color, "A-4 hover:border-none hover:text-").concat(color, "A-11 ").concat(stateOn, "hover:bg-").concat(color, "A-4 ").concat(stateOn, "hover:border-none ").concat(stateOn, "hover:text-").concat(color, "A-11"),
|
697
|
+
active: "".concat(stateOn, "bg-").concat(color, "A-5 ").concat(stateOn, "border-none ").concat(stateOn, "text-").concat(color, "A-11 ").concat(stateOn, "opacity-[.92]"),
|
698
|
+
disable: "disabled:bg-slateA-3 disabled:border-none disabled:text-slateA-8",
|
699
|
+
},
|
700
|
+
dark: {
|
701
|
+
default: "dark:bg-".concat(darkColor, "A-3 dark:text-").concat(darkColor, "A-11"),
|
702
|
+
hover: "dark:hover:bg-".concat(darkColor, "A-4 dark:hover:text-").concat(darkColor, "A-11 ").concat(stateOn, "dark:hover:bg-").concat(darkColor, "A-4 ").concat(stateOn, "dark:hover:text-").concat(darkColor, "A-11"),
|
703
|
+
active: "dark:".concat(stateOn, "bg-").concat(darkColor, "A-5 dark:").concat(stateOn, "text-").concat(darkColor, "A-11 dark:").concat(stateOn, "opacity-[.92]"),
|
704
|
+
disable: "dark:disabled:bg-slateDarkA-3 dark:disabled:text-slateDarkA-8",
|
705
|
+
},
|
706
|
+
};
|
707
|
+
var surface = {
|
708
|
+
light: {
|
709
|
+
default: "bg-".concat(color, "A-2 border border-solid border-").concat(color, "A-7 text-").concat(color, "A-11"),
|
710
|
+
hover: "hover:bg-".concat(color, "A-2 hover:border-").concat(color, "A-8 hover:text-").concat(color, "A-11 ").concat(stateOn, "hover:bg-").concat(color, "A-2 ").concat(stateOn, "hover:border-").concat(color, "A-8 ").concat(stateOn, "hover:text-").concat(color, "A-11"),
|
711
|
+
active: "".concat(stateOn, "bg-").concat(color, "A-3 ").concat(stateOn, "border-").concat(color, "A-8 ").concat(stateOn, "text-").concat(color, "A-11 ").concat(stateOn, "opacity-[.92]"),
|
712
|
+
disable: "disabled:bg-slatDarkeA-2 disabled:border-slateDarkA-6 disabled:text-slateDarkA-8",
|
713
|
+
},
|
714
|
+
dark: {
|
715
|
+
default: "dark:bg-".concat(darkColor, "A-2 dark:border-").concat(darkColor, "A-7 dark:text-").concat(darkColor, "A-11"),
|
716
|
+
hover: "dark:hover:bg-".concat(darkColor, "A-2 dark:hover:border-").concat(darkColor, "A-8 dark:hover:text-").concat(darkColor, "A-11 ").concat(stateOn, "dark:hover:bg-").concat(darkColor, "A-2 ").concat(stateOn, "dark:hover:border-").concat(darkColor, "A-8 ").concat(stateOn, "dark:hover:text-").concat(darkColor, "A-11"),
|
717
|
+
active: "dark:".concat(stateOn, "bg-").concat(darkColor, "A-3 dark:").concat(stateOn, "border-").concat(darkColor, "A-8 dark:").concat(stateOn, "text-").concat(darkColor, "A-11 dark:").concat(stateOn, "opacity-[.92]"),
|
718
|
+
disable: "dark:disabled:bg-slateDarkA-2 dark:disabled:border-slateDarkA-6 dark:disabled:text-slateDarkA-8",
|
719
|
+
},
|
720
|
+
};
|
721
|
+
var outline = {
|
722
|
+
light: {
|
723
|
+
default: "bg-transparent border border-solid border-".concat(color, "A-8 text-").concat(color, "A-11"),
|
724
|
+
hover: "hover:bg-".concat(color, "A-2 hover:border-").concat(color, "A-8 hover:text-").concat(color, "A-11 ").concat(stateOn, "hover:bg-").concat(color, "A-2 ").concat(stateOn, "hover:border-").concat(color, "A-8 ").concat(stateOn, "hover:text-").concat(color, "A-11"),
|
725
|
+
active: "".concat(stateOn, "bg-").concat(color, "A-3 ").concat(stateOn, "border-").concat(color, "A-8 ").concat(stateOn, "text-").concat(color, "A-11"),
|
726
|
+
disable: "disabled:bg-transparent disabled:border-slateA-7 disabled:text-slateA-8",
|
727
|
+
},
|
728
|
+
dark: {
|
729
|
+
default: "dark:border-".concat(darkColor, "A-8 dark:text-").concat(darkColor, "A-11"),
|
730
|
+
hover: "dark:hover:bg-".concat(darkColor, "A-2 dark:hover:border-").concat(darkColor, "A-8 dark:hover:text-").concat(darkColor, "A-11 ").concat(stateOn, "dark:hover:bg-").concat(darkColor, "A-2 ").concat(stateOn, "dark:hover:border-").concat(darkColor, "A-8 ").concat(stateOn, "dark:hover:text-").concat(darkColor, "A-11"),
|
731
|
+
active: "dark:".concat(stateOn, "bg-").concat(darkColor, "A-3 dark:").concat(stateOn, "border-").concat(darkColor, "A-8 dark:").concat(stateOn, "text-").concat(darkColor, "A-11 dark:").concat(stateOn, "opacity-[.92]"),
|
732
|
+
disable: "dark:disabled:border-slateDarkA-7 dark:disabled:text-slateDarkA-8",
|
733
|
+
},
|
734
|
+
};
|
735
|
+
var ghost = {
|
736
|
+
light: {
|
737
|
+
default: "bg-transparent border-none text-".concat(color, "A-11"),
|
738
|
+
hover: "hover:bg-".concat(color, "A-3 hover:border-none hover:text-").concat(color, "A-11 ").concat(stateOn, "hover:bg-").concat(color, "A-3 ").concat(stateOn, "hover:border-none ").concat(stateOn, "hover:text-").concat(color, "A-11"),
|
739
|
+
active: "".concat(stateOn, "bg-").concat(color, "A-4 ").concat(stateOn, "border-none ").concat(stateOn, "text-").concat(color, "A-11 ").concat(stateOn, "opacity-[.92]"),
|
740
|
+
disable: "disabled:bg-transparent disabled:border-none disabled:text-slateA-8",
|
741
|
+
},
|
742
|
+
dark: {
|
743
|
+
default: "dark:bg-transparent dark:text-".concat(darkColor, "A-11"),
|
744
|
+
hover: "dark:hover:bg-".concat(darkColor, "A-3 dark:hover:text-").concat(darkColor, "A-11 ").concat(stateOn, "dark:hover:bg-").concat(darkColor, "A-3 ").concat(stateOn, "dark:hover:text-").concat(darkColor, "A-11"),
|
745
|
+
active: "dark:".concat(stateOn, "bg-").concat(darkColor, "A-4 dark:").concat(stateOn, "text-").concat(darkColor, "A-11 dark:").concat(stateOn, "opacity-[.92]"),
|
746
|
+
disable: "dark:disabled:text-slateDarkA-8",
|
747
|
+
},
|
748
|
+
};
|
749
|
+
switch (type) {
|
750
|
+
case 'classic':
|
751
|
+
return makeClassName(classic, isClickable);
|
752
|
+
case 'solid':
|
753
|
+
return makeClassName(solid, isClickable);
|
754
|
+
case 'soft':
|
755
|
+
return makeClassName(soft, isClickable);
|
756
|
+
case 'surface':
|
757
|
+
return makeClassName(surface, isClickable);
|
758
|
+
case 'outline':
|
759
|
+
return makeClassName(outline, isClickable);
|
760
|
+
case 'ghost':
|
761
|
+
return makeClassName(ghost, isClickable);
|
762
|
+
default:
|
763
|
+
return '';
|
764
|
+
}
|
765
|
+
};
|
766
|
+
exports.toggleAppearanceStyle = toggleAppearanceStyle;
|
767
|
+
var menuItemAppearanceStyle = function (type, color) {
|
768
|
+
var appearanceStyle = '';
|
769
|
+
if (type === 'solid') {
|
770
|
+
appearanceStyle = "hover:bg-".concat(color, "-9 dark:hover:bg-").concat(color, "Dark-9 ");
|
771
|
+
appearanceStyle += exports.blackText.includes(color)
|
772
|
+
? "hover:text-slateA-11 dark:hover:text-white"
|
773
|
+
: "hover:text-white dark:hover:text-white";
|
774
|
+
}
|
775
|
+
if (type === 'soft') {
|
776
|
+
appearanceStyle = "hover:bg-".concat(color, "A-4 dark:hover-bg-").concat(color, "DarkA-4");
|
777
|
+
}
|
778
|
+
if (type === 'ghost') {
|
779
|
+
appearanceStyle = "hover:bg-".concat(color, "-3 dark:hover:bg-").concat(color, "Dark-3");
|
780
|
+
}
|
781
|
+
return appearanceStyle;
|
782
|
+
};
|
783
|
+
exports.menuItemAppearanceStyle = menuItemAppearanceStyle;
|
784
|
+
var switchCheckedApperanceStyle = function (type, color) {
|
785
|
+
var softStyle = "data-[state=checked]:bg-".concat(color, "A-3 data-[state=unchecked]:bg-").concat(color, "A-2 ");
|
786
|
+
var surfaceStyle = "data-[state=checked]:bg-".concat(color, "A-2 border border-solid border-").concat(color, "A-7 data-[state=unchecked]:bg-slateA-2 data-[state=unchecked]:bg-slateA-6 ");
|
787
|
+
var classicStyle = "data-[state=checked]:bg-".concat(color, "-9 text-white border border-solid border-").concat(color, "-9 shadow-custom-1 shadow-custom-2 shadow-custom-3 data-[state=unchecked]:border-slate-4 data-[state=unchecked]:bg-slateA-3 data-[state=unchecked]:text-slateA-8");
|
788
|
+
switch (type) {
|
789
|
+
case 'classic':
|
790
|
+
return classicStyle;
|
791
|
+
case 'soft':
|
792
|
+
return softStyle;
|
793
|
+
case 'surface':
|
794
|
+
return surfaceStyle;
|
795
|
+
default:
|
796
|
+
return '';
|
797
|
+
}
|
798
|
+
};
|
799
|
+
exports.switchCheckedApperanceStyle = switchCheckedApperanceStyle;
|
800
|
+
var checkboxAppearanceStyle = function (type, color, indeterminate) {
|
801
|
+
var darkColor = "".concat(color, "Dark");
|
802
|
+
var surface = {
|
803
|
+
light: {
|
804
|
+
default: "border data-[state=unchecked]:bg-transparent data-[state=unchecked]:border-slateA-7\n data-[state=checked]:bg-".concat(color, "-9 data-[state=checked]:border-none data-[state=checked]:text-slate-1"),
|
805
|
+
hover: "hover:data-[state=unchecked]:bg-transparent hover:data-[state=unchecked]:border-slateA-8\n hover:data-[state=checked]:bg-".concat(color, "-10 hover:data-[state=checked]:border-none hover:data-[state=checked]:text-white"),
|
806
|
+
active: "active:data-[state=unchecked]:bg-transparent active:data-[state=unchecked]:border-slateA-9\n active:data-[state=checked]:bg-".concat(color, "-10 active:data-[state=checked]:border-none active:data-[state=checked]:text-white"),
|
807
|
+
disable: "disabled:data-[state=unchecked]:bg-slateA-3 disabled:data-[state=unchecked]:border-slateA-6\n disabled:data-[state=checked]:bg-slateA-3 disabled:data-[state=checked]:border-slateA-6 disabled:data-[state=checked]:text-slateA-8",
|
808
|
+
},
|
809
|
+
dark: {
|
810
|
+
default: "dark:data-[state=unchecked]:border-slateDarkA-7\n dark:data-[state=checked]:bg-".concat(darkColor, "-9 dark:data-[state=checked]:text-#111113"),
|
811
|
+
hover: "dark:hover:data-[state=unchecked]:border-slateDarkA-8\n dark:hover:data-[state=checked]:bg-".concat(darkColor, "-10 dark:hover:data-[state=checked]:text-#111113"),
|
812
|
+
active: "dark:active:data-[state=unchecked]:border-slateDarkA-9\n dark:active:data-[state=checked]:bg-".concat(darkColor, "-10 dark:active:data-[state=checked]:text-#111113"),
|
813
|
+
disable: "dark:disabled:data-[state=unchecked]:bg-slateDarkA-3 dark:disabled:data-[state=unchecked]:border-slateDarkA-6\n dark:disabled:data-[state=checked]:bg-slateDarkA-3 dark:disabled:data-[state=checked]:border-slateDarkA-6 dark:disabled:data-[state=checked]:text-slateDarkA-8",
|
814
|
+
},
|
815
|
+
};
|
816
|
+
var soft = {
|
817
|
+
light: {
|
818
|
+
default: "data-[state=unchecked]:bg-".concat(color, "A-5 data-[state=unchecked]:border-none\n data-[state=checked]:bg-").concat(color, "A-5 data-[state=checked]:border-none data-[state=checked]:text-").concat(color, "-11"),
|
819
|
+
hover: "hover:data-[state=unchecked]:bg-".concat(color, "A-6 hover:data-[state=unchecked]:border-none\n hover:data-[state=checked]:bg-").concat(color, "A-6 hover:data-[state=checked]:border-none hover:data-[state=checked]:text-").concat(color, "-11"),
|
820
|
+
active: "active:data-[state=unchecked]:bg-".concat(color, "A-7 active:data-[state=unchecked]:border-none\n active:data-[state=checked]:bg-").concat(color, "A-7 active:data-[state=checked]:border-none active:data-[state=checked]:text-").concat(color, "-11"),
|
821
|
+
disable: "disabled:data-[state=unchecked]:bg-slateA-3 disabled:data-[state=unchecked]:border-none\n disabled:data-[state=checked]:bg-slateA-3 disabled:data-[state=checked]:border-none disabled:data-[state=checked]:text-slateA-8",
|
822
|
+
},
|
823
|
+
dark: {
|
824
|
+
default: "dark:data-[state=unchecked]:bg-".concat(darkColor, "A-5\n dark:data-[state=checked]:bg-").concat(darkColor, "A-5 dark:data-[state=checked]:text-").concat(darkColor, "-11"),
|
825
|
+
hover: "dark:hover:data-[state=unchecked]:bg-".concat(darkColor, "A-6\n dark:hover:data-[state=checked]:bg-").concat(darkColor, "A-6 dark:hover:data-[state=checked]:text-").concat(darkColor, "-11"),
|
826
|
+
active: "dark:active:data-[state=unchecked]:bg-".concat(darkColor, "A-7\n dark:active:data-[state=checked]:bg-").concat(darkColor, "A-7 dark:active:data-[state=checked]:text-").concat(darkColor, "-11"),
|
827
|
+
disable: "dark:disabled:data-[state=unchecked]:bg-slateDarkA-3\n dark:disabled:data-[state=checked]:bg-slateDarkA-3 dark:disabled:data-[state=checked]:text-slateDarkA-8",
|
828
|
+
},
|
829
|
+
};
|
830
|
+
var indeterminateSurface = {
|
831
|
+
light: {
|
832
|
+
default: "border bg-".concat(color, "A-2 border-").concat(color, "A-7 text-").concat(color, "A-11"),
|
833
|
+
hover: "hover:bg-".concat(color, "A-2 hover:border-").concat(color, "A-8 hover:text-").concat(color, "A-11"),
|
834
|
+
active: "active:bg-".concat(color, "A-3 active:border-").concat(color, "A-8 active:text-").concat(color, "A-11"),
|
835
|
+
disable: "disabled:bg-slateA-3 disabled:border-slateA-6 disabled:text-slateA-8",
|
836
|
+
},
|
837
|
+
dark: {
|
838
|
+
default: "dark:bg-".concat(darkColor, "A-2 dark:border-").concat(darkColor, "A-7 dark:text-").concat(darkColor, "A-11"),
|
839
|
+
hover: "dark:hover:bg-".concat(darkColor, "A-2 dark:hover:border-").concat(darkColor, "A-8 dark:hover:text-").concat(darkColor, "A-11"),
|
840
|
+
active: "dark:active:bg-".concat(darkColor, "A-3 dark:active:border-").concat(darkColor, "A-8 dark:active:text-").concat(darkColor, "A-11"),
|
841
|
+
disable: "dark:disabled:bg-slateDarkA-3 dark:disabled:border-slateDarkA-6 dark:disabled:text-slateDarkA-8",
|
842
|
+
},
|
843
|
+
};
|
844
|
+
var indeterminateSoft = {
|
845
|
+
light: {
|
846
|
+
default: "border bg-transparent border-".concat(color, "A-6 text-").concat(color, "A-11"),
|
847
|
+
hover: "hover:bg-transparent hover:border-".concat(color, "A-6 hover:text-").concat(color, "A-11"),
|
848
|
+
active: "active:bg-transparent active:border-".concat(color, "A-6 active:text-").concat(color, "A-11"),
|
849
|
+
disable: "disabled:bg-slateA-3 disabled:border-none disabled:text-slateA-8",
|
850
|
+
},
|
851
|
+
dark: {
|
852
|
+
default: "dark:border-".concat(darkColor, "A-6 dark:text-").concat(darkColor, "A-11"),
|
853
|
+
hover: "dark:hover:border-".concat(darkColor, "A-6 dark:hover:text-").concat(darkColor, "A-11"),
|
854
|
+
active: "dark:active:border-".concat(darkColor, "A-6 dark:active:text-").concat(darkColor, "A-11"),
|
855
|
+
disable: "dark:disabled:bg-slateDarkA-3 dark:disabled:text-slateDarkA-8",
|
856
|
+
},
|
857
|
+
};
|
858
|
+
switch (type) {
|
859
|
+
case 'classic':
|
860
|
+
return indeterminate
|
861
|
+
? makeClassName(indeterminateSurface, true)
|
862
|
+
: "".concat(makeClassName(surface, true), " data-[state=checked]:shadow-checkbox-classic data-[state=unchecked]:shadow-checkbox-classic\n dark:data-[state=checked]:shadow-checkbox-classic dark:data-[state=unchecked]:shadow-checkbox-classic");
|
863
|
+
case 'soft':
|
864
|
+
return indeterminate ? makeClassName(indeterminateSoft, true) : makeClassName(soft, true);
|
865
|
+
case 'surface':
|
866
|
+
return indeterminate
|
867
|
+
? makeClassName(indeterminateSurface, true)
|
868
|
+
: makeClassName(surface, true);
|
869
|
+
default:
|
870
|
+
return makeClassName(surface, true);
|
871
|
+
}
|
872
|
+
};
|
873
|
+
exports.checkboxAppearanceStyle = checkboxAppearanceStyle;
|
874
|
+
var selectAppearanceStyle = function (type, color) {
|
875
|
+
var darkColor = "".concat(color, "Dark");
|
876
|
+
var surface = {
|
877
|
+
light: {
|
878
|
+
default: "bg-[#FFFFFF] border border-slateA-7 data-placeholder:text-slateA-10 text-slateA-12",
|
879
|
+
hover: "hover:bg-[#FFFFFF] hover:border hover:border-slateA-8 hover:text-slateA-10",
|
880
|
+
active: "active:bg-".concat(color, "A-3 active:border-").concat(color, "A-8 active:text-slateA-10 active:opacity-[.92]"),
|
881
|
+
disable: "disabled:bg-slateA-2 disabled:border-slateA-6 disabled:text-slateA-8",
|
882
|
+
},
|
883
|
+
dark: {
|
884
|
+
default: "dark:bg-[#111113] dark:border dark:data-placeholder:border-slateDarkA-7 dark:data-placeholder:text-slateDarkA-9 dark:border-slateDarkA-7 dark:text-slateDarkA-12",
|
885
|
+
hover: "dark:hover:bg-[#111113] dark:hover:border dark:hover:border-slateDarkA-8 dark:hover:text-slateDarkA-10",
|
886
|
+
active: "dark:active:bg-".concat(darkColor, "A-3 dark:active:border dark:active:border-").concat(darkColor, "A-8 dark:active:text-slateDarkA-10 dark:active:opacity-[.92]"),
|
887
|
+
disable: "dark:disabled:bg-slateDarkA-2 dark:disabled:border dark:disabled:border-slateDarkA-6 dark:disabled:text-slateDarkA-8",
|
888
|
+
},
|
889
|
+
};
|
890
|
+
var classic = {
|
891
|
+
light: {
|
892
|
+
default: "bg-slateA-2 border border-slate-4 data-placeholder:text-slateA-10 text-slateA-12",
|
893
|
+
hover: "hover:bg-slateA-3 hover:border hover:border-slate-4 hover:text-slateA-10",
|
894
|
+
active: "active:bg-slateA-4 active:border active:border-slate-6 active:text-slateA-10",
|
895
|
+
disable: "disabled:bg-slateA-3 disabled:border disabled:border-slate-4 disabled:text-slateA-8",
|
896
|
+
},
|
897
|
+
dark: {
|
898
|
+
default: "dark:bg-slateDarkA-2 dark:border-slateDark-4 dark:data-placeholder:text-slateDarkA-10 dark:text-slateDarkA-12",
|
899
|
+
hover: "dark:hover:bg-slateDarkA-3 dark:hover:border-slateDark-4 dark:hover:text-slateDarkA-10",
|
900
|
+
active: "dark:active:bg-slateDarkA-4 dark:active:border-slateDark-6 dark:active:text-slateDarkA-10",
|
901
|
+
disable: "dark:disabled:bg-slateDarkA-3 dark:disabled:border-slateDark-4 dark:disabled:text-slateDarkA-8",
|
902
|
+
},
|
903
|
+
};
|
904
|
+
var soft = {
|
905
|
+
light: {
|
906
|
+
default: "bg-".concat(color, "A-3 border-none data-placeholder:text-").concat(color, "A-12/[.5] text-").concat(color, "A-12"),
|
907
|
+
hover: "hover:bg-".concat(color, "A-4 hover:border-none hover:text-").concat(color, "A-12/[.5]"),
|
908
|
+
active: "active:bg-".concat(color, "A-5 active:border-none active:text-").concat(color, "A-12/[.5] active:opacity-[.92]"),
|
909
|
+
disable: "disabled:bg-slateA-3 disabled:border-none disabled:text-slateA-8",
|
910
|
+
},
|
911
|
+
dark: {
|
912
|
+
default: "dark:bg-".concat(darkColor, "A-3 dark:border-none dark:data-placeholder:text-").concat(darkColor, "A-12/[.5] dark:text-").concat(darkColor, "A-12 "),
|
913
|
+
hover: "dark:hover:bg-".concat(darkColor, "A-4 dark:hover:border-none dark:hover:text-").concat(darkColor, "A-12/[.5]"),
|
914
|
+
active: "dark:active:bg-".concat(darkColor, "A-5 dark:active:border-none dark:active:text-").concat(darkColor, "A-12/[.5] dark:active:opacity-[.92]"),
|
915
|
+
disable: "dark:disabled:bg-slateDarkA-3 dark:disabled:border-none dark:disabled:text-slateDarkA-8",
|
916
|
+
},
|
917
|
+
};
|
918
|
+
var ghost = {
|
919
|
+
light: {
|
920
|
+
default: "bg-transparent border-none data-placeholder:text-".concat(color, "A-12/[.5] text-").concat(color, "A-12"),
|
921
|
+
hover: "hover:bg-".concat(color, "A-3 hover:border-none hover:text-").concat(color, "A-1/[.5]"),
|
922
|
+
active: "active:bg-".concat(color, "A-4 active:border-none active:text-").concat(color, "A-12/[.5] active:opacity-[.92]"),
|
923
|
+
disable: "disabled:bg-transparent disabled:border-none disabled:text-slateA-8",
|
924
|
+
},
|
925
|
+
dark: {
|
926
|
+
default: "dark:bg-transparent dark:border-none dark:data-placeholder:text-".concat(darkColor, "A-12/[.5] dark:text-").concat(darkColor, "A-12"),
|
927
|
+
hover: "dark:hover:bg-".concat(darkColor, "A-3 dark:hover:border-none dark:hover:text-").concat(darkColor, "A-12/[.5]"),
|
928
|
+
active: "dark:active:bg-".concat(darkColor, "A-4 dark:active:border-none dark:active:text-").concat(darkColor, "A-12/[.5] dark:active:opacity-[.92]"),
|
929
|
+
disable: "dark:disabled:text-slateDarkA-8 dark:disabled:border-none",
|
930
|
+
},
|
931
|
+
};
|
932
|
+
var makeClassName = function (type) {
|
933
|
+
var className = '';
|
934
|
+
className += "".concat(type.light.default, " ").concat(type.dark.default, " ").concat(type.light.hover, " ").concat(type.light.active, " ").concat(type.light.disable, " ").concat(type.dark.hover, " ").concat(type.dark.active, " ").concat(type.dark.disable);
|
935
|
+
return className;
|
936
|
+
};
|
937
|
+
switch (type) {
|
938
|
+
case 'classic':
|
939
|
+
return makeClassName(classic);
|
940
|
+
case 'soft':
|
941
|
+
return makeClassName(soft);
|
942
|
+
case 'surface':
|
943
|
+
return makeClassName(surface);
|
944
|
+
case 'ghost':
|
945
|
+
return makeClassName(ghost);
|
946
|
+
default:
|
947
|
+
return '';
|
948
|
+
}
|
949
|
+
};
|
950
|
+
exports.selectAppearanceStyle = selectAppearanceStyle;
|