@lotte-innovate/ui-component-test 0.0.45 → 0.0.49
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/lib/Typography/Header/index.d.ts +13 -0
- package/dist/lib/Typography/Header/index.jsx +58 -0
- package/dist/lib/Typography/Text/index.d.ts +15 -0
- package/dist/lib/Typography/Text/index.jsx +47 -0
- package/dist/lib/Typography/index.d.ts +2 -0
- package/dist/lib/Typography/index.js +2 -0
- package/dist/lib/color/alpha.d.ts +784 -0
- package/dist/lib/color/alpha.js +784 -0
- package/dist/lib/color/constants.d.ts +29 -0
- package/dist/lib/color/constants.js +296 -0
- package/dist/lib/color/dark.d.ts +392 -0
- package/dist/lib/color/dark.js +392 -0
- package/dist/lib/color/krdsColors.d.ts +309 -0
- package/dist/lib/color/krdsColors.js +309 -0
- package/dist/lib/color/light.d.ts +392 -0
- package/dist/lib/color/light.js +393 -0
- package/dist/lib/components/Accordion/index.d.ts +22 -0
- package/dist/lib/components/Accordion/index.jsx +76 -0
- package/dist/lib/components/AlertDialog/AlertDialogAction.d.ts +14 -0
- package/dist/lib/components/AlertDialog/AlertDialogAction.jsx +62 -0
- package/dist/lib/components/AlertDialog/AlertDialogCancel.d.ts +13 -0
- package/dist/lib/components/AlertDialog/AlertDialogCancel.jsx +61 -0
- package/dist/lib/components/AlertDialog/AlertDialogContent.d.ts +11 -0
- package/dist/lib/components/AlertDialog/AlertDialogContent.jsx +55 -0
- package/dist/lib/components/AlertDialog/AlertDialogDescription.d.ts +10 -0
- package/dist/lib/components/AlertDialog/AlertDialogDescription.jsx +37 -0
- package/dist/lib/components/AlertDialog/AlertDialogRoot.d.ts +16 -0
- package/dist/lib/components/AlertDialog/AlertDialogRoot.jsx +38 -0
- package/dist/lib/components/AlertDialog/AlertDialogTitle.d.ts +10 -0
- package/dist/lib/components/AlertDialog/AlertDialogTitle.jsx +37 -0
- package/dist/lib/components/AlertDialog/AlertDialogTrigger.d.ts +17 -0
- package/dist/lib/components/AlertDialog/AlertDialogTrigger.jsx +56 -0
- package/dist/lib/components/AlertDialog/index.d.ts +11 -0
- package/dist/lib/components/AlertDialog/index.jsx +17 -0
- package/dist/lib/components/AspectRatio/index.d.ts +10 -0
- package/dist/lib/components/AspectRatio/index.jsx +43 -0
- package/dist/lib/components/Avatar/index.d.ts +21 -0
- package/dist/lib/components/Avatar/index.jsx +62 -0
- package/dist/lib/components/Badge/index.d.ts +18 -0
- package/dist/lib/components/Badge/index.jsx +55 -0
- package/dist/lib/components/BarChart/index.d.ts +38 -0
- package/dist/lib/components/BarChart/index.jsx +62 -0
- package/dist/lib/components/BubbleChart/index.d.ts +29 -0
- package/dist/lib/components/BubbleChart/index.jsx +73 -0
- package/dist/lib/components/Button/index.d.ts +16 -0
- package/dist/lib/components/Button/index.jsx +57 -0
- package/dist/lib/components/Callout/CalloutIcon.d.ts +13 -0
- package/dist/lib/components/Callout/CalloutIcon.jsx +62 -0
- package/dist/lib/components/Callout/CalloutRoot.d.ts +18 -0
- package/dist/lib/components/Callout/CalloutRoot.jsx +75 -0
- package/dist/lib/components/Callout/CalloutText.d.ts +10 -0
- package/dist/lib/components/Callout/CalloutText.jsx +42 -0
- package/dist/lib/components/Callout/index.d.ts +7 -0
- package/dist/lib/components/Callout/index.jsx +9 -0
- package/dist/lib/components/Card/index.d.ts +14 -0
- package/dist/lib/components/Card/index.jsx +65 -0
- package/dist/lib/components/Checkbox/index.d.ts +17 -0
- package/dist/lib/components/Checkbox/index.jsx +97 -0
- package/dist/lib/components/CheckboxCard/index.d.ts +20 -0
- package/dist/lib/components/CheckboxCard/index.jsx +60 -0
- package/dist/lib/components/CheckboxGroup/CheckboxGroupItem.d.ts +5 -0
- package/dist/lib/components/CheckboxGroup/CheckboxGroupItem.jsx +25 -0
- package/dist/lib/components/CheckboxGroup/CheckboxGroupRoot.d.ts +17 -0
- package/dist/lib/components/CheckboxGroup/CheckboxGroupRoot.jsx +37 -0
- package/dist/lib/components/CheckboxGroup/index.d.ts +6 -0
- package/dist/lib/components/CheckboxGroup/index.jsx +4 -0
- package/dist/lib/components/ContextMenu/ContextMenuCheckboxItem.d.ts +4 -0
- package/dist/lib/components/ContextMenu/ContextMenuCheckboxItem.jsx +35 -0
- package/dist/lib/components/ContextMenu/ContextMenuContent.d.ts +11 -0
- package/dist/lib/components/ContextMenu/ContextMenuContent.jsx +59 -0
- package/dist/lib/components/ContextMenu/ContextMenuGroup.d.ts +4 -0
- package/dist/lib/components/ContextMenu/ContextMenuGroup.jsx +20 -0
- package/dist/lib/components/ContextMenu/ContextMenuItem.d.ts +13 -0
- package/dist/lib/components/ContextMenu/ContextMenuItem.jsx +61 -0
- package/dist/lib/components/ContextMenu/ContextMenuItemIndicator.d.ts +10 -0
- package/dist/lib/components/ContextMenu/ContextMenuItemIndicator.jsx +51 -0
- package/dist/lib/components/ContextMenu/ContextMenuLabel.d.ts +11 -0
- package/dist/lib/components/ContextMenu/ContextMenuLabel.jsx +49 -0
- package/dist/lib/components/ContextMenu/ContextMenuRadioGroup.d.ts +8 -0
- package/dist/lib/components/ContextMenu/ContextMenuRadioGroup.jsx +23 -0
- package/dist/lib/components/ContextMenu/ContextMenuRadioItem.d.ts +4 -0
- package/dist/lib/components/ContextMenu/ContextMenuRadioItem.jsx +37 -0
- package/dist/lib/components/ContextMenu/ContextMenuRoot.d.ts +13 -0
- package/dist/lib/components/ContextMenu/ContextMenuRoot.jsx +34 -0
- package/dist/lib/components/ContextMenu/ContextMenuSeparator.d.ts +3 -0
- package/dist/lib/components/ContextMenu/ContextMenuSeparator.jsx +21 -0
- package/dist/lib/components/ContextMenu/ContextMenuSubContent.d.ts +11 -0
- package/dist/lib/components/ContextMenu/ContextMenuSubContent.jsx +57 -0
- package/dist/lib/components/ContextMenu/ContextMenuSubTrigger.d.ts +4 -0
- package/dist/lib/components/ContextMenu/ContextMenuSubTrigger.jsx +35 -0
- package/dist/lib/components/ContextMenu/ContextMenuTrigger.d.ts +4 -0
- package/dist/lib/components/ContextMenu/ContextMenuTrigger.jsx +21 -0
- package/dist/lib/components/ContextMenu/index.d.ts +17 -0
- package/dist/lib/components/ContextMenu/index.jsx +29 -0
- package/dist/lib/components/DataList/DataListItem.d.ts +9 -0
- package/dist/lib/components/DataList/DataListItem.jsx +44 -0
- package/dist/lib/components/DataList/DataListLabel.d.ts +10 -0
- package/dist/lib/components/DataList/DataListLabel.jsx +50 -0
- package/dist/lib/components/DataList/DataListRoot.d.ts +14 -0
- package/dist/lib/components/DataList/DataListRoot.jsx +46 -0
- package/dist/lib/components/DataList/DataListValue.d.ts +11 -0
- package/dist/lib/components/DataList/DataListValue.jsx +52 -0
- package/dist/lib/components/DataList/index.d.ts +8 -0
- package/dist/lib/components/DataList/index.jsx +6 -0
- package/dist/lib/components/Dialog/DialogAction.d.ts +13 -0
- package/dist/lib/components/Dialog/DialogAction.jsx +49 -0
- package/dist/lib/components/Dialog/DialogCancel.d.ts +11 -0
- package/dist/lib/components/Dialog/DialogCancel.jsx +45 -0
- package/dist/lib/components/Dialog/DialogContent.d.ts +11 -0
- package/dist/lib/components/Dialog/DialogContent.jsx +58 -0
- package/dist/lib/components/Dialog/DialogDescription.d.ts +9 -0
- package/dist/lib/components/Dialog/DialogDescription.jsx +37 -0
- package/dist/lib/components/Dialog/DialogRoot.d.ts +15 -0
- package/dist/lib/components/Dialog/DialogRoot.jsx +29 -0
- package/dist/lib/components/Dialog/DialogSlot.d.ts +9 -0
- package/dist/lib/components/Dialog/DialogSlot.jsx +36 -0
- package/dist/lib/components/Dialog/DialogTitle.d.ts +11 -0
- package/dist/lib/components/Dialog/DialogTitle.jsx +37 -0
- package/dist/lib/components/Dialog/DialogTrigger.d.ts +3 -0
- package/dist/lib/components/Dialog/DialogTrigger.jsx +20 -0
- package/dist/lib/components/Dialog/index.d.ts +15 -0
- package/dist/lib/components/Dialog/index.jsx +19 -0
- package/dist/lib/components/DoughnutChart/index.d.ts +23 -0
- package/dist/lib/components/DoughnutChart/index.jsx +65 -0
- package/dist/lib/components/DropdownMenu/DropdonMenuRadioGroup.d.ts +3 -0
- package/dist/lib/components/DropdownMenu/DropdonMenuRadioGroup.jsx +20 -0
- package/dist/lib/components/DropdownMenu/DropdonMenuSubContent.d.ts +11 -0
- package/dist/lib/components/DropdownMenu/DropdonMenuSubContent.jsx +63 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuCheckboxItem.d.ts +7 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuCheckboxItem.jsx +34 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuContent.d.ts +11 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuContent.jsx +59 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuItem.d.ts +15 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuItem.jsx +60 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuItemIndicator.d.ts +10 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuItemIndicator.jsx +49 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuLable.d.ts +10 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuLable.jsx +35 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuRadioItem.d.ts +6 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuRadioItem.jsx +34 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuRoot.d.ts +15 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuRoot.jsx +28 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuSeparator.d.ts +3 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuSeparator.jsx +19 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuSub.d.ts +3 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuSub.jsx +18 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuSubTrigger.d.ts +4 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuSubTrigger.jsx +33 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuTrigger.d.ts +14 -0
- package/dist/lib/components/DropdownMenu/DropdownMenuTrigger.jsx +43 -0
- package/dist/lib/components/DropdownMenu/index.d.ts +20 -0
- package/dist/lib/components/DropdownMenu/index.jsx +29 -0
- package/dist/lib/components/HoverCard/HoverCardContent.d.ts +14 -0
- package/dist/lib/components/HoverCard/HoverCardContent.jsx +62 -0
- package/dist/lib/components/HoverCard/HoverCardRoot.d.ts +11 -0
- package/dist/lib/components/HoverCard/HoverCardRoot.jsx +30 -0
- package/dist/lib/components/HoverCard/HoverCardTrigger.d.ts +3 -0
- package/dist/lib/components/HoverCard/HoverCardTrigger.jsx +20 -0
- package/dist/lib/components/HoverCard/index.d.ts +10 -0
- package/dist/lib/components/HoverCard/index.jsx +9 -0
- package/dist/lib/components/IconButton/index.d.ts +15 -0
- package/dist/lib/components/IconButton/index.jsx +64 -0
- package/dist/lib/components/Inset/index.d.ts +10 -0
- package/dist/lib/components/Inset/index.jsx +53 -0
- package/dist/lib/components/Label/index.d.ts +17 -0
- package/dist/lib/components/Label/index.jsx +54 -0
- package/dist/lib/components/LineChart/index.d.ts +44 -0
- package/dist/lib/components/LineChart/index.jsx +60 -0
- package/dist/lib/components/Menubar/MenubarCheckboxItem.d.ts +4 -0
- package/dist/lib/components/Menubar/MenubarCheckboxItem.jsx +31 -0
- package/dist/lib/components/Menubar/MenubarContent.d.ts +11 -0
- package/dist/lib/components/Menubar/MenubarContent.jsx +63 -0
- package/dist/lib/components/Menubar/MenubarItem.d.ts +13 -0
- package/dist/lib/components/Menubar/MenubarItem.jsx +56 -0
- package/dist/lib/components/Menubar/MenubarItemIndicator.d.ts +10 -0
- package/dist/lib/components/Menubar/MenubarItemIndicator.jsx +50 -0
- package/dist/lib/components/Menubar/MenubarMenu.d.ts +5 -0
- package/dist/lib/components/Menubar/MenubarMenu.jsx +18 -0
- package/dist/lib/components/Menubar/MenubarRadioGroup.d.ts +8 -0
- package/dist/lib/components/Menubar/MenubarRadioGroup.jsx +23 -0
- package/dist/lib/components/Menubar/MenubarRadioItem.d.ts +4 -0
- package/dist/lib/components/Menubar/MenubarRadioItem.jsx +33 -0
- package/dist/lib/components/Menubar/MenubarRoot.d.ts +19 -0
- package/dist/lib/components/Menubar/MenubarRoot.jsx +64 -0
- package/dist/lib/components/Menubar/MenubarSeparator.d.ts +3 -0
- package/dist/lib/components/Menubar/MenubarSeparator.jsx +21 -0
- package/dist/lib/components/Menubar/MenubarSub.d.ts +3 -0
- package/dist/lib/components/Menubar/MenubarSub.jsx +18 -0
- package/dist/lib/components/Menubar/MenubarSubContent.d.ts +10 -0
- package/dist/lib/components/Menubar/MenubarSubContent.jsx +52 -0
- package/dist/lib/components/Menubar/MenubarSubTrigger.d.ts +4 -0
- package/dist/lib/components/Menubar/MenubarSubTrigger.jsx +34 -0
- package/dist/lib/components/Menubar/MenubarTrigger.d.ts +12 -0
- package/dist/lib/components/Menubar/MenubarTrigger.jsx +58 -0
- package/dist/lib/components/Menubar/index.d.ts +19 -0
- package/dist/lib/components/Menubar/index.jsx +29 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuContent.d.ts +11 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuContent.jsx +49 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuIndicator.d.ts +3 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuIndicator.jsx +22 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuItem.d.ts +3 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuItem.jsx +20 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuLink.d.ts +13 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuLink.jsx +52 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuList.d.ts +12 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuList.jsx +49 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuRoot.d.ts +14 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuRoot.jsx +35 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuTrigger.d.ts +13 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuTrigger.jsx +60 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuViewport.d.ts +12 -0
- package/dist/lib/components/NavigationMenu/NavigationMenuViewport.jsx +54 -0
- package/dist/lib/components/NavigationMenu/index.d.ts +12 -0
- package/dist/lib/components/NavigationMenu/index.jsx +10 -0
- package/dist/lib/components/PieChart/index.d.ts +23 -0
- package/dist/lib/components/PieChart/index.jsx +65 -0
- package/dist/lib/components/Popover/PopoverClose.d.ts +9 -0
- package/dist/lib/components/Popover/PopoverClose.jsx +38 -0
- package/dist/lib/components/Popover/PopoverContent.d.ts +11 -0
- package/dist/lib/components/Popover/PopoverContent.jsx +66 -0
- package/dist/lib/components/Popover/PopoverRoot.d.ts +12 -0
- package/dist/lib/components/Popover/PopoverRoot.jsx +28 -0
- package/dist/lib/components/Popover/PopoverTrigger.d.ts +3 -0
- package/dist/lib/components/Popover/PopoverTrigger.jsx +20 -0
- package/dist/lib/components/Popover/index.d.ts +11 -0
- package/dist/lib/components/Popover/index.jsx +11 -0
- package/dist/lib/components/Progress/index.d.ts +13 -0
- package/dist/lib/components/Progress/index.jsx +57 -0
- package/dist/lib/components/RadarChart/index.d.ts +33 -0
- package/dist/lib/components/RadarChart/index.jsx +76 -0
- package/dist/lib/components/Radio/index.d.ts +13 -0
- package/dist/lib/components/Radio/index.jsx +48 -0
- package/dist/lib/components/RadioCards/RadioCardsItem.d.ts +10 -0
- package/dist/lib/components/RadioCards/RadioCardsItem.jsx +44 -0
- package/dist/lib/components/RadioCards/RadioCardsRoot.d.ts +13 -0
- package/dist/lib/components/RadioCards/RadioCardsRoot.jsx +51 -0
- package/dist/lib/components/RadioCards/index.d.ts +6 -0
- package/dist/lib/components/RadioCards/index.jsx +7 -0
- package/dist/lib/components/RadioGroup/RadioGroupItem.d.ts +13 -0
- package/dist/lib/components/RadioGroup/RadioGroupItem.jsx +36 -0
- package/dist/lib/components/RadioGroup/RadioGroupRoot.d.ts +15 -0
- package/dist/lib/components/RadioGroup/RadioGroupRoot.jsx +47 -0
- package/dist/lib/components/RadioGroup/index.d.ts +6 -0
- package/dist/lib/components/RadioGroup/index.jsx +7 -0
- package/dist/lib/components/ScrollArea/index.d.ts +9 -0
- package/dist/lib/components/ScrollArea/index.jsx +28 -0
- package/dist/lib/components/SegmentedControl/SegmentedControlItem.d.ts +6 -0
- package/dist/lib/components/SegmentedControl/SegmentedControlItem.jsx +25 -0
- package/dist/lib/components/SegmentedControl/SegmentedControlRoot.d.ts +14 -0
- package/dist/lib/components/SegmentedControl/SegmentedControlRoot.jsx +50 -0
- package/dist/lib/components/SegmentedControl/index.d.ts +6 -0
- package/dist/lib/components/SegmentedControl/index.jsx +7 -0
- package/dist/lib/components/Select/index.d.ts +34 -0
- package/dist/lib/components/Select/index.jsx +109 -0
- package/dist/lib/components/Separator/index.d.ts +11 -0
- package/dist/lib/components/Separator/index.jsx +50 -0
- package/dist/lib/components/Skeleton/index.d.ts +14 -0
- package/dist/lib/components/Skeleton/index.jsx +45 -0
- package/dist/lib/components/Slider/index.d.ts +14 -0
- package/dist/lib/components/Slider/index.jsx +50 -0
- package/dist/lib/components/Spinner/index.d.ts +15 -0
- package/dist/lib/components/Spinner/index.jsx +50 -0
- package/dist/lib/components/TabNav/index.d.ts +15 -0
- package/dist/lib/components/TabNav/index.jsx +44 -0
- package/dist/lib/components/Table/index.d.ts +30 -0
- package/dist/lib/components/Table/index.jsx +113 -0
- package/dist/lib/components/Tabs/index.d.ts +22 -0
- package/dist/lib/components/Tabs/index.jsx +74 -0
- package/dist/lib/components/TextArea/index.d.ts +16 -0
- package/dist/lib/components/TextArea/index.jsx +59 -0
- package/dist/lib/components/TextField/index.d.ts +21 -0
- package/dist/lib/components/TextField/index.jsx +61 -0
- package/dist/lib/components/Toast/ToastActionButton.d.ts +14 -0
- package/dist/lib/components/Toast/ToastActionButton.jsx +68 -0
- package/dist/lib/components/Toast/ToastDescription.d.ts +13 -0
- package/dist/lib/components/Toast/ToastDescription.jsx +45 -0
- package/dist/lib/components/Toast/ToastRoot.d.ts +27 -0
- package/dist/lib/components/Toast/ToastRoot.jsx +96 -0
- package/dist/lib/components/Toast/ToastTitle.d.ts +13 -0
- package/dist/lib/components/Toast/ToastTitle.jsx +43 -0
- package/dist/lib/components/Toast/index.d.ts +8 -0
- package/dist/lib/components/Toast/index.jsx +11 -0
- package/dist/lib/components/Toggle/ToggleWithText.d.ts +21 -0
- package/dist/lib/components/Toggle/ToggleWithText.jsx +60 -0
- package/dist/lib/components/Toggle/index.d.ts +21 -0
- package/dist/lib/components/Toggle/index.jsx +59 -0
- package/dist/lib/components/ToggleGroup/ToggleGroupItem.d.ts +17 -0
- package/dist/lib/components/ToggleGroup/ToggleGroupItem.jsx +44 -0
- package/dist/lib/components/ToggleGroup/ToggleGroupRoot.d.ts +15 -0
- package/dist/lib/components/ToggleGroup/ToggleGroupRoot.jsx +53 -0
- package/dist/lib/components/ToggleGroup/index.d.ts +6 -0
- package/dist/lib/components/ToggleGroup/index.jsx +7 -0
- package/dist/lib/components/ToggleSwitch/index.d.ts +13 -0
- package/dist/lib/components/ToggleSwitch/index.jsx +75 -0
- package/dist/lib/components/Tooltip/index.d.ts +19 -0
- package/dist/lib/components/Tooltip/index.jsx +58 -0
- package/dist/lib/components/index.d.ts +50 -0
- package/dist/lib/components/index.js +52 -0
- package/dist/lib/constants.d.ts +655 -0
- package/dist/lib/constants.js +914 -0
- package/dist/lib/index.d.ts +2 -0
- package/dist/lib/index.js +2 -0
- package/dist/lib/types.d.ts +81 -0
- package/dist/lib/types.js +1 -0
- package/dist/lib/utils/useDarkMode.d.ts +1 -0
- package/dist/lib/utils/useDarkMode.js +49 -0
- package/dist/lib/utils/utils.d.ts +2 -0
- package/dist/lib/utils/utils.js +10 -0
- package/package.json +4 -13
- package/dist/tailwind.config.d.ts +0 -3
@@ -0,0 +1,45 @@
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
2
|
+
var t = {};
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
4
|
+
t[p] = s[p];
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
8
|
+
t[p[i]] = s[p[i]];
|
9
|
+
}
|
10
|
+
return t;
|
11
|
+
};
|
12
|
+
import React, { forwardRef, useContext } from 'react';
|
13
|
+
import { Dialog as DialogTheme } from '@radix-ui/themes';
|
14
|
+
import { cva } from 'class-variance-authority';
|
15
|
+
import { DialogContext } from './DialogRoot';
|
16
|
+
import { cn } from 'lib/utils/utils';
|
17
|
+
export var dialogCancelVariants = cva("rounded-md font-medium inline-flex justify-center items-center text-slate-11 bg-slate-3 outline-none border-none\n dark:text-slateDark-11 dark:bg-slateDark-3 dark:hover:bg-slateDarkA-4\n active:border-none hover:cursor-pointer hover:bg-slateA-4", {
|
18
|
+
variants: {
|
19
|
+
radius: {
|
20
|
+
none: 'rounded-none',
|
21
|
+
small: 'rounded-[3px]',
|
22
|
+
medium: 'rounded',
|
23
|
+
large: 'rounded-md',
|
24
|
+
full: 'rounded-full',
|
25
|
+
},
|
26
|
+
size: {
|
27
|
+
small: 'text-xs w-[52px] h-[24px] px-2 mr-2',
|
28
|
+
medium: 'text-sm w-[66px] h-[32px] px-3 mr-2',
|
29
|
+
large: 'text-base w-[72px] h-[32px] px-3 mr-3',
|
30
|
+
'x-large': 'text-lg w-[86px] h-[40px] px-6 mr-4',
|
31
|
+
},
|
32
|
+
},
|
33
|
+
defaultVariants: {
|
34
|
+
radius: 'medium',
|
35
|
+
size: 'medium',
|
36
|
+
},
|
37
|
+
});
|
38
|
+
export var DialogCancel = forwardRef(function (_a, ref) {
|
39
|
+
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
40
|
+
var _b = useContext(DialogContext), radius = _b.radius, size = _b.size;
|
41
|
+
return (<DialogTheme.Close ref={ref} className={cn(dialogCancelVariants({ radius: radius, size: size }), className)} {...props}>
|
42
|
+
{children}
|
43
|
+
</DialogTheme.Close>);
|
44
|
+
});
|
45
|
+
DialogCancel.displayName = 'Dialog.Cancel';
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { VariantProps } from 'class-variance-authority';
|
3
|
+
import { Dialog as DialogTheme } from '@radix-ui/themes';
|
4
|
+
export interface DialogContentProps extends VariantProps<typeof dialogContentVariants> {
|
5
|
+
}
|
6
|
+
export declare const dialogContentVariants: (props?: ({
|
7
|
+
radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
|
8
|
+
size?: "small" | "medium" | "large" | "x-large" | null | undefined;
|
9
|
+
scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;
|
10
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
11
|
+
export declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogTheme.ContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & DialogContentProps & React.RefAttributes<HTMLDivElement>>;
|
@@ -0,0 +1,58 @@
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
2
|
+
__assign = Object.assign || function(t) {
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
4
|
+
s = arguments[i];
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
6
|
+
t[p] = s[p];
|
7
|
+
}
|
8
|
+
return t;
|
9
|
+
};
|
10
|
+
return __assign.apply(this, arguments);
|
11
|
+
};
|
12
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
13
|
+
var t = {};
|
14
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
15
|
+
t[p] = s[p];
|
16
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
17
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
18
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
19
|
+
t[p[i]] = s[p[i]];
|
20
|
+
}
|
21
|
+
return t;
|
22
|
+
};
|
23
|
+
import React, { forwardRef, useContext } from 'react';
|
24
|
+
import { cva } from 'class-variance-authority';
|
25
|
+
import { Dialog as DialogTheme } from '@radix-ui/themes';
|
26
|
+
import { scalingVariants } from 'lib/constants';
|
27
|
+
import { DialogContext } from './DialogRoot';
|
28
|
+
import { cn } from 'lib/utils/utils';
|
29
|
+
export var dialogContentVariants = cva("rounded-md focus:outline-none 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]", {
|
30
|
+
variants: {
|
31
|
+
radius: {
|
32
|
+
none: 'rounded-none',
|
33
|
+
small: 'rounded',
|
34
|
+
medium: 'rounded-lg',
|
35
|
+
large: 'rounded-xl',
|
36
|
+
full: 'rounded-xl',
|
37
|
+
},
|
38
|
+
size: {
|
39
|
+
small: 'w-[300px]',
|
40
|
+
medium: 'w-[400px]',
|
41
|
+
large: 'w-[500px]',
|
42
|
+
'x-large': 'w-[600px]',
|
43
|
+
},
|
44
|
+
scaling: __assign({}, scalingVariants),
|
45
|
+
},
|
46
|
+
defaultVariants: {
|
47
|
+
radius: 'medium',
|
48
|
+
size: 'medium',
|
49
|
+
},
|
50
|
+
});
|
51
|
+
export var DialogContent = forwardRef(function (_a, forwardedRef) {
|
52
|
+
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
53
|
+
var _b = useContext(DialogContext), radius = _b.radius, size = _b.size, scaling = _b.scaling;
|
54
|
+
return (<DialogTheme.Content ref={forwardedRef} className={cn(dialogContentVariants({ radius: radius, scaling: scaling, size: size }), className)} {...props}>
|
55
|
+
{children}
|
56
|
+
</DialogTheme.Content>);
|
57
|
+
});
|
58
|
+
DialogContent.displayName = 'Dialog.Content';
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { VariantProps } from 'class-variance-authority';
|
3
|
+
import { Dialog as DialogTheme } from '@radix-ui/themes';
|
4
|
+
export interface DialogDescriptionProps extends VariantProps<typeof dialogDescriptionVariants> {
|
5
|
+
}
|
6
|
+
export declare const dialogDescriptionVariants: (props?: ({
|
7
|
+
size?: "small" | "medium" | "large" | "x-large" | null | undefined;
|
8
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
9
|
+
export declare const DialogDescription: React.ForwardRefExoticComponent<Omit<DialogTheme.DescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
|
@@ -0,0 +1,37 @@
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
2
|
+
var t = {};
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
4
|
+
t[p] = s[p];
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
8
|
+
t[p[i]] = s[p[i]];
|
9
|
+
}
|
10
|
+
return t;
|
11
|
+
};
|
12
|
+
import React, { forwardRef, useContext } from 'react';
|
13
|
+
import { cva } from 'class-variance-authority';
|
14
|
+
import { Dialog as DialogTheme } from '@radix-ui/themes';
|
15
|
+
import { DialogContext } from './DialogRoot';
|
16
|
+
import { cn } from 'lib/utils/utils';
|
17
|
+
export var dialogDescriptionVariants = cva('font-normal text-slate-12 dark:text-slateDark-12', {
|
18
|
+
variants: {
|
19
|
+
size: {
|
20
|
+
small: 'text-xs mb-3',
|
21
|
+
medium: 'text-sm mb-4',
|
22
|
+
large: 'text-base mb-5',
|
23
|
+
'x-large': 'text-lg mb-6',
|
24
|
+
},
|
25
|
+
},
|
26
|
+
defaultVariants: {
|
27
|
+
size: 'medium',
|
28
|
+
},
|
29
|
+
});
|
30
|
+
export var DialogDescription = forwardRef(function (_a, ref) {
|
31
|
+
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
32
|
+
var size = useContext(DialogContext).size;
|
33
|
+
return (<DialogTheme.Description mb="4" ref={ref} className={cn(dialogDescriptionVariants({ size: size }), className)} {...props}>
|
34
|
+
{children}
|
35
|
+
</DialogTheme.Description>);
|
36
|
+
});
|
37
|
+
DialogDescription.displayName = 'Dialog.Description';
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import React, { ComponentPropsWithoutRef } from 'react';
|
2
|
+
import { Dialog as DialogTheme } from '@radix-ui/themes';
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
4
|
+
import { dialogContentVariants } from './DialogContent';
|
5
|
+
import { dialogTitleVariants } from './DialogTitle';
|
6
|
+
import { dialogDescriptionVariants } from './DialogDescription';
|
7
|
+
import { dialogActionVariants } from './DialogAction';
|
8
|
+
export interface DialogProps extends VariantProps<typeof dialogContentVariants>, VariantProps<typeof dialogTitleVariants>, VariantProps<typeof dialogDescriptionVariants>, VariantProps<typeof dialogActionVariants> {
|
9
|
+
color?: any;
|
10
|
+
}
|
11
|
+
export declare const DialogContext: React.Context<DialogProps>;
|
12
|
+
export declare const DialogRoot: {
|
13
|
+
({ children, radius, size, scaling, color, ...props }: ComponentPropsWithoutRef<typeof DialogTheme.Root> & DialogProps): React.JSX.Element;
|
14
|
+
displayName: string;
|
15
|
+
};
|
@@ -0,0 +1,29 @@
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
2
|
+
var t = {};
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
4
|
+
t[p] = s[p];
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
8
|
+
t[p[i]] = s[p[i]];
|
9
|
+
}
|
10
|
+
return t;
|
11
|
+
};
|
12
|
+
import React, { createContext } from 'react';
|
13
|
+
import { Theme, Dialog as DialogTheme } from '@radix-ui/themes';
|
14
|
+
export var DialogContext = createContext({
|
15
|
+
size: 'medium',
|
16
|
+
scaling: '100%',
|
17
|
+
color: 'red',
|
18
|
+
radius: 'medium',
|
19
|
+
});
|
20
|
+
export var DialogRoot = function (_a) {
|
21
|
+
var children = _a.children, radius = _a.radius, size = _a.size, scaling = _a.scaling, color = _a.color, props = __rest(_a, ["children", "radius", "size", "scaling", "color"]);
|
22
|
+
var contextValue = { radius: radius, size: size, scaling: scaling, color: color };
|
23
|
+
return (<Theme accentColor={color}>
|
24
|
+
<DialogContext.Provider value={contextValue}>
|
25
|
+
<DialogTheme.Root {...props}>{children}</DialogTheme.Root>
|
26
|
+
</DialogContext.Provider>
|
27
|
+
</Theme>);
|
28
|
+
};
|
29
|
+
DialogRoot.displayName = 'Dialog.Root';
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { VariantProps } from 'class-variance-authority';
|
3
|
+
export interface DialogSlotProps extends VariantProps<typeof dialogSlotVariants> {
|
4
|
+
color?: any;
|
5
|
+
}
|
6
|
+
export declare const dialogSlotVariants: (props?: ({
|
7
|
+
size?: "small" | "medium" | "large" | "x-large" | null | undefined;
|
8
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
9
|
+
export declare const DialogSlot: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & DialogSlotProps & React.RefAttributes<HTMLDivElement>>;
|
@@ -0,0 +1,36 @@
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
2
|
+
var t = {};
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
4
|
+
t[p] = s[p];
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
8
|
+
t[p[i]] = s[p[i]];
|
9
|
+
}
|
10
|
+
return t;
|
11
|
+
};
|
12
|
+
import React, { forwardRef, useContext } from 'react';
|
13
|
+
import { cva } from 'class-variance-authority';
|
14
|
+
import { DialogContext } from './DialogRoot';
|
15
|
+
import { cn } from 'lib/utils/utils';
|
16
|
+
export var dialogSlotVariants = cva('flex flex-col gap-2 font-normal text-slate-12 dark:text-slateDark-12', {
|
17
|
+
variants: {
|
18
|
+
size: {
|
19
|
+
small: 'text-xs mb-3',
|
20
|
+
medium: 'text-sm mb-4',
|
21
|
+
large: 'text-base mb-5',
|
22
|
+
'x-large': 'text-lg mb-6',
|
23
|
+
},
|
24
|
+
},
|
25
|
+
defaultVariants: {
|
26
|
+
size: 'medium',
|
27
|
+
},
|
28
|
+
});
|
29
|
+
export var DialogSlot = forwardRef(function (_a, ref) {
|
30
|
+
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
31
|
+
var size = useContext(DialogContext).size;
|
32
|
+
return (<div ref={ref} className={cn(dialogSlotVariants({ size: size }), className)} {...props}>
|
33
|
+
{children}
|
34
|
+
</div>);
|
35
|
+
});
|
36
|
+
DialogSlot.displayName = 'Dialog.Slot';
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { VariantProps } from 'class-variance-authority';
|
3
|
+
import { Dialog as DialogTheme } from '@radix-ui/themes';
|
4
|
+
export interface DialogTitleProps extends VariantProps<typeof dialogTitleVariants> {
|
5
|
+
size?: any;
|
6
|
+
color?: any;
|
7
|
+
}
|
8
|
+
export declare const dialogTitleVariants: (props?: ({
|
9
|
+
size?: "small" | "medium" | "large" | "x-large" | null | undefined;
|
10
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
11
|
+
export declare const DialogTitle: React.ForwardRefExoticComponent<Omit<DialogTheme.TitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & DialogTitleProps & React.RefAttributes<HTMLHeadingElement>>;
|
@@ -0,0 +1,37 @@
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
2
|
+
var t = {};
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
4
|
+
t[p] = s[p];
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
8
|
+
t[p[i]] = s[p[i]];
|
9
|
+
}
|
10
|
+
return t;
|
11
|
+
};
|
12
|
+
import React, { forwardRef, useContext } from 'react';
|
13
|
+
import { cva } from 'class-variance-authority';
|
14
|
+
import { Dialog as DialogTheme } from '@radix-ui/themes';
|
15
|
+
import { DialogContext } from './DialogRoot';
|
16
|
+
import { cn } from 'lib/utils/utils';
|
17
|
+
export var dialogTitleVariants = cva('font-bold text-slate-12 dark:text-slateDark-12', {
|
18
|
+
variants: {
|
19
|
+
size: {
|
20
|
+
small: 'text-sm',
|
21
|
+
medium: 'text-lg',
|
22
|
+
large: 'text-xl',
|
23
|
+
'x-large': 'text-2xl',
|
24
|
+
},
|
25
|
+
},
|
26
|
+
defaultVariants: {
|
27
|
+
size: 'medium',
|
28
|
+
},
|
29
|
+
});
|
30
|
+
export var DialogTitle = forwardRef(function (_a, ref) {
|
31
|
+
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
32
|
+
var size = useContext(DialogContext).size;
|
33
|
+
return (<DialogTheme.Title ref={ref} className={cn(dialogTitleVariants({ size: size }), className)} {...props}>
|
34
|
+
{children}
|
35
|
+
</DialogTheme.Title>);
|
36
|
+
});
|
37
|
+
DialogTitle.displayName = 'Dialog.Title';
|
@@ -0,0 +1,3 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { Dialog as DialogTheme } from '@radix-ui/themes';
|
3
|
+
export declare const DialogTrigger: React.ForwardRefExoticComponent<Omit<DialogTheme.TriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
@@ -0,0 +1,20 @@
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
2
|
+
var t = {};
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
4
|
+
t[p] = s[p];
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
8
|
+
t[p[i]] = s[p[i]];
|
9
|
+
}
|
10
|
+
return t;
|
11
|
+
};
|
12
|
+
import React, { forwardRef } from 'react';
|
13
|
+
import { Dialog as DialogTheme } from '@radix-ui/themes';
|
14
|
+
export var DialogTrigger = forwardRef(function (_a, ref) {
|
15
|
+
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
16
|
+
return (<DialogTheme.Trigger ref={ref} className={className} {...props}>
|
17
|
+
{children}
|
18
|
+
</DialogTheme.Trigger>);
|
19
|
+
});
|
20
|
+
DialogTrigger.displayName = 'Dialog.Trigger';
|
@@ -0,0 +1,15 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
declare const Dialog: {
|
3
|
+
Root: {
|
4
|
+
({ children, radius, size, scaling, color, ...props }: import("@radix-ui/themes/dist/cjs/components/dialog").RootProps & import("./DialogRoot").DialogProps): import("react").JSX.Element;
|
5
|
+
displayName: string;
|
6
|
+
};
|
7
|
+
Trigger: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/themes/dist/cjs/components/dialog").TriggerProps & import("react").RefAttributes<HTMLButtonElement>, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
|
8
|
+
Content: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/themes/dist/cjs/components/dialog").ContentProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("./DialogContent").DialogContentProps & import("react").RefAttributes<HTMLDivElement>>;
|
9
|
+
Title: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/themes/dist/cjs/components/dialog").TitleProps & import("react").RefAttributes<HTMLHeadingElement>, "ref"> & import("./DialogTitle").DialogTitleProps & import("react").RefAttributes<HTMLHeadingElement>>;
|
10
|
+
Description: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/themes/dist/cjs/components/dialog").DescriptionProps & import("react").RefAttributes<HTMLParagraphElement>, "ref"> & import("./DialogDescription").DialogDescriptionProps & import("react").RefAttributes<HTMLParagraphElement>>;
|
11
|
+
Slot: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & import("./DialogSlot").DialogSlotProps & import("react").RefAttributes<HTMLDivElement>>;
|
12
|
+
Cancel: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/themes/dist/cjs/components/dialog").CloseProps & import("react").RefAttributes<HTMLButtonElement>, "ref"> & import("./DialogCancel").DialogCancelProps & import("react").RefAttributes<HTMLButtonElement>>;
|
13
|
+
Action: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/themes/dist/cjs/components/dialog").CloseProps & import("react").RefAttributes<HTMLButtonElement>, "ref"> & import("./DialogAction").DialogActionProps & import("react").RefAttributes<HTMLButtonElement>>;
|
14
|
+
};
|
15
|
+
export default Dialog;
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { DialogRoot } from './DialogRoot';
|
2
|
+
import { DialogTrigger } from './DialogTrigger';
|
3
|
+
import { DialogContent } from './DialogContent';
|
4
|
+
import { DialogTitle } from './DialogTitle';
|
5
|
+
import { DialogDescription } from './DialogDescription';
|
6
|
+
import { DialogSlot } from './DialogSlot';
|
7
|
+
import { DialogCancel } from './DialogCancel';
|
8
|
+
import { DialogAction } from './DialogAction';
|
9
|
+
var Dialog = {
|
10
|
+
Root: DialogRoot,
|
11
|
+
Trigger: DialogTrigger,
|
12
|
+
Content: DialogContent,
|
13
|
+
Title: DialogTitle,
|
14
|
+
Description: DialogDescription,
|
15
|
+
Slot: DialogSlot,
|
16
|
+
Cancel: DialogCancel,
|
17
|
+
Action: DialogAction,
|
18
|
+
};
|
19
|
+
export default Dialog;
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { VariantProps } from 'class-variance-authority';
|
3
|
+
import { IChartDataLabels, IChartDatasets, IChartLegend, IChartTitle } from 'lib/types';
|
4
|
+
export interface DoughnutChartProps extends VariantProps<typeof doughnutVariants> {
|
5
|
+
labels?: string[];
|
6
|
+
appearance?: 'solid' | 'soft';
|
7
|
+
isColorMixed?: boolean;
|
8
|
+
className?: string;
|
9
|
+
title?: IChartTitle;
|
10
|
+
legend?: IChartLegend;
|
11
|
+
datasets: IChartDatasets[] & {
|
12
|
+
data: number[];
|
13
|
+
}[];
|
14
|
+
datalabels?: IChartDataLabels;
|
15
|
+
}
|
16
|
+
declare const doughnutVariants: (props?: ({
|
17
|
+
scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;
|
18
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
19
|
+
declare const DoughnutChart: {
|
20
|
+
({ labels, title, legend, datasets, datalabels, scaling, className, appearance, isColorMixed, ...rest }: DoughnutChartProps): React.JSX.Element;
|
21
|
+
displayName: string;
|
22
|
+
};
|
23
|
+
export default DoughnutChart;
|
@@ -0,0 +1,65 @@
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
2
|
+
__assign = Object.assign || function(t) {
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
4
|
+
s = arguments[i];
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
6
|
+
t[p] = s[p];
|
7
|
+
}
|
8
|
+
return t;
|
9
|
+
};
|
10
|
+
return __assign.apply(this, arguments);
|
11
|
+
};
|
12
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
13
|
+
var t = {};
|
14
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
15
|
+
t[p] = s[p];
|
16
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
17
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
18
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
19
|
+
t[p[i]] = s[p[i]];
|
20
|
+
}
|
21
|
+
return t;
|
22
|
+
};
|
23
|
+
import React from 'react';
|
24
|
+
import { Doughnut } from 'react-chartjs-2';
|
25
|
+
import { Chart as ChartJS, ArcElement, Tooltip, Legend, plugins } from 'chart.js/auto';
|
26
|
+
import ChartDataLabels from 'chartjs-plugin-datalabels';
|
27
|
+
import { cn } from 'lib/utils/utils';
|
28
|
+
import { cva } from 'class-variance-authority';
|
29
|
+
import { scalingVariants } from 'lib/constants';
|
30
|
+
import { chartColorList, chartAlphaColorList } from 'lib/color/constants';
|
31
|
+
ChartJS.register(ArcElement, Tooltip, Legend, plugins, ChartDataLabels);
|
32
|
+
ChartJS.defaults.set('plugins.datalabels', {
|
33
|
+
display: false,
|
34
|
+
});
|
35
|
+
var doughnutVariants = cva('', {
|
36
|
+
variants: {
|
37
|
+
scaling: __assign({}, scalingVariants),
|
38
|
+
},
|
39
|
+
defaultVariants: {
|
40
|
+
scaling: '100%',
|
41
|
+
},
|
42
|
+
});
|
43
|
+
var DoughnutChart = function (_a) {
|
44
|
+
var labels = _a.labels, title = _a.title, legend = _a.legend, datasets = _a.datasets, datalabels = _a.datalabels, scaling = _a.scaling, className = _a.className, _b = _a.appearance, appearance = _b === void 0 ? 'solid' : _b, _c = _a.isColorMixed, isColorMixed = _c === void 0 ? true : _c, rest = __rest(_a, ["labels", "title", "legend", "datasets", "datalabels", "scaling", "className", "appearance", "isColorMixed"]);
|
45
|
+
var getChartColor = function (isColorMixed, appearance) {
|
46
|
+
if (appearance === 'solid') {
|
47
|
+
return isColorMixed ? chartColorList.mixed : chartColorList.sorting;
|
48
|
+
}
|
49
|
+
if (appearance === 'soft') {
|
50
|
+
return isColorMixed ? chartAlphaColorList.mixed : chartAlphaColorList.sorting;
|
51
|
+
}
|
52
|
+
};
|
53
|
+
datasets.forEach(function (dataset, index) {
|
54
|
+
datasets[index] = __assign(__assign({}, dataset), { backgroundColor: getChartColor(isColorMixed, appearance), borderColor: getChartColor(isColorMixed, 'solid') });
|
55
|
+
});
|
56
|
+
return (<Doughnut data={{ labels: labels, datasets: datasets }} options={{
|
57
|
+
plugins: {
|
58
|
+
title: title,
|
59
|
+
legend: legend,
|
60
|
+
datalabels: datalabels,
|
61
|
+
},
|
62
|
+
}} className={cn(doughnutVariants({ scaling: scaling }), className)} {...rest}/>);
|
63
|
+
};
|
64
|
+
DoughnutChart.displayName = 'DoughnutChart';
|
65
|
+
export default DoughnutChart;
|
@@ -0,0 +1,3 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
3
|
+
export declare const DropdownMenuRadioGroup: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
@@ -0,0 +1,20 @@
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
2
|
+
var t = {};
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
4
|
+
t[p] = s[p];
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
8
|
+
t[p[i]] = s[p[i]];
|
9
|
+
}
|
10
|
+
return t;
|
11
|
+
};
|
12
|
+
import React, { forwardRef, Children } from 'react';
|
13
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
14
|
+
export var DropdownMenuRadioGroup = forwardRef(function (_a, ref) {
|
15
|
+
var className = _a.className, children = _a.children, value = _a.value, props = __rest(_a, ["className", "children", "value"]);
|
16
|
+
return (<DropdownMenuPrimitive.RadioGroup ref={ref} className={className} {...props}>
|
17
|
+
{Children.map(children, function (child) { return React.cloneElement(child, { selectedValue: value }); })}
|
18
|
+
</DropdownMenuPrimitive.RadioGroup>);
|
19
|
+
});
|
20
|
+
DropdownMenuRadioGroup.displayName = 'DropdownMenu.RadioGroup';
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
4
|
+
export interface DropdownMenuSubContentProps extends VariantProps<typeof dropdownMenuSubContentVariants> {
|
5
|
+
}
|
6
|
+
export declare const dropdownMenuSubContentVariants: (props?: ({
|
7
|
+
radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
|
8
|
+
size?: "small" | "medium" | null | undefined;
|
9
|
+
scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;
|
10
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
11
|
+
export declare const DropdownMenuSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>>;
|
@@ -0,0 +1,63 @@
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
2
|
+
__assign = Object.assign || function(t) {
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
4
|
+
s = arguments[i];
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
6
|
+
t[p] = s[p];
|
7
|
+
}
|
8
|
+
return t;
|
9
|
+
};
|
10
|
+
return __assign.apply(this, arguments);
|
11
|
+
};
|
12
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
13
|
+
var t = {};
|
14
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
15
|
+
t[p] = s[p];
|
16
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
17
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
18
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
19
|
+
t[p[i]] = s[p[i]];
|
20
|
+
}
|
21
|
+
return t;
|
22
|
+
};
|
23
|
+
import React, { forwardRef, useContext } from 'react';
|
24
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
25
|
+
import { cva } from 'class-variance-authority';
|
26
|
+
import { scalingVariants } from 'lib/constants';
|
27
|
+
import { DropdownMenuContext } from './DropdownMenuRoot';
|
28
|
+
import { cn } from 'lib/utils/utils';
|
29
|
+
export var dropdownMenuSubContentVariants = cva("p-[5px] bg-white dark:bg-slateDark-1 will-change-[transform,opacity]\n shadow-[0px_10px_38px_-10px_rgba(22,_23,_24,_0.35),_0px_10px_20px_-15px_rgba(22,_23,_24,_0.2)] \n [animation-duration:_400ms] [animation-timing-function:_cubic-bezier(0.16,_1,_0.3,_1)]", {
|
30
|
+
variants: {
|
31
|
+
radius: {
|
32
|
+
none: 'rounded-none',
|
33
|
+
small: 'rounded-[3px]',
|
34
|
+
medium: 'rounded',
|
35
|
+
large: 'rounded-md',
|
36
|
+
full: 'rounded-md',
|
37
|
+
},
|
38
|
+
size: {
|
39
|
+
small: 'p-1 min-w-[128px]',
|
40
|
+
medium: 'p-2 min-w-[152px]',
|
41
|
+
},
|
42
|
+
scaling: __assign({}, scalingVariants),
|
43
|
+
},
|
44
|
+
defaultVariants: {
|
45
|
+
radius: 'small',
|
46
|
+
size: 'medium',
|
47
|
+
scaling: '100%',
|
48
|
+
},
|
49
|
+
});
|
50
|
+
export var DropdownMenuSubContent = forwardRef(function (_a, ref) {
|
51
|
+
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
52
|
+
var _b = useContext(DropdownMenuContext), radius = _b.radius, scaling = _b.scaling, size = _b.size;
|
53
|
+
return (<DropdownMenuPrimitive.Portal>
|
54
|
+
<DropdownMenuPrimitive.SubContent ref={ref} className={cn(dropdownMenuSubContentVariants({
|
55
|
+
radius: radius,
|
56
|
+
size: size,
|
57
|
+
scaling: scaling,
|
58
|
+
}), className)} sideOffset={2} alignOffset={-5} {...props}>
|
59
|
+
{children}
|
60
|
+
</DropdownMenuPrimitive.SubContent>
|
61
|
+
</DropdownMenuPrimitive.Portal>);
|
62
|
+
});
|
63
|
+
DropdownMenuSubContent.displayName = 'DropdownMenu.SubContent';
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
3
|
+
import { DropdownMenuItemProps } from './DropdownMenuItem';
|
4
|
+
export interface DropdownMenuCheckboxItemProps {
|
5
|
+
shortcut?: string;
|
6
|
+
}
|
7
|
+
export declare const DropdownMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>>;
|
@@ -0,0 +1,34 @@
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
2
|
+
var t = {};
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
4
|
+
t[p] = s[p];
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
8
|
+
t[p[i]] = s[p[i]];
|
9
|
+
}
|
10
|
+
return t;
|
11
|
+
};
|
12
|
+
import React, { forwardRef, useContext } from 'react';
|
13
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
14
|
+
import { menuItemAppearanceStyle } from 'lib/constants';
|
15
|
+
import { dropdownMenuItemVariants } from './DropdownMenuItem';
|
16
|
+
import { DropdownMenuItemIndicator } from './DropdownMenuItemIndicator';
|
17
|
+
import { CheckIcon } from '@radix-ui/react-icons';
|
18
|
+
import { DropdownMenuContext } from './DropdownMenuRoot';
|
19
|
+
import { cn } from 'lib/utils/utils';
|
20
|
+
export var DropdownMenuCheckboxItem = forwardRef(function (_a, ref) {
|
21
|
+
var className = _a.className, children = _a.children, shortcut = _a.shortcut, checked = _a.checked, props = __rest(_a, ["className", "children", "shortcut", "checked"]);
|
22
|
+
var _b = useContext(DropdownMenuContext), radius = _b.radius, size = _b.size, _c = _b.color, color = _c === void 0 ? 'red' : _c, _d = _b.appearance, appearance = _d === void 0 ? 'solid' : _d;
|
23
|
+
var itemClassName = cn(dropdownMenuItemVariants({
|
24
|
+
radius: radius,
|
25
|
+
size: size,
|
26
|
+
}), menuItemAppearanceStyle(appearance, color), className);
|
27
|
+
return (<DropdownMenuPrimitive.CheckboxItem ref={ref} className={itemClassName} {...props}>
|
28
|
+
<DropdownMenuItemIndicator forceMount radius={'medium'} size={size}>
|
29
|
+
{checked && <CheckIcon />}
|
30
|
+
</DropdownMenuItemIndicator>
|
31
|
+
{children}
|
32
|
+
</DropdownMenuPrimitive.CheckboxItem>);
|
33
|
+
});
|
34
|
+
DropdownMenuCheckboxItem.displayName = 'DropdownMenu.CheckboxItem';
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
4
|
+
export interface DropdownMenuContentProps extends VariantProps<typeof dropdownMenuContentVariants> {
|
5
|
+
}
|
6
|
+
export declare const dropdownMenuContentVariants: (props?: ({
|
7
|
+
radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
|
8
|
+
size?: "small" | "medium" | null | undefined;
|
9
|
+
scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;
|
10
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
11
|
+
export declare const DropdownMenuContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>>;
|