@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,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 * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
14
|
+
export var NavigationMenuItem = forwardRef(function (_a, ref) {
|
15
|
+
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
16
|
+
return (<NavigationMenuPrimitive.Item ref={ref} className={className} {...props}>
|
17
|
+
{children}
|
18
|
+
</NavigationMenuPrimitive.Item>);
|
19
|
+
});
|
20
|
+
NavigationMenuItem.displayName = 'NavigationMenu.Item';
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
4
|
+
export interface NavigationMenuLinkProps extends VariantProps<typeof navigationMenuLinkVariants> {
|
5
|
+
href: string;
|
6
|
+
appearance?: 'ghost' | 'solid';
|
7
|
+
}
|
8
|
+
export declare const navigationMenuLinkVariants: (props?: ({
|
9
|
+
size?: "small" | "medium" | null | undefined;
|
10
|
+
radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
|
11
|
+
scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;
|
12
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
13
|
+
export declare const NavigationMenuLink: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuLinkProps & React.RefAttributes<HTMLAnchorElement>, "ref"> & NavigationMenuLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
@@ -0,0 +1,52 @@
|
|
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 } from 'react';
|
24
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
25
|
+
import { cn } from 'lib/utils/utils';
|
26
|
+
import { cva } from 'class-variance-authority';
|
27
|
+
import { appearanceStyle, radiusVariants, scalingVariants } from 'lib/constants';
|
28
|
+
import { useNavigationMenuContext } from './NavigationMenuRoot';
|
29
|
+
export var navigationMenuLinkVariants = cva("block select-none leading-none outline-none py-1 px-3 cursor-alias hover:underline font-medium", {
|
30
|
+
variants: {
|
31
|
+
size: {
|
32
|
+
small: 'text-xs gap-[2px]',
|
33
|
+
medium: 'text-sm gap-[3px]',
|
34
|
+
},
|
35
|
+
radius: __assign({}, radiusVariants['base']),
|
36
|
+
scaling: __assign({}, scalingVariants),
|
37
|
+
},
|
38
|
+
defaultVariants: {
|
39
|
+
scaling: '100%',
|
40
|
+
size: 'medium',
|
41
|
+
radius: 'small',
|
42
|
+
},
|
43
|
+
});
|
44
|
+
export var NavigationMenuLink = forwardRef(function (_a, ref) {
|
45
|
+
var children = _a.children, className = _a.className, href = _a.href, props = __rest(_a, ["children", "className", "href"]);
|
46
|
+
var _b = useNavigationMenuContext(), scaling = _b.scaling, size = _b.size, radius = _b.radius, _c = _b.color, color = _c === void 0 ? 'red' : _c, _d = _b.appearance, appearance = _d === void 0 ? 'ghost' : _d;
|
47
|
+
var linkClassName = cn(navigationMenuLinkVariants({ scaling: scaling, size: size, radius: radius }), appearanceStyle(appearance, color), className);
|
48
|
+
return (<NavigationMenuPrimitive.Link ref={ref} href={href} title={href} className={linkClassName} {...props}>
|
49
|
+
{children}
|
50
|
+
</NavigationMenuPrimitive.Link>);
|
51
|
+
});
|
52
|
+
NavigationMenuLink.displayName = 'NavigationMenu.Link';
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
4
|
+
export interface NavigationMenuListProps extends VariantProps<typeof navigationMenuListVariants> {
|
5
|
+
isShowIndicator?: boolean;
|
6
|
+
appearance?: 'ghost' | 'solid';
|
7
|
+
}
|
8
|
+
export declare const navigationMenuListVariants: (props?: ({
|
9
|
+
radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
|
10
|
+
scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;
|
11
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
12
|
+
export declare const NavigationMenuList: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuListProps & React.RefAttributes<HTMLUListElement>, "ref"> & NavigationMenuListProps & React.RefAttributes<HTMLUListElement>>;
|
@@ -0,0 +1,49 @@
|
|
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 } from 'react';
|
24
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
25
|
+
import { cn } from 'lib/utils/utils';
|
26
|
+
import { cva } from 'class-variance-authority';
|
27
|
+
import { appearanceStyle, radiusVariants, scalingVariants } from 'lib/constants';
|
28
|
+
import { NavigationMenuIndicator } from './NavigationMenuIndicator';
|
29
|
+
import { useNavigationMenuContext } from './NavigationMenuRoot';
|
30
|
+
export var navigationMenuListVariants = cva('flex p-1 space-x-1 shadow-slate-4 shadow dark:shadow-slateDark-4 bg-white dark:bg-slateDark-1', {
|
31
|
+
variants: {
|
32
|
+
radius: __assign({}, radiusVariants['base']),
|
33
|
+
scaling: __assign({}, scalingVariants),
|
34
|
+
},
|
35
|
+
defaultVariants: {
|
36
|
+
scaling: '100%',
|
37
|
+
radius: 'small',
|
38
|
+
},
|
39
|
+
});
|
40
|
+
export var NavigationMenuList = forwardRef(function (_a, ref) {
|
41
|
+
var children = _a.children, className = _a.className, _b = _a.isShowIndicator, isShowIndicator = _b === void 0 ? true : _b, props = __rest(_a, ["children", "className", "isShowIndicator"]);
|
42
|
+
var _c = useNavigationMenuContext(), scaling = _c.scaling, radius = _c.radius, _d = _c.appearance, appearance = _d === void 0 ? 'ghost' : _d, _e = _c.color, color = _e === void 0 ? 'red' : _e;
|
43
|
+
var navigationMenuListClassName = cn(navigationMenuListVariants({ scaling: scaling, radius: radius }), appearanceStyle(appearance, color, false), 'border-none', appearance === 'ghost' && 'bg-white', className);
|
44
|
+
return (<NavigationMenuPrimitive.List ref={ref} className={navigationMenuListClassName} {...props}>
|
45
|
+
{children}
|
46
|
+
{isShowIndicator && <NavigationMenuIndicator />}
|
47
|
+
</NavigationMenuPrimitive.List>);
|
48
|
+
});
|
49
|
+
NavigationMenuList.displayName = 'NavigationMenu.List';
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
4
|
+
import { navigationMenuListVariants } from './NavigationMenuList';
|
5
|
+
import { navigationMenuTriggerVariants } from './NavigationMenuTrigger';
|
6
|
+
import { navigationMenuLinkVariants } from './NavigationMenuLink';
|
7
|
+
import { IColor } from 'lib/types';
|
8
|
+
export interface NavigationMenuProps extends VariantProps<typeof navigationMenuListVariants>, VariantProps<typeof navigationMenuTriggerVariants>, VariantProps<typeof navigationMenuLinkVariants> {
|
9
|
+
appearance?: 'ghost' | 'solid';
|
10
|
+
color?: IColor;
|
11
|
+
}
|
12
|
+
export declare const useNavigationMenuContext: () => NavigationMenuProps;
|
13
|
+
export declare const NavigationMenuRoot: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuProps & React.RefAttributes<HTMLElement>, "ref"> & NavigationMenuProps & React.RefAttributes<HTMLElement>>;
|
14
|
+
export default NavigationMenuRoot;
|
@@ -0,0 +1,35 @@
|
|
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, createContext, useContext, useMemo, } from 'react';
|
13
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
14
|
+
import { cn } from 'lib/utils/utils';
|
15
|
+
var NavigationMenuContext = createContext({
|
16
|
+
radius: 'medium',
|
17
|
+
scaling: '100%',
|
18
|
+
size: 'medium',
|
19
|
+
color: 'red',
|
20
|
+
appearance: 'ghost',
|
21
|
+
});
|
22
|
+
export var useNavigationMenuContext = function () {
|
23
|
+
return useContext(NavigationMenuContext);
|
24
|
+
};
|
25
|
+
export var NavigationMenuRoot = forwardRef(function (_a, ref) {
|
26
|
+
var className = _a.className, children = _a.children, radius = _a.radius, size = _a.size, scaling = _a.scaling, color = _a.color, appearance = _a.appearance, props = __rest(_a, ["className", "children", "radius", "size", "scaling", "color", "appearance"]);
|
27
|
+
var contextValue = useMemo(function () { return ({ radius: radius, size: size, scaling: scaling, color: color, appearance: appearance }); }, [radius, size, scaling, color, appearance]);
|
28
|
+
return (<NavigationMenuContext.Provider value={contextValue}>
|
29
|
+
<NavigationMenuPrimitive.Root ref={ref} className={cn('relative flex', className)} {...props}>
|
30
|
+
{children}
|
31
|
+
</NavigationMenuPrimitive.Root>
|
32
|
+
</NavigationMenuContext.Provider>);
|
33
|
+
});
|
34
|
+
NavigationMenuRoot.displayName = 'NavigationMenu.Root';
|
35
|
+
export default NavigationMenuRoot;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
4
|
+
export interface NavigationMenuTriggerProps extends VariantProps<typeof navigationMenuTriggerVariants> {
|
5
|
+
isShowIcon?: boolean;
|
6
|
+
appearance?: 'ghost' | 'solid';
|
7
|
+
}
|
8
|
+
export declare const navigationMenuTriggerVariants: (props?: ({
|
9
|
+
size?: "small" | "medium" | null | undefined;
|
10
|
+
radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
|
11
|
+
scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;
|
12
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
13
|
+
export declare const NavigationMenuTrigger: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & NavigationMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
@@ -0,0 +1,60 @@
|
|
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 } from 'react';
|
24
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
25
|
+
import { cn } from 'lib/utils/utils';
|
26
|
+
import { cva } from 'class-variance-authority';
|
27
|
+
import { appearanceStyle, scalingVariants } from 'lib/constants';
|
28
|
+
import { CaretDownIcon } from '@radix-ui/react-icons';
|
29
|
+
import { useNavigationMenuContext } from './NavigationMenuRoot';
|
30
|
+
export var navigationMenuTriggerVariants = cva("flex items-center justify-between outline-none select-none leading-none py-1 px-3 font-medium", {
|
31
|
+
variants: {
|
32
|
+
size: {
|
33
|
+
small: 'text-xs gap-[2px]',
|
34
|
+
medium: 'text-sm gap-[3px]',
|
35
|
+
},
|
36
|
+
radius: {
|
37
|
+
none: 'rounded-none',
|
38
|
+
small: 'rounded-[1px]',
|
39
|
+
medium: 'rounded-sm',
|
40
|
+
large: 'rounded',
|
41
|
+
full: 'rounded-full',
|
42
|
+
},
|
43
|
+
scaling: __assign({}, scalingVariants),
|
44
|
+
},
|
45
|
+
defaultVariants: {
|
46
|
+
scaling: '100%',
|
47
|
+
size: 'medium',
|
48
|
+
radius: 'small',
|
49
|
+
},
|
50
|
+
});
|
51
|
+
export var NavigationMenuTrigger = forwardRef(function (_a, ref) {
|
52
|
+
var children = _a.children, className = _a.className, _b = _a.isShowIcon, isShowIcon = _b === void 0 ? true : _b, props = __rest(_a, ["children", "className", "isShowIcon"]);
|
53
|
+
var _c = useNavigationMenuContext(), scaling = _c.scaling, size = _c.size, radius = _c.radius, _d = _c.color, color = _d === void 0 ? 'red' : _d, _e = _c.appearance, appearance = _e === void 0 ? 'ghost' : _e;
|
54
|
+
var triggerClassName = cn(navigationMenuTriggerVariants({ scaling: scaling, size: size, radius: radius }), appearanceStyle(appearance, color), className);
|
55
|
+
return (<NavigationMenuPrimitive.Trigger ref={ref} className={triggerClassName} {...props}>
|
56
|
+
{children}
|
57
|
+
{isShowIcon && (<CaretDownIcon className={cn("relative top-[1px] transition-transform duration-[250] ease-in group-data-[state=open]:-rotate-180")} aria-hidden/>)}
|
58
|
+
</NavigationMenuPrimitive.Trigger>);
|
59
|
+
});
|
60
|
+
NavigationMenuTrigger.displayName = 'NavigationMenu.Trigger';
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
4
|
+
export interface NavigationViewportProps extends VariantProps<typeof navigationViewportVariants> {
|
5
|
+
}
|
6
|
+
export declare const navigationViewportVariants: (props?: ({
|
7
|
+
radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
|
8
|
+
weight?: "bold" | "medium" | "regular" | "semibold" | null | undefined;
|
9
|
+
size?: "small" | "medium" | null | undefined;
|
10
|
+
scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;
|
11
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
12
|
+
export declare const NavigationMenuViewport: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuViewportProps & React.RefAttributes<HTMLDivElement>, "ref"> & NavigationViewportProps & React.RefAttributes<HTMLDivElement>>;
|
@@ -0,0 +1,54 @@
|
|
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 } from 'react';
|
24
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
25
|
+
import { cn } from 'lib/utils/utils';
|
26
|
+
import { cva } from 'class-variance-authority';
|
27
|
+
import { radiusVariants, scalingVariants, weightVariants } from 'lib/constants';
|
28
|
+
import { useNavigationMenuContext } from './NavigationMenuRoot';
|
29
|
+
export var navigationViewportVariants = cva("data-[state=open]:animate-scaleIn data-[state=closed]:animate-scaleOut relative mt-[10px] \n h-[var(--radix-navigation-menu-viewport-height)] w-full origin-[top_center] overflow-hidden \n transition-[width,_height] duration-300 shadow-slate-4 shadow dark:shadow-slateDark-4\n sm:w-[var(--radix-navigation-menu-viewport-width)]", {
|
30
|
+
variants: {
|
31
|
+
radius: __assign({}, radiusVariants['extra-large']),
|
32
|
+
weight: __assign({}, weightVariants),
|
33
|
+
size: {
|
34
|
+
small: 'p-2',
|
35
|
+
medium: 'p-3',
|
36
|
+
},
|
37
|
+
scaling: __assign({}, scalingVariants),
|
38
|
+
},
|
39
|
+
defaultVariants: {
|
40
|
+
radius: 'medium',
|
41
|
+
scaling: '100%',
|
42
|
+
weight: 'medium',
|
43
|
+
size: 'medium',
|
44
|
+
},
|
45
|
+
});
|
46
|
+
export var NavigationMenuViewport = forwardRef(function (_a, ref) {
|
47
|
+
var className = _a.className, props = __rest(_a, ["className"]);
|
48
|
+
var _b = useNavigationMenuContext(), size = _b.size, scaling = _b.scaling, radius = _b.radius;
|
49
|
+
var viewportClassName = cn(navigationViewportVariants({ size: size, scaling: scaling, radius: radius }), className);
|
50
|
+
return (<div className="perspective-[2000px] absolute left-0 top-full flex w-full">
|
51
|
+
<NavigationMenuPrimitive.Viewport ref={ref} className={viewportClassName} {...props}/>
|
52
|
+
</div>);
|
53
|
+
});
|
54
|
+
NavigationMenuViewport.displayName = 'NavigationMenu.Viewport';
|
@@ -0,0 +1,12 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
declare const NavigationMenu: {
|
3
|
+
Root: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-navigation-menu").NavigationMenuProps & import("react").RefAttributes<HTMLElement>, "ref"> & import("./NavigationMenuRoot").NavigationMenuProps & import("react").RefAttributes<HTMLElement>>;
|
4
|
+
List: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-navigation-menu").NavigationMenuListProps & import("react").RefAttributes<HTMLUListElement>, "ref"> & import("./NavigationMenuList").NavigationMenuListProps & import("react").RefAttributes<HTMLUListElement>>;
|
5
|
+
Item: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-navigation-menu").NavigationMenuItemProps & import("react").RefAttributes<HTMLLIElement>, "ref"> & import("react").RefAttributes<HTMLLIElement>>;
|
6
|
+
Trigger: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-navigation-menu").NavigationMenuTriggerProps & import("react").RefAttributes<HTMLButtonElement>, "ref"> & import("./NavigationMenuTrigger").NavigationMenuTriggerProps & import("react").RefAttributes<HTMLButtonElement>>;
|
7
|
+
Content: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-navigation-menu").NavigationMenuContentProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("./NavigationMenuContent").NavigationMenuContentProps & import("react").RefAttributes<HTMLDivElement>>;
|
8
|
+
Viewport: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-navigation-menu").NavigationMenuViewportProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("./NavigationMenuViewport").NavigationViewportProps & import("react").RefAttributes<HTMLDivElement>>;
|
9
|
+
Indicator: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-navigation-menu").NavigationMenuIndicatorProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
10
|
+
Link: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-navigation-menu").NavigationMenuLinkProps & import("react").RefAttributes<HTMLAnchorElement>, "ref"> & import("./NavigationMenuLink").NavigationMenuLinkProps & import("react").RefAttributes<HTMLAnchorElement>>;
|
11
|
+
};
|
12
|
+
export default NavigationMenu;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { NavigationMenuRoot as Root } from './NavigationMenuRoot';
|
2
|
+
import { NavigationMenuList as List } from './NavigationMenuList';
|
3
|
+
import { NavigationMenuItem as Item } from './NavigationMenuItem';
|
4
|
+
import { NavigationMenuTrigger as Trigger } from './NavigationMenuTrigger';
|
5
|
+
import { NavigationMenuContent as Content } from './NavigationMenuContent';
|
6
|
+
import { NavigationMenuViewport as Viewport } from './NavigationMenuViewport';
|
7
|
+
import { NavigationMenuIndicator as Indicator } from './NavigationMenuIndicator';
|
8
|
+
import { NavigationMenuLink as Link } from './NavigationMenuLink';
|
9
|
+
var NavigationMenu = { Root: Root, List: List, Item: Item, Trigger: Trigger, Content: Content, Viewport: Viewport, Indicator: Indicator, Link: Link };
|
10
|
+
export default NavigationMenu;
|
@@ -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 PieChartProps extends VariantProps<typeof PieVariants> {
|
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 PieVariants: (props?: ({
|
17
|
+
scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;
|
18
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
19
|
+
declare const PieChart: {
|
20
|
+
({ labels, title, legend, datasets, datalabels, scaling, className, appearance, isColorMixed, ...rest }: PieChartProps): React.JSX.Element;
|
21
|
+
displayName: string;
|
22
|
+
};
|
23
|
+
export default PieChart;
|
@@ -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 { Pie } from 'react-chartjs-2';
|
25
|
+
import { Chart as ChartJS, ArcElement, Tooltip, Legend, plugins } from 'chart.js';
|
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 PieVariants = cva('', {
|
36
|
+
variants: {
|
37
|
+
scaling: __assign({}, scalingVariants),
|
38
|
+
},
|
39
|
+
defaultVariants: {
|
40
|
+
scaling: '100%',
|
41
|
+
},
|
42
|
+
});
|
43
|
+
var PieChart = 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 (<Pie data={{ labels: labels, datasets: datasets }} options={{
|
57
|
+
plugins: {
|
58
|
+
title: title,
|
59
|
+
legend: legend,
|
60
|
+
datalabels: datalabels,
|
61
|
+
},
|
62
|
+
}} className={cn(PieVariants({ scaling: scaling }), className)} {...rest}/>);
|
63
|
+
};
|
64
|
+
PieChart.displayName = 'PieChart';
|
65
|
+
export default PieChart;
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { VariantProps } from 'class-variance-authority';
|
3
|
+
import { Popover as PopoverTheme } from '@radix-ui/themes';
|
4
|
+
export interface PopoverCloseProps extends VariantProps<typeof popoverCloseVariants> {
|
5
|
+
}
|
6
|
+
export declare const popoverCloseVariants: (props?: ({
|
7
|
+
radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
|
8
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
9
|
+
export declare const PopoverClose: React.ForwardRefExoticComponent<Omit<PopoverTheme.CloseProps & React.RefAttributes<HTMLButtonElement>, "ref"> & PopoverCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
@@ -0,0 +1,38 @@
|
|
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 { Popover as PopoverTheme } from '@radix-ui/themes';
|
15
|
+
import { PopoverContext } from './PopoverRoot';
|
16
|
+
import { cn } from 'lib/utils/utils';
|
17
|
+
export var popoverCloseVariants = cva('', {
|
18
|
+
variants: {
|
19
|
+
radius: {
|
20
|
+
none: 'rounded-none',
|
21
|
+
small: 'rounded-[3px]',
|
22
|
+
medium: 'rounded',
|
23
|
+
large: 'rounded-md',
|
24
|
+
full: 'rounded-md',
|
25
|
+
},
|
26
|
+
},
|
27
|
+
defaultVariants: {
|
28
|
+
radius: 'medium',
|
29
|
+
},
|
30
|
+
});
|
31
|
+
export var PopoverClose = forwardRef(function (_a, ref) {
|
32
|
+
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
33
|
+
var radius = useContext(PopoverContext).radius;
|
34
|
+
return (<PopoverTheme.Close ref={ref} className={cn(popoverCloseVariants({ radius: radius }), className)} {...props}>
|
35
|
+
{children}
|
36
|
+
</PopoverTheme.Close>);
|
37
|
+
});
|
38
|
+
PopoverClose.displayName = 'Popover.Close';
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { Popover as PopoverTheme } from '@radix-ui/themes';
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
4
|
+
export interface PopoverContentProps extends VariantProps<typeof popoverContentVariants> {
|
5
|
+
}
|
6
|
+
export declare const popoverContentVariants: (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 PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverTheme.ContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & PopoverContentProps & React.RefAttributes<HTMLDivElement>>;
|
@@ -0,0 +1,66 @@
|
|
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 { scalingVariants } from 'lib/constants';
|
25
|
+
import { Popover as PopoverTheme } from '@radix-ui/themes';
|
26
|
+
import { cva } from 'class-variance-authority';
|
27
|
+
import { PopoverContext } from './PopoverRoot';
|
28
|
+
import { cn } from 'lib/utils/utils';
|
29
|
+
export var popoverContentVariants = cva('flex gap-2 bg-white dark:bg-slateDark-1 border-slateA-6 dark:border-slateDarkA-6', {
|
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: 'text-xs w-[250px]',
|
40
|
+
medium: 'text-sm w-[300px]',
|
41
|
+
large: 'text-base w-[350px]',
|
42
|
+
'x-large': 'text-lg w-[400px]',
|
43
|
+
},
|
44
|
+
scaling: __assign({}, scalingVariants),
|
45
|
+
},
|
46
|
+
defaultVariants: {
|
47
|
+
radius: 'medium',
|
48
|
+
size: 'medium',
|
49
|
+
scaling: '100%',
|
50
|
+
},
|
51
|
+
});
|
52
|
+
export var PopoverContent = forwardRef(function (_a, ref) {
|
53
|
+
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
54
|
+
var _b = useContext(PopoverContext), radius = _b.radius, size = _b.size, scaling = _b.scaling;
|
55
|
+
var sizeTheme = '2';
|
56
|
+
if (size === 'small')
|
57
|
+
sizeTheme = '1';
|
58
|
+
if (size === 'large')
|
59
|
+
sizeTheme = '3';
|
60
|
+
if (size === 'x-large')
|
61
|
+
sizeTheme = '4';
|
62
|
+
return (<PopoverTheme.Content ref={ref} size={sizeTheme} className={cn(popoverContentVariants({ size: size, radius: radius, scaling: scaling }), className)} {...props}>
|
63
|
+
{children}
|
64
|
+
</PopoverTheme.Content>);
|
65
|
+
});
|
66
|
+
PopoverContent.displayName = 'Popover.Content';
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import React, { ComponentPropsWithoutRef } from 'react';
|
2
|
+
import { Popover as PopoverTheme } from '@radix-ui/themes';
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
4
|
+
import { popoverContentVariants } from './PopoverContent';
|
5
|
+
import { popoverCloseVariants } from './PopoverClose';
|
6
|
+
export interface PopoverProps extends VariantProps<typeof popoverContentVariants>, VariantProps<typeof popoverCloseVariants> {
|
7
|
+
}
|
8
|
+
export declare const PopoverContext: React.Context<PopoverProps>;
|
9
|
+
export declare const PopoverRoot: {
|
10
|
+
({ children, radius, size, scaling, ...props }: ComponentPropsWithoutRef<typeof PopoverTheme.Root> & PopoverProps): React.JSX.Element;
|
11
|
+
displayName: string;
|
12
|
+
};
|
@@ -0,0 +1,28 @@
|
|
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, Popover as PopoverTheme } from '@radix-ui/themes';
|
14
|
+
export var PopoverContext = createContext({
|
15
|
+
radius: 'medium',
|
16
|
+
size: 'medium',
|
17
|
+
scaling: '100%',
|
18
|
+
});
|
19
|
+
export var PopoverRoot = function (_a) {
|
20
|
+
var children = _a.children, radius = _a.radius, size = _a.size, scaling = _a.scaling, props = __rest(_a, ["children", "radius", "size", "scaling"]);
|
21
|
+
var contextValue = { radius: radius, size: size, scaling: scaling };
|
22
|
+
return (<Theme>
|
23
|
+
<PopoverContext.Provider value={contextValue}>
|
24
|
+
<PopoverTheme.Root {...props}>{children}</PopoverTheme.Root>
|
25
|
+
</PopoverContext.Provider>
|
26
|
+
</Theme>);
|
27
|
+
};
|
28
|
+
PopoverRoot.displayName = 'Popover.Root';
|