@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,50 @@
|
|
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 MenubarPrimitive from '@radix-ui/react-menubar';
|
25
|
+
import { cn } from 'lib/utils/utils';
|
26
|
+
import { cva } from 'class-variance-authority';
|
27
|
+
import { radiusVariants } from 'lib/constants';
|
28
|
+
import { useMenubarContext } from './MenubarRoot';
|
29
|
+
export var menubarItemIndicatorVariants = cva("absolute left-0 inline-flex items-center justify-center ml-1 border", {
|
30
|
+
variants: {
|
31
|
+
radius: __assign({}, radiusVariants['base']),
|
32
|
+
size: {
|
33
|
+
small: 'w-3.5 h-3.5',
|
34
|
+
medium: 'w-4 h-4',
|
35
|
+
},
|
36
|
+
},
|
37
|
+
defaultVariants: {
|
38
|
+
size: 'medium',
|
39
|
+
radius: 'medium',
|
40
|
+
},
|
41
|
+
});
|
42
|
+
export var MenubarItemIndicator = forwardRef(function (_a, ref) {
|
43
|
+
var children = _a.children, className = _a.className, radius = _a.radius, props = __rest(_a, ["children", "className", "radius"]);
|
44
|
+
var size = useMenubarContext().size;
|
45
|
+
var indicatorClassName = cn(menubarItemIndicatorVariants({ size: size, radius: radius }), className);
|
46
|
+
return (<MenubarPrimitive.ItemIndicator ref={ref} className={indicatorClassName} {...props}>
|
47
|
+
{children}
|
48
|
+
</MenubarPrimitive.ItemIndicator>);
|
49
|
+
});
|
50
|
+
MenubarItemIndicator.displayName = 'Menubar.ItemIndicator';
|
@@ -0,0 +1,5 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
3
|
+
export declare const MenubarMenu: React.ForwardRefExoticComponent<MenubarPrimitive.MenubarMenuProps & {
|
4
|
+
__scopeMenubar?: import("@radix-ui/react-context").Scope;
|
5
|
+
} & React.RefAttributes<never>>;
|
@@ -0,0 +1,18 @@
|
|
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 MenubarPrimitive from '@radix-ui/react-menubar';
|
14
|
+
export var MenubarMenu = forwardRef(function (_a, ref) {
|
15
|
+
var children = _a.children, props = __rest(_a, ["children"]);
|
16
|
+
return <MenubarPrimitive.Menu {...props}>{children}</MenubarPrimitive.Menu>;
|
17
|
+
});
|
18
|
+
MenubarMenu.displayName = 'Menubar.Menu';
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
3
|
+
type RadioContextType = {
|
4
|
+
selectedValue: string;
|
5
|
+
};
|
6
|
+
export declare const RadioContext: React.Context<RadioContextType>;
|
7
|
+
export declare const MenubarRadioGroup: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarRadioGroupProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
8
|
+
export {};
|
@@ -0,0 +1,23 @@
|
|
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, forwardRef } from 'react';
|
13
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
14
|
+
export var RadioContext = createContext({ selectedValue: '' });
|
15
|
+
export var MenubarRadioGroup = forwardRef(function (_a, ref) {
|
16
|
+
var children = _a.children, className = _a.className, value = _a.value, props = __rest(_a, ["children", "className", "value"]);
|
17
|
+
return (<MenubarPrimitive.RadioGroup ref={ref} className={className} {...props}>
|
18
|
+
<RadioContext.Provider value={{ selectedValue: value !== null && value !== void 0 ? value : '' }}>
|
19
|
+
{children}
|
20
|
+
</RadioContext.Provider>
|
21
|
+
</MenubarPrimitive.RadioGroup>);
|
22
|
+
});
|
23
|
+
MenubarRadioGroup.displayName = 'Menubar.RadioGroup';
|
@@ -0,0 +1,4 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
3
|
+
import { MenubarItemProps } from './MenubarItem';
|
4
|
+
export declare const MenubarRadioItem: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & MenubarItemProps & React.RefAttributes<HTMLDivElement>>;
|
@@ -0,0 +1,33 @@
|
|
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 MenubarPrimitive from '@radix-ui/react-menubar';
|
14
|
+
import { DotFilledIcon } from '@radix-ui/react-icons';
|
15
|
+
import { cn } from 'lib/utils/utils';
|
16
|
+
import { menuItemAppearanceStyle } from 'lib/constants';
|
17
|
+
import { menubarItemVariants } from './MenubarItem';
|
18
|
+
import { MenubarItemIndicator } from './MenubarItemIndicator';
|
19
|
+
import { RadioContext } from './MenubarRadioGroup';
|
20
|
+
import { useMenubarContext } from './MenubarRoot';
|
21
|
+
export var MenubarRadioItem = forwardRef(function (_a, ref) {
|
22
|
+
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
23
|
+
var _b = useMenubarContext(), radius = _b.radius, scaling = _b.scaling, size = _b.size, _c = _b.color, color = _c === void 0 ? 'red' : _c, _d = _b.itemAppearance, itemAppearance = _d === void 0 ? 'solid' : _d;
|
24
|
+
var itemClassName = cn(menubarItemVariants({ radius: radius, scaling: scaling, size: size }), 'pl-7', menuItemAppearanceStyle(itemAppearance, color), className);
|
25
|
+
var radioGroup = useContext(RadioContext);
|
26
|
+
return (<MenubarPrimitive.RadioItem ref={ref} className={itemClassName} {...props}>
|
27
|
+
<MenubarItemIndicator forceMount radius={'full'} size={size}>
|
28
|
+
{radioGroup.selectedValue === props.value && <DotFilledIcon />}
|
29
|
+
</MenubarItemIndicator>
|
30
|
+
{children}
|
31
|
+
</MenubarPrimitive.RadioItem>);
|
32
|
+
});
|
33
|
+
MenubarRadioItem.displayName = 'Menubar.RadioItem';
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
4
|
+
import { IColor } from 'lib/types';
|
5
|
+
import { menubarTriggerVariants } from './MenubarTrigger';
|
6
|
+
import { menubarItemVariants } from './MenubarItem';
|
7
|
+
export interface MenubarProps extends VariantProps<typeof menubarVariants>, VariantProps<typeof menubarTriggerVariants>, VariantProps<typeof menubarItemVariants> {
|
8
|
+
appearance?: 'ghost' | 'solid';
|
9
|
+
itemAppearance?: 'ghost' | 'solid';
|
10
|
+
color?: IColor;
|
11
|
+
}
|
12
|
+
export declare const menubarVariants: (props?: ({
|
13
|
+
radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
|
14
|
+
size?: "small" | "medium" | null | undefined;
|
15
|
+
scaling?: "90%" | "95%" | "100%" | "105%" | "110%" | null | undefined;
|
16
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
17
|
+
export declare const useMenubarContext: () => MenubarProps;
|
18
|
+
export declare const MenubarRoot: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarProps & React.RefAttributes<HTMLDivElement>, "ref"> & MenubarProps & React.RefAttributes<HTMLDivElement>>;
|
19
|
+
export default MenubarRoot;
|
@@ -0,0 +1,64 @@
|
|
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, { createContext, forwardRef, useContext, useMemo, } from 'react';
|
24
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
25
|
+
import { cva } from 'class-variance-authority';
|
26
|
+
import { cn } from 'lib/utils/utils';
|
27
|
+
import { radiusVariants, scalingVariants } from 'lib/constants';
|
28
|
+
export var menubarVariants = cva('flex p-1 shadow bg-white dark:bg-slateDark-1', {
|
29
|
+
variants: {
|
30
|
+
radius: __assign({}, radiusVariants['base']),
|
31
|
+
size: {
|
32
|
+
small: 'text-xs',
|
33
|
+
medium: 'text-sm',
|
34
|
+
},
|
35
|
+
scaling: __assign({}, scalingVariants),
|
36
|
+
},
|
37
|
+
defaultVariants: {
|
38
|
+
radius: 'small',
|
39
|
+
size: 'medium',
|
40
|
+
},
|
41
|
+
});
|
42
|
+
var MenubarContext = createContext({
|
43
|
+
radius: 'medium',
|
44
|
+
scaling: '100%',
|
45
|
+
size: 'medium',
|
46
|
+
color: 'red',
|
47
|
+
appearance: 'ghost',
|
48
|
+
itemAppearance: 'solid',
|
49
|
+
});
|
50
|
+
export var useMenubarContext = function () {
|
51
|
+
return useContext(MenubarContext);
|
52
|
+
};
|
53
|
+
export var MenubarRoot = forwardRef(function (_a, ref) {
|
54
|
+
var children = _a.children, className = _a.className, radius = _a.radius, scaling = _a.scaling, size = _a.size, _b = _a.color, color = _b === void 0 ? 'red' : _b, _c = _a.appearance, appearance = _c === void 0 ? 'ghost' : _c, _d = _a.itemAppearance, itemAppearance = _d === void 0 ? 'solid' : _d, props = __rest(_a, ["children", "className", "radius", "scaling", "size", "color", "appearance", "itemAppearance"]);
|
55
|
+
var contextValue = useMemo(function () { return ({ radius: radius, size: size, scaling: scaling, color: color, appearance: appearance, itemAppearance: itemAppearance }); }, [radius, size, scaling, color, appearance, itemAppearance]);
|
56
|
+
var menuClassName = cn(menubarVariants({ radius: radius, scaling: scaling, size: size }), appearance === 'solid' && "bg-".concat(color, "-9 dark:bg-$").concat(color, "Dark-9"), className);
|
57
|
+
return (<MenubarContext.Provider value={contextValue}>
|
58
|
+
<MenubarPrimitive.Root ref={ref} className={menuClassName} {...props}>
|
59
|
+
{children}
|
60
|
+
</MenubarPrimitive.Root>
|
61
|
+
</MenubarContext.Provider>);
|
62
|
+
});
|
63
|
+
MenubarRoot.displayName = 'Menubar.Root';
|
64
|
+
export default MenubarRoot;
|
@@ -0,0 +1,3 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
3
|
+
export declare const MenubarSeparator: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
@@ -0,0 +1,21 @@
|
|
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 MenubarPrimitive from '@radix-ui/react-menubar';
|
14
|
+
import { cn } from 'lib/utils/utils';
|
15
|
+
export var MenubarSeparator = forwardRef(function (_a, ref) {
|
16
|
+
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
17
|
+
return (<MenubarPrimitive.Separator ref={ref} className={cn('h-[1px] m-[5px] bg-slate-6 dark:bg-slateDark-6', className)} {...props}>
|
18
|
+
{children}
|
19
|
+
</MenubarPrimitive.Separator>);
|
20
|
+
});
|
21
|
+
MenubarSeparator.displayName = 'Menubar.Separator';
|
@@ -0,0 +1,18 @@
|
|
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 MenubarPrimitive from '@radix-ui/react-menubar';
|
14
|
+
export var MenubarSub = forwardRef(function (_a, ref) {
|
15
|
+
var children = _a.children, props = __rest(_a, ["children"]);
|
16
|
+
return <MenubarPrimitive.Sub {...props}>{children}</MenubarPrimitive.Sub>;
|
17
|
+
});
|
18
|
+
MenubarSub.displayName = 'Menubar.Sub';
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
4
|
+
export interface MenubarSubContentProps extends VariantProps<typeof menubarSubContentVariants> {
|
5
|
+
}
|
6
|
+
export declare const menubarSubContentVariants: (props?: ({
|
7
|
+
radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
|
8
|
+
size?: "small" | "medium" | null | undefined;
|
9
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
10
|
+
export declare const MenubarSubContent: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & MenubarSubContentProps & React.RefAttributes<HTMLDivElement>>;
|
@@ -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 MenubarPrimitive from '@radix-ui/react-menubar';
|
25
|
+
import { cva } from 'class-variance-authority';
|
26
|
+
import { cn } from 'lib/utils/utils';
|
27
|
+
import { radiusVariants } from 'lib/constants';
|
28
|
+
import { useMenubarContext } from './MenubarRoot';
|
29
|
+
export var menubarSubContentVariants = cva("p-[5px] w-fit 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: __assign({}, radiusVariants['extra-large']),
|
32
|
+
size: {
|
33
|
+
small: 'p-1 min-w-[120px]',
|
34
|
+
medium: 'p-2 min-w-[136px]',
|
35
|
+
},
|
36
|
+
},
|
37
|
+
defaultVariants: {
|
38
|
+
radius: 'small',
|
39
|
+
size: 'medium',
|
40
|
+
},
|
41
|
+
});
|
42
|
+
export var MenubarSubContent = forwardRef(function (_a, ref) {
|
43
|
+
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
44
|
+
var _b = useMenubarContext(), radius = _b.radius, size = _b.size;
|
45
|
+
return (<MenubarPrimitive.SubContent ref={ref} className={cn(menubarSubContentVariants({
|
46
|
+
radius: radius,
|
47
|
+
size: size,
|
48
|
+
}), className)} alignOffset={-5} {...props}>
|
49
|
+
{children}
|
50
|
+
</MenubarPrimitive.SubContent>);
|
51
|
+
});
|
52
|
+
MenubarSubContent.displayName = 'Menubar.SubContent';
|
@@ -0,0 +1,4 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
3
|
+
import { MenubarItemProps } from './MenubarItem';
|
4
|
+
export declare const MenubarSubTrigger: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSubTriggerProps & React.RefAttributes<HTMLDivElement>, "ref"> & MenubarItemProps & 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 } from 'react';
|
13
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
14
|
+
import { ChevronRightIcon } from '@radix-ui/react-icons';
|
15
|
+
import { cn } from 'lib/utils/utils';
|
16
|
+
import { blackText, menuItemAppearanceStyle } from 'lib/constants';
|
17
|
+
import { menubarItemVariants } from './MenubarItem';
|
18
|
+
import { useMenubarContext } from './MenubarRoot';
|
19
|
+
export var MenubarSubTrigger = forwardRef(function (_a, ref) {
|
20
|
+
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
21
|
+
var _b = useMenubarContext(), scaling = _b.scaling, size = _b.size, radius = _b.radius, _c = _b.color, color = _c === void 0 ? 'red' : _c, _d = _b.itemAppearance, itemAppearance = _d === void 0 ? 'solid' : _d;
|
22
|
+
var triggerClassName = cn(menubarItemVariants({ scaling: scaling, size: size, radius: radius }), menuItemAppearanceStyle(itemAppearance, color), className);
|
23
|
+
var iconClassName = 'ml-auto pl-5 group-hover:text-slateA-11 dark:group-hover:text-slateDarkA-11';
|
24
|
+
if (itemAppearance === 'solid' && !blackText.includes(color)) {
|
25
|
+
iconClassName = 'group-hover:text-white dark:group-hover:text-slateDark-1';
|
26
|
+
}
|
27
|
+
return (<MenubarPrimitive.SubTrigger ref={ref} className={triggerClassName} {...props}>
|
28
|
+
{children}
|
29
|
+
<div className={iconClassName}>
|
30
|
+
<ChevronRightIcon />
|
31
|
+
</div>
|
32
|
+
</MenubarPrimitive.SubTrigger>);
|
33
|
+
});
|
34
|
+
MenubarSubTrigger.displayName = 'Menubar.SubTrigger';
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
3
|
+
import { VariantProps } from 'class-variance-authority';
|
4
|
+
export interface MenubarTriggerProps extends VariantProps<typeof menubarTriggerVariants> {
|
5
|
+
appearance?: 'solid' | 'ghost';
|
6
|
+
}
|
7
|
+
export declare const menubarTriggerVariants: (props?: ({
|
8
|
+
size?: "small" | "medium" | null | undefined;
|
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 MenubarTrigger: React.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & MenubarTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
@@ -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 } from 'react';
|
24
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
25
|
+
import { cva } from 'class-variance-authority';
|
26
|
+
import { cn } from 'lib/utils/utils';
|
27
|
+
import { appearanceStyle, scalingVariants } from 'lib/constants';
|
28
|
+
import { useMenubarContext } from './MenubarRoot';
|
29
|
+
export var menubarTriggerVariants = cva("flex items-center justify-between gap-[2px] outline-none select-none leading-none py-1 px-3 \n font-medium truncate w-fit", {
|
30
|
+
variants: {
|
31
|
+
size: {
|
32
|
+
small: 'text-xs',
|
33
|
+
medium: 'text-sm',
|
34
|
+
},
|
35
|
+
radius: {
|
36
|
+
none: 'rounded-none',
|
37
|
+
small: 'rounded-[1px]',
|
38
|
+
medium: 'rounded-sm',
|
39
|
+
large: 'rounded',
|
40
|
+
full: 'rounded-full',
|
41
|
+
},
|
42
|
+
scaling: __assign({}, scalingVariants),
|
43
|
+
},
|
44
|
+
defaultVariants: {
|
45
|
+
scaling: '100%',
|
46
|
+
size: 'medium',
|
47
|
+
radius: 'small',
|
48
|
+
},
|
49
|
+
});
|
50
|
+
export var MenubarTrigger = forwardRef(function (_a, ref) {
|
51
|
+
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
52
|
+
var _b = useMenubarContext(), scaling = _b.scaling, size = _b.size, radius = _b.radius, _c = _b.color, color = _c === void 0 ? 'red' : _c, _d = _b.appearance, appearance = _d === void 0 ? 'ghost' : _d;
|
53
|
+
var triggerClassName = cn(menubarTriggerVariants({ scaling: scaling, size: size, radius: radius }), appearanceStyle(appearance, color), className);
|
54
|
+
return (<MenubarPrimitive.Trigger ref={ref} className={triggerClassName} {...props}>
|
55
|
+
{children}
|
56
|
+
</MenubarPrimitive.Trigger>);
|
57
|
+
});
|
58
|
+
MenubarTrigger.displayName = 'Menubar.Trigger';
|
@@ -0,0 +1,19 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
declare const Menubar: {
|
3
|
+
Root: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-menubar").MenubarProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("./MenubarRoot").MenubarProps & import("react").RefAttributes<HTMLDivElement>>;
|
4
|
+
Menu: import("react").ForwardRefExoticComponent<import("@radix-ui/react-menubar").MenubarMenuProps & {
|
5
|
+
__scopeMenubar?: import("@radix-ui/react-context").Scope;
|
6
|
+
} & import("react").RefAttributes<never>>;
|
7
|
+
Trigger: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-menubar").MenubarTriggerProps & import("react").RefAttributes<HTMLButtonElement>, "ref"> & import("./MenubarTrigger").MenubarTriggerProps & import("react").RefAttributes<HTMLButtonElement>>;
|
8
|
+
Content: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-menubar").MenubarContentProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("./MenubarContent").MenubarContentProps & import("react").RefAttributes<HTMLDivElement>>;
|
9
|
+
Item: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-menubar").MenubarItemProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("./MenubarItem").MenubarItemProps & import("react").RefAttributes<HTMLDivElement>>;
|
10
|
+
Separator: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-menubar").MenubarSeparatorProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
11
|
+
Sub: import("react").ForwardRefExoticComponent<import("@radix-ui/react-menubar").MenubarSubProps & import("react").RefAttributes<never>>;
|
12
|
+
SubTrigger: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-menubar").MenubarSubTriggerProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("./MenubarItem").MenubarItemProps & import("react").RefAttributes<HTMLDivElement>>;
|
13
|
+
SubContent: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-menubar").MenubarSubContentProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("./MenubarSubContent").MenubarSubContentProps & import("react").RefAttributes<HTMLDivElement>>;
|
14
|
+
CheckboxItem: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-menubar").MenubarCheckboxItemProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("./MenubarItem").MenubarItemProps & import("react").RefAttributes<HTMLDivElement>>;
|
15
|
+
ItemIndicator: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-menubar").MenubarItemIndicatorProps & import("react").RefAttributes<HTMLSpanElement>, "ref"> & import("./MenubarItemIndicator").MenubarItemIndicatorProps & import("react").RefAttributes<HTMLSpanElement>>;
|
16
|
+
RadioGroup: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-menubar").MenubarRadioGroupProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
17
|
+
RadioItem: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-menubar").MenubarRadioItemProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("./MenubarItem").MenubarItemProps & import("react").RefAttributes<HTMLDivElement>>;
|
18
|
+
};
|
19
|
+
export default Menubar;
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import { MenubarRoot as Root } from './MenubarRoot';
|
2
|
+
import { MenubarMenu as Menu } from './MenubarMenu';
|
3
|
+
import { MenubarTrigger as Trigger } from './MenubarTrigger';
|
4
|
+
import { MenubarContent as Content } from './MenubarContent';
|
5
|
+
import { MenubarItem as Item } from './MenubarItem';
|
6
|
+
import { MenubarSeparator as Separator } from './MenubarSeparator';
|
7
|
+
import { MenubarSub as Sub } from './MenubarSub';
|
8
|
+
import { MenubarSubTrigger as SubTrigger } from './MenubarSubTrigger';
|
9
|
+
import { MenubarSubContent as SubContent } from './MenubarSubContent';
|
10
|
+
import { MenubarCheckboxItem as CheckboxItem } from './MenubarCheckboxItem';
|
11
|
+
import { MenubarItemIndicator as ItemIndicator } from './MenubarItemIndicator';
|
12
|
+
import { MenubarRadioGroup as RadioGroup } from './MenubarRadioGroup';
|
13
|
+
import { MenubarRadioItem as RadioItem } from './MenubarRadioItem';
|
14
|
+
var Menubar = {
|
15
|
+
Root: Root,
|
16
|
+
Menu: Menu,
|
17
|
+
Trigger: Trigger,
|
18
|
+
Content: Content,
|
19
|
+
Item: Item,
|
20
|
+
Separator: Separator,
|
21
|
+
Sub: Sub,
|
22
|
+
SubTrigger: SubTrigger,
|
23
|
+
SubContent: SubContent,
|
24
|
+
CheckboxItem: CheckboxItem,
|
25
|
+
ItemIndicator: ItemIndicator,
|
26
|
+
RadioGroup: RadioGroup,
|
27
|
+
RadioItem: RadioItem,
|
28
|
+
};
|
29
|
+
export default Menubar;
|
@@ -0,0 +1,11 @@
|
|
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 NavigationMenuContentProps extends VariantProps<typeof navigationMenuContentVariants> {
|
5
|
+
isShowIcon?: boolean;
|
6
|
+
}
|
7
|
+
export declare const navigationMenuContentVariants: (props?: ({
|
8
|
+
radius?: "small" | "none" | "medium" | "large" | "full" | null | undefined;
|
9
|
+
size?: "small" | "medium" | null | undefined;
|
10
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
11
|
+
export declare const NavigationMenuContent: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & NavigationMenuContentProps & React.RefAttributes<HTMLDivElement>>;
|
@@ -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 { radiusVariants } from 'lib/constants';
|
28
|
+
import { useNavigationMenuContext } from './NavigationMenuRoot';
|
29
|
+
export var navigationMenuContentVariants = cva("text-slate-12 dark:text-slateDark-12 bg-white dark:bg-slateDark-1 p-2 cursor-pointer", {
|
30
|
+
variants: {
|
31
|
+
radius: __assign({}, radiusVariants['extra-large']),
|
32
|
+
size: {
|
33
|
+
small: 'min-w-[250px] text-xs py-2 px-3',
|
34
|
+
medium: 'min-w-[300px] text-sm py-2 px-3',
|
35
|
+
},
|
36
|
+
},
|
37
|
+
defaultVariants: {
|
38
|
+
radius: 'medium',
|
39
|
+
size: 'medium',
|
40
|
+
},
|
41
|
+
});
|
42
|
+
export var NavigationMenuContent = forwardRef(function (_a, ref) {
|
43
|
+
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
44
|
+
var _b = useNavigationMenuContext(), radius = _b.radius, size = _b.size;
|
45
|
+
return (<NavigationMenuPrimitive.Content ref={ref} className={cn("data-[motion=from-start]:animate-enterFromLeft data-[motion=from-end]:animate-enterFromRight data-[motion=to-start]:animate-exitToLeft data-[motion=to-end]:animate-exitToRight absolute left-0 top-0 w-full sm:w-auto", navigationMenuContentVariants({ radius: radius, size: size }), className)} {...props}>
|
46
|
+
{children}
|
47
|
+
</NavigationMenuPrimitive.Content>);
|
48
|
+
});
|
49
|
+
NavigationMenuContent.displayName = 'NavigationMenu.Content';
|
@@ -0,0 +1,3 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
3
|
+
export declare const NavigationMenuIndicator: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuIndicatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
@@ -0,0 +1,22 @@
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
2
|
+
var t = {};
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
4
|
+
t[p] = s[p];
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
8
|
+
t[p[i]] = s[p[i]];
|
9
|
+
}
|
10
|
+
return t;
|
11
|
+
};
|
12
|
+
import React, { forwardRef } from 'react';
|
13
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
14
|
+
import { cn } from 'lib/utils/utils';
|
15
|
+
export var NavigationMenuIndicator = forwardRef(function (_a, ref) {
|
16
|
+
var className = _a.className, children = _a.children, props = __rest(_a, ["className", "children"]);
|
17
|
+
return (<NavigationMenuPrimitive.Indicator ref={ref} className={"data-[state=visible]:animate-fadeIn data-[state=hidden]:animate-fadeOut top-full z-[1] flex h-[10px] items-end justify-center overflow-hidden transition-[width,transform_250ms_ease]"} {...props}>
|
18
|
+
<div className={cn("relative top-[70%] h-[10px] w-[10px] rotate-[45deg] rounded-tl-[2px] bg-white shadow shadow-slate-4 dark:bg-slateDark-2 dark:shadow-slateDark-4", className)}/>
|
19
|
+
{children}
|
20
|
+
</NavigationMenuPrimitive.Indicator>);
|
21
|
+
});
|
22
|
+
NavigationMenuIndicator.displayName = 'NavigationMenu.Indicator';
|
@@ -0,0 +1,3 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
3
|
+
export declare const NavigationMenuItem: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuItemProps & React.RefAttributes<HTMLLIElement>, "ref"> & React.RefAttributes<HTMLLIElement>>;
|