laif-ds 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_virtual/_cloneBuffer.js +5 -0
- package/dist/_virtual/dayjs.min.js +8 -0
- package/dist/_virtual/dayjs.min2.js +5 -0
- package/dist/_virtual/debounce.js +8 -0
- package/dist/_virtual/index5.js +5 -2
- package/dist/_virtual/index6.js +5 -0
- package/dist/_virtual/index7.js +5 -0
- package/dist/_virtual/localizedFormat.js +8 -0
- package/dist/_virtual/localizedFormat2.js +5 -0
- package/dist/_virtual/omit.js +8 -0
- package/dist/components/ui/gantt/assets/icons/MinusSquareOutlined.js +36 -0
- package/dist/components/ui/gantt/assets/icons/PlusSquareOutlined.js +45 -0
- package/dist/components/ui/gantt/components/Chart/Bars/Bars.js +115 -0
- package/dist/components/ui/gantt/components/Chart/Bars/BarsRow/BarItem/BarItem.js +158 -0
- package/dist/components/ui/gantt/components/Chart/Bars/BarsRow/BarsItems/BarItems.js +36 -0
- package/dist/components/ui/gantt/components/Chart/Bars/BarsRow/BarsRow.js +26 -0
- package/dist/components/ui/gantt/components/Chart/Bars/BarsRow/BarsRowContext.js +14 -0
- package/dist/components/ui/gantt/components/Chart/Bars/BarsRow/RepeteadBars/RepeteadBars.js +75 -0
- package/dist/components/ui/gantt/components/Chart/Chart.js +66 -0
- package/dist/components/ui/gantt/components/Chart/Scale/Scale.js +88 -0
- package/dist/components/ui/gantt/components/Chart/Tree/Tree.js +72 -0
- package/dist/components/ui/gantt/components/Controls/Controls.js +82 -0
- package/dist/components/ui/gantt/components/Gantt/Gantt.js +58 -0
- package/dist/components/ui/gantt/components/Gantt/GanttContext.js +35 -0
- package/dist/components/ui/gantt/constants/DimensionsSettings.js +89 -0
- package/dist/components/ui/gantt/constants/DragStepOptions.js +43 -0
- package/dist/components/ui/gantt/constants/GanttConsts.js +17 -0
- package/dist/components/ui/gantt/constants/colors.json.js +106 -0
- package/dist/components/ui/gantt/enums/DataRepeatTimes.js +5 -0
- package/dist/components/ui/gantt/enums/DragStepSizes.js +5 -0
- package/dist/components/ui/gantt/enums/DragTypes.js +5 -0
- package/dist/components/ui/gantt/enums/GanttDimensions.js +5 -0
- package/dist/components/ui/gantt/enums/GanttUnitOfTimes.js +5 -0
- package/dist/components/ui/gantt/hooks/useForwardRef.js +11 -0
- package/dist/components/ui/gantt/hooks/useGanttCalculate.js +30 -0
- package/dist/components/ui/gantt/utils/getInitialScrollOffset.js +11 -0
- package/dist/components/ui/gantt/utils/getScaleDates.js +14 -0
- package/dist/components/ui/gantt/utils/getScaleItems.js +33 -0
- package/dist/components/ui/gantt/utils/getWholeWidth.js +7 -0
- package/dist/components/ui/gantt/utils/transformData.js +36 -0
- package/dist/index.d.ts +168 -0
- package/dist/index.js +300 -294
- package/dist/laif-ds.css +1 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +8 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/extends.js +13 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js +8 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +9 -0
- package/dist/node_modules/@dnd-kit/accessibility/dist/accessibility.esm.js +57 -0
- package/dist/node_modules/@dnd-kit/core/dist/core.esm.js +2150 -0
- package/dist/node_modules/@dnd-kit/modifiers/dist/modifiers.esm.js +27 -0
- package/dist/node_modules/@dnd-kit/utilities/dist/utilities.esm.js +184 -0
- package/dist/node_modules/classnames/index.js +43 -0
- package/dist/node_modules/dayjs/dayjs.min.js +283 -0
- package/dist/node_modules/dayjs/plugin/localizedFormat.js +30 -0
- package/dist/node_modules/lodash/_arrayEach.js +15 -0
- package/dist/node_modules/lodash/_assignValue.js +17 -0
- package/dist/node_modules/lodash/_baseAssign.js +16 -0
- package/dist/node_modules/lodash/_baseAssignIn.js +16 -0
- package/dist/node_modules/lodash/_baseAssignValue.js +20 -0
- package/dist/node_modules/lodash/_baseClone.js +71 -0
- package/dist/node_modules/lodash/_baseCreate.js +24 -0
- package/dist/node_modules/lodash/_baseIsMap.js +16 -0
- package/dist/node_modules/lodash/_baseIsSet.js +16 -0
- package/dist/node_modules/lodash/_baseKeysIn.js +22 -0
- package/dist/node_modules/lodash/_baseUnset.js +18 -0
- package/dist/node_modules/lodash/_cloneArrayBuffer.js +16 -0
- package/dist/node_modules/lodash/_cloneBuffer.js +20 -0
- package/dist/node_modules/lodash/_cloneDataView.js +16 -0
- package/dist/node_modules/lodash/_cloneRegExp.js +15 -0
- package/dist/node_modules/lodash/_cloneSymbol.js +15 -0
- package/dist/node_modules/lodash/_cloneTypedArray.js +16 -0
- package/dist/node_modules/lodash/_copyArray.js +16 -0
- package/dist/node_modules/lodash/_copyObject.js +22 -0
- package/dist/node_modules/lodash/_copySymbols.js +16 -0
- package/dist/node_modules/lodash/_copySymbolsIn.js +16 -0
- package/dist/node_modules/lodash/_customOmitClone.js +15 -0
- package/dist/node_modules/lodash/_flatRest.js +17 -0
- package/dist/node_modules/lodash/_getAllKeysIn.js +17 -0
- package/dist/node_modules/lodash/_getPrototype.js +12 -0
- package/dist/node_modules/lodash/_getSymbolsIn.js +19 -0
- package/dist/node_modules/lodash/_initCloneArray.js +15 -0
- package/dist/node_modules/lodash/_initCloneByTag.js +49 -0
- package/dist/node_modules/lodash/_initCloneObject.js +17 -0
- package/dist/node_modules/lodash/_nativeKeysIn.js +17 -0
- package/dist/node_modules/lodash/_parent.js +16 -0
- package/dist/node_modules/lodash/flatten.js +16 -0
- package/dist/node_modules/lodash/isMap.js +14 -0
- package/dist/node_modules/lodash/isPlainObject.js +23 -0
- package/dist/node_modules/lodash/isSet.js +14 -0
- package/dist/node_modules/lodash/keysIn.js +17 -0
- package/dist/node_modules/lodash/last.js +14 -0
- package/dist/node_modules/lodash/omit.js +30 -0
- package/dist/node_modules/memoize-one/dist/memoize-one.esm.js +28 -0
- package/dist/node_modules/react-window/dist/index.esm.js +375 -0
- package/dist/node_modules/style-to-object/cjs/index.js +1 -1
- package/dist/styles.css +1 -1
- package/package.json +8 -1
package/dist/index.js
CHANGED
|
@@ -1,303 +1,309 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
2
|
+
import { default as r } from "./components/ui/gantt/components/Gantt/Gantt.js";
|
|
3
|
+
import { AspectRatio as a } from "./components/ui/aspect-ratio.js";
|
|
4
|
+
import { Avatar as i, AvatarFallback as p, AvatarImage as l } from "./components/ui/avatar.js";
|
|
5
|
+
import { Badge as u, badgeVariants as x } from "./components/ui/badge.js";
|
|
6
|
+
import { Button as C, buttonVariants as b } from "./components/ui/button.js";
|
|
7
|
+
import { Checkbox as f } from "./components/ui/checkbox.js";
|
|
8
|
+
import { Collapsible as S, CollapsibleContent as M, CollapsibleTrigger as T } from "./components/ui/collapsible.js";
|
|
9
|
+
import { CopyButton as D } from "./components/ui/copy-button.js";
|
|
10
|
+
import { Icon as A } from "./components/ui/icon.js";
|
|
11
|
+
import { Input as h } from "./components/ui/input.js";
|
|
12
|
+
import { InputOTP as F, InputOTPGroup as G, InputOTPSlot as L } from "./components/ui/input-otp.js";
|
|
13
|
+
import { Label as w } from "./components/ui/label.js";
|
|
14
|
+
import { Progress as k } from "./components/ui/progress.js";
|
|
15
|
+
import { RadioGroup as y, RadioGroupItem as B } from "./components/ui/radio-group.js";
|
|
16
|
+
import { Separator as z } from "./components/ui/separator.js";
|
|
17
|
+
import { Skeleton as E } from "./components/ui/skeleton.js";
|
|
18
|
+
import { Switch as q } from "./components/ui/switch.js";
|
|
19
|
+
import { Textarea as K } from "./components/ui/textarea.js";
|
|
20
|
+
import { Toggle as U, toggleVariants as W } from "./components/ui/toggle.js";
|
|
21
|
+
import { Tooltip as Y, TooltipContent as Z, TooltipProvider as _, TooltipTrigger as $ } from "./components/ui/tooltip.js";
|
|
22
|
+
import { TypingIndicator as oe } from "./components/ui/typing-indicator.js";
|
|
23
|
+
import { Toaster as te } from "./components/ui/toaster.js";
|
|
24
|
+
import { Accordion as ne, AccordionContent as ie, AccordionItem as pe, AccordionTrigger as le } from "./components/ui/accordion.js";
|
|
25
|
+
import { Alert as ue, AlertDescription as xe, AlertTitle as ge } from "./components/ui/alert.js";
|
|
26
|
+
import { AlertDialog as be, AlertDialogAction as de, AlertDialogCancel as fe, AlertDialogContent as se, AlertDialogDescription as Se, AlertDialogFooter as Me, AlertDialogHeader as Te, AlertDialogTitle as ce, AlertDialogTrigger as De } from "./components/ui/alert-dialog.js";
|
|
27
|
+
import { AsyncSelect as Ae } from "./components/ui/async-select.js";
|
|
28
|
+
import { Calendar as he } from "./components/ui/calendar.js";
|
|
29
|
+
import { Card as Fe, CardContent as Ge, CardDescription as Le, CardFooter as Re, CardHeader as we, CardTitle as He } from "./components/ui/card.js";
|
|
30
|
+
import { Typo as Ne } from "./components/ui/typo.js";
|
|
31
|
+
import { Command as Be, CommandDialog as Ve, CommandEmpty as ze, CommandGroup as Oe, CommandInput as Ee, CommandItem as je, CommandList as qe, CommandSeparator as Je, CommandShortcut as Ke } from "./components/ui/command.js";
|
|
32
|
+
import { ContextMenu as Ue, ContextMenuCheckboxItem as We, ContextMenuContent as Xe, ContextMenuGroup as Ye, ContextMenuItem as Ze, ContextMenuLabel as _e, ContextMenuPortal as $e, ContextMenuRadioGroup as eo, ContextMenuRadioItem as oo, ContextMenuSeparator as ro, ContextMenuShortcut as to, ContextMenuSub as ao, ContextMenuSubContent as no, ContextMenuSubTrigger as io, ContextMenuTrigger as po } from "./components/ui/context-menu.js";
|
|
33
|
+
import { DatePicker as mo } from "./components/ui/date-picker.js";
|
|
34
|
+
import { InputSelector as xo } from "./components/ui/input-selector.js";
|
|
35
|
+
import { Dialog as Co, DialogContent as bo, DialogDescription as fo, DialogFooter as so, DialogHeader as So, DialogTitle as Mo, DialogTrigger as To } from "./components/ui/dialog.js";
|
|
36
|
+
import { Drawer as Do, DrawerContent as Io, DrawerDescription as Ao, DrawerFooter as Po, DrawerHeader as ho, DrawerTitle as vo, DrawerTrigger as Fo } from "./components/ui/drawer.js";
|
|
37
|
+
import { Form as Lo, FormControl as Ro, FormDescription as wo, FormField as Ho, FormItem as ko, FormLabel as No, FormMessage as yo, useFormField as Bo } from "./components/ui/form.js";
|
|
38
|
+
import { HoverCard as zo, HoverCardContent as Oo, HoverCardTrigger as Eo } from "./components/ui/hover-card.js";
|
|
39
|
+
import { Menubar as qo, MenubarCheckboxItem as Jo, MenubarContent as Ko, MenubarGroup as Qo, MenubarItem as Uo, MenubarLabel as Wo, MenubarMenu as Xo, MenubarPortal as Yo, MenubarRadioGroup as Zo, MenubarRadioItem as _o, MenubarSeparator as $o, MenubarShortcut as er, MenubarSub as or, MenubarSubContent as rr, MenubarSubTrigger as tr, MenubarTrigger as ar } from "./components/ui/menubar.js";
|
|
40
|
+
import { MultipleSelector as ir } from "./components/ui/multiple-selector.js";
|
|
41
|
+
import { Pagination as lr, PaginationContent as mr, PaginationEllipsis as ur, PaginationItem as xr, PaginationLink as gr, PaginationNext as Cr, PaginationPrevious as br } from "./components/ui/pagination.js";
|
|
42
|
+
import { Popover as fr, PopoverContent as sr, PopoverTrigger as Sr } from "./components/ui/popover.js";
|
|
43
|
+
import { PromptSuggestions as Tr } from "./components/ui/prompt-suggestions.js";
|
|
44
|
+
import { ResizableHandle as Dr, ResizablePanel as Ir, ResizablePanelGroup as Ar } from "./components/ui/resizable.js";
|
|
45
|
+
import { ScrollArea as hr, ScrollBar as vr } from "./components/ui/scroll-area.js";
|
|
46
|
+
import { Select as Gr, SelectContent as Lr, SelectGroup as Rr, SelectItem as wr, SelectLabel as Hr, SelectSeparator as kr, SelectTrigger as Nr, SelectValue as yr } from "./components/ui/select.js";
|
|
47
|
+
import { Sheet as Vr, SheetContent as zr, SheetDescription as Or, SheetFooter as Er, SheetHeader as jr, SheetTitle as qr, SheetTrigger as Jr } from "./components/ui/sheet.js";
|
|
48
|
+
import { Table as Qr, TableBody as Ur, TableCaption as Wr, TableCell as Xr, TableFooter as Yr, TableHead as Zr, TableHeader as _r, TableRow as $r } from "./components/ui/table.js";
|
|
49
|
+
import { Tabs as ot, TabsContent as rt, TabsList as tt, TabsTrigger as at } from "./components/ui/tabs.js";
|
|
50
|
+
import { ToggleGroup as it, ToggleGroupItem as pt } from "./components/ui/toggle-group.js";
|
|
51
|
+
import { AudioVisualizer as mt } from "./components/ui/audio-visualizer.js";
|
|
52
|
+
import { Carousel as xt, CarouselContent as gt, CarouselItem as Ct, CarouselNext as bt, CarouselPrevious as dt } from "./components/ui/carousel.js";
|
|
53
|
+
import { ChartContainer as st, ChartLegend as St, ChartLegendContent as Mt, ChartStyle as Tt, ChartTooltip as ct, ChartTooltipContent as Dt } from "./components/ui/chart.js";
|
|
54
|
+
import { Chat as At, ChatContainer as Pt, ChatForm as ht, ChatMessages as vt } from "./components/ui/chat.js";
|
|
55
|
+
import { ChatMessage as Gt } from "./components/ui/chat-message.js";
|
|
56
|
+
import { FilePreview as Rt } from "./components/ui/file-preview.js";
|
|
57
|
+
import { InterruptPrompt as Ht } from "./components/ui/interrupt-prompt.js";
|
|
58
|
+
import { MarkdownRenderer as Nt } from "./components/ui/markdown-renderer.js";
|
|
59
|
+
import { MessageInput as Bt } from "./components/ui/message-input.js";
|
|
60
|
+
import { MessageList as zt } from "./components/ui/message-list.js";
|
|
61
|
+
import { NavigationMenu as Et, NavigationMenuContent as jt, NavigationMenuIndicator as qt, NavigationMenuItem as Jt, NavigationMenuLink as Kt, NavigationMenuList as Qt, NavigationMenuTrigger as Ut, NavigationMenuViewport as Wt } from "./components/ui/navigation-menu.js";
|
|
62
|
+
import { Sidebar as Yt, SidebarContent as Zt, SidebarFooter as _t, SidebarGroup as $t, SidebarGroupAction as ea, SidebarGroupContent as oa, SidebarGroupLabel as ra, SidebarHeader as ta, SidebarInput as aa, SidebarInset as na, SidebarMenu as ia, SidebarMenuAction as pa, SidebarMenuBadge as la, SidebarMenuButton as ma, SidebarMenuItem as ua, SidebarMenuSkeleton as xa, SidebarMenuSub as ga, SidebarMenuSubButton as Ca, SidebarMenuSubItem as ba, SidebarProvider as da, SidebarRail as fa, SidebarSeparator as sa, SidebarTrigger as Sa, useSidebar as Ma } from "./components/ui/sidebar.js";
|
|
63
|
+
import { DataTable as ca } from "./components/ui/data-table.js";
|
|
64
|
+
import { GanttDimensions as Ia } from "./components/ui/gantt/enums/GanttDimensions.js";
|
|
65
|
+
import { GanttConsts as Pa } from "./components/ui/gantt/constants/GanttConsts.js";
|
|
66
|
+
import { useAudioRecording as va } from "./hooks/use-audio-recording.js";
|
|
67
|
+
import { useAutoScroll as Ga } from "./hooks/use-auto-scroll.js";
|
|
68
|
+
import { useAutosizeTextArea as Ra } from "./hooks/use-autosize-textarea.js";
|
|
69
|
+
import { useCopyToClipboard as Ha } from "./hooks/use-copy-to-clipboard.js";
|
|
70
|
+
import { useDebounce as Na } from "./hooks/use-debounce.js";
|
|
71
|
+
import { useIsMobile as Ba } from "./hooks/use-mobile.js";
|
|
69
72
|
export {
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
73
|
+
ne as Accordion,
|
|
74
|
+
ie as AccordionContent,
|
|
75
|
+
pe as AccordionItem,
|
|
76
|
+
le as AccordionTrigger,
|
|
77
|
+
ue as Alert,
|
|
78
|
+
xe as AlertDescription,
|
|
79
|
+
be as AlertDialog,
|
|
80
|
+
de as AlertDialogAction,
|
|
81
|
+
fe as AlertDialogCancel,
|
|
82
|
+
se as AlertDialogContent,
|
|
80
83
|
Se as AlertDialogDescription,
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
84
|
+
Me as AlertDialogFooter,
|
|
85
|
+
Te as AlertDialogHeader,
|
|
86
|
+
ce as AlertDialogTitle,
|
|
87
|
+
De as AlertDialogTrigger,
|
|
88
|
+
ge as AlertTitle,
|
|
89
|
+
a as AspectRatio,
|
|
90
|
+
Ae as AsyncSelect,
|
|
91
|
+
mt as AudioVisualizer,
|
|
92
|
+
i as Avatar,
|
|
93
|
+
p as AvatarFallback,
|
|
94
|
+
l as AvatarImage,
|
|
95
|
+
u as Badge,
|
|
96
|
+
C as Button,
|
|
97
|
+
he as Calendar,
|
|
98
|
+
Fe as Card,
|
|
99
|
+
Ge as CardContent,
|
|
100
|
+
Le as CardDescription,
|
|
101
|
+
Re as CardFooter,
|
|
102
|
+
we as CardHeader,
|
|
103
|
+
He as CardTitle,
|
|
104
|
+
xt as Carousel,
|
|
105
|
+
gt as CarouselContent,
|
|
106
|
+
Ct as CarouselItem,
|
|
107
|
+
bt as CarouselNext,
|
|
108
|
+
dt as CarouselPrevious,
|
|
109
|
+
st as ChartContainer,
|
|
107
110
|
St as ChartLegend,
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
111
|
+
Mt as ChartLegendContent,
|
|
112
|
+
Tt as ChartStyle,
|
|
113
|
+
ct as ChartTooltip,
|
|
114
|
+
Dt as ChartTooltipContent,
|
|
115
|
+
At as Chat,
|
|
116
|
+
Pt as ChatContainer,
|
|
117
|
+
ht as ChatForm,
|
|
118
|
+
Gt as ChatMessage,
|
|
119
|
+
vt as ChatMessages,
|
|
120
|
+
f as Checkbox,
|
|
118
121
|
S as Collapsible,
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
122
|
+
M as CollapsibleContent,
|
|
123
|
+
T as CollapsibleTrigger,
|
|
124
|
+
Be as Command,
|
|
125
|
+
Ve as CommandDialog,
|
|
126
|
+
ze as CommandEmpty,
|
|
127
|
+
Oe as CommandGroup,
|
|
128
|
+
Ee as CommandInput,
|
|
129
|
+
je as CommandItem,
|
|
130
|
+
qe as CommandList,
|
|
131
|
+
Je as CommandSeparator,
|
|
132
|
+
Ke as CommandShortcut,
|
|
133
|
+
Ue as ContextMenu,
|
|
134
|
+
We as ContextMenuCheckboxItem,
|
|
135
|
+
Xe as ContextMenuContent,
|
|
136
|
+
Ye as ContextMenuGroup,
|
|
137
|
+
Ze as ContextMenuItem,
|
|
138
|
+
_e as ContextMenuLabel,
|
|
139
|
+
$e as ContextMenuPortal,
|
|
140
|
+
eo as ContextMenuRadioGroup,
|
|
141
|
+
oo as ContextMenuRadioItem,
|
|
142
|
+
ro as ContextMenuSeparator,
|
|
143
|
+
to as ContextMenuShortcut,
|
|
144
|
+
ao as ContextMenuSub,
|
|
145
|
+
no as ContextMenuSubContent,
|
|
146
|
+
io as ContextMenuSubTrigger,
|
|
147
|
+
po as ContextMenuTrigger,
|
|
148
|
+
D as CopyButton,
|
|
149
|
+
ca as DataTable,
|
|
150
|
+
mo as DatePicker,
|
|
151
|
+
Co as Dialog,
|
|
152
|
+
bo as DialogContent,
|
|
153
|
+
fo as DialogDescription,
|
|
154
|
+
so as DialogFooter,
|
|
152
155
|
So as DialogHeader,
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
L as
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
ar as
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
mr as
|
|
214
|
-
|
|
215
|
-
xr as
|
|
216
|
-
|
|
217
|
-
|
|
156
|
+
Mo as DialogTitle,
|
|
157
|
+
To as DialogTrigger,
|
|
158
|
+
Do as Drawer,
|
|
159
|
+
Io as DrawerContent,
|
|
160
|
+
Ao as DrawerDescription,
|
|
161
|
+
Po as DrawerFooter,
|
|
162
|
+
ho as DrawerHeader,
|
|
163
|
+
vo as DrawerTitle,
|
|
164
|
+
Fo as DrawerTrigger,
|
|
165
|
+
Rt as FilePreview,
|
|
166
|
+
Lo as Form,
|
|
167
|
+
Ro as FormControl,
|
|
168
|
+
wo as FormDescription,
|
|
169
|
+
Ho as FormField,
|
|
170
|
+
ko as FormItem,
|
|
171
|
+
No as FormLabel,
|
|
172
|
+
yo as FormMessage,
|
|
173
|
+
r as Gantt,
|
|
174
|
+
Pa as GanttConsts,
|
|
175
|
+
Ia as GanttDimensions,
|
|
176
|
+
zo as HoverCard,
|
|
177
|
+
Oo as HoverCardContent,
|
|
178
|
+
Eo as HoverCardTrigger,
|
|
179
|
+
A as Icon,
|
|
180
|
+
h as Input,
|
|
181
|
+
F as InputOTP,
|
|
182
|
+
G as InputOTPGroup,
|
|
183
|
+
L as InputOTPSlot,
|
|
184
|
+
xo as InputSelector,
|
|
185
|
+
Ht as InterruptPrompt,
|
|
186
|
+
w as Label,
|
|
187
|
+
Nt as MarkdownRenderer,
|
|
188
|
+
qo as Menubar,
|
|
189
|
+
Jo as MenubarCheckboxItem,
|
|
190
|
+
Ko as MenubarContent,
|
|
191
|
+
Qo as MenubarGroup,
|
|
192
|
+
Uo as MenubarItem,
|
|
193
|
+
Wo as MenubarLabel,
|
|
194
|
+
Xo as MenubarMenu,
|
|
195
|
+
Yo as MenubarPortal,
|
|
196
|
+
Zo as MenubarRadioGroup,
|
|
197
|
+
_o as MenubarRadioItem,
|
|
198
|
+
$o as MenubarSeparator,
|
|
199
|
+
er as MenubarShortcut,
|
|
200
|
+
or as MenubarSub,
|
|
201
|
+
rr as MenubarSubContent,
|
|
202
|
+
tr as MenubarSubTrigger,
|
|
203
|
+
ar as MenubarTrigger,
|
|
204
|
+
Bt as MessageInput,
|
|
205
|
+
zt as MessageList,
|
|
206
|
+
ir as MultipleSelector,
|
|
207
|
+
Et as NavigationMenu,
|
|
208
|
+
jt as NavigationMenuContent,
|
|
209
|
+
qt as NavigationMenuIndicator,
|
|
210
|
+
Jt as NavigationMenuItem,
|
|
211
|
+
Kt as NavigationMenuLink,
|
|
212
|
+
Qt as NavigationMenuList,
|
|
213
|
+
Ut as NavigationMenuTrigger,
|
|
214
|
+
Wt as NavigationMenuViewport,
|
|
215
|
+
lr as Pagination,
|
|
216
|
+
mr as PaginationContent,
|
|
217
|
+
ur as PaginationEllipsis,
|
|
218
|
+
xr as PaginationItem,
|
|
219
|
+
gr as PaginationLink,
|
|
220
|
+
Cr as PaginationNext,
|
|
221
|
+
br as PaginationPrevious,
|
|
222
|
+
fr as Popover,
|
|
223
|
+
sr as PopoverContent,
|
|
218
224
|
Sr as PopoverTrigger,
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
225
|
+
k as Progress,
|
|
226
|
+
Tr as PromptSuggestions,
|
|
227
|
+
y as RadioGroup,
|
|
228
|
+
B as RadioGroupItem,
|
|
229
|
+
Dr as ResizableHandle,
|
|
230
|
+
Ir as ResizablePanel,
|
|
231
|
+
Ar as ResizablePanelGroup,
|
|
232
|
+
hr as ScrollArea,
|
|
233
|
+
vr as ScrollBar,
|
|
234
|
+
Gr as Select,
|
|
235
|
+
Lr as SelectContent,
|
|
236
|
+
Rr as SelectGroup,
|
|
237
|
+
wr as SelectItem,
|
|
238
|
+
Hr as SelectLabel,
|
|
239
|
+
kr as SelectSeparator,
|
|
240
|
+
Nr as SelectTrigger,
|
|
241
|
+
yr as SelectValue,
|
|
242
|
+
z as Separator,
|
|
243
|
+
Vr as Sheet,
|
|
244
|
+
zr as SheetContent,
|
|
245
|
+
Or as SheetDescription,
|
|
246
|
+
Er as SheetFooter,
|
|
247
|
+
jr as SheetHeader,
|
|
248
|
+
qr as SheetTitle,
|
|
249
|
+
Jr as SheetTrigger,
|
|
250
|
+
Yt as Sidebar,
|
|
251
|
+
Zt as SidebarContent,
|
|
252
|
+
_t as SidebarFooter,
|
|
253
|
+
$t as SidebarGroup,
|
|
254
|
+
ea as SidebarGroupAction,
|
|
255
|
+
oa as SidebarGroupContent,
|
|
256
|
+
ra as SidebarGroupLabel,
|
|
257
|
+
ta as SidebarHeader,
|
|
258
|
+
aa as SidebarInput,
|
|
259
|
+
na as SidebarInset,
|
|
260
|
+
ia as SidebarMenu,
|
|
261
|
+
pa as SidebarMenuAction,
|
|
262
|
+
la as SidebarMenuBadge,
|
|
263
|
+
ma as SidebarMenuButton,
|
|
264
|
+
ua as SidebarMenuItem,
|
|
265
|
+
xa as SidebarMenuSkeleton,
|
|
266
|
+
ga as SidebarMenuSub,
|
|
267
|
+
Ca as SidebarMenuSubButton,
|
|
268
|
+
ba as SidebarMenuSubItem,
|
|
269
|
+
da as SidebarProvider,
|
|
270
|
+
fa as SidebarRail,
|
|
271
|
+
sa as SidebarSeparator,
|
|
266
272
|
Sa as SidebarTrigger,
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
273
|
+
E as Skeleton,
|
|
274
|
+
q as Switch,
|
|
275
|
+
Qr as Table,
|
|
276
|
+
Ur as TableBody,
|
|
277
|
+
Wr as TableCaption,
|
|
278
|
+
Xr as TableCell,
|
|
279
|
+
Yr as TableFooter,
|
|
280
|
+
Zr as TableHead,
|
|
281
|
+
_r as TableHeader,
|
|
282
|
+
$r as TableRow,
|
|
283
|
+
ot as Tabs,
|
|
284
|
+
rt as TabsContent,
|
|
285
|
+
tt as TabsList,
|
|
286
|
+
at as TabsTrigger,
|
|
287
|
+
K as Textarea,
|
|
288
|
+
te as Toaster,
|
|
289
|
+
U as Toggle,
|
|
290
|
+
it as ToggleGroup,
|
|
291
|
+
pt as ToggleGroupItem,
|
|
292
|
+
Y as Tooltip,
|
|
293
|
+
Z as TooltipContent,
|
|
294
|
+
_ as TooltipProvider,
|
|
295
|
+
$ as TooltipTrigger,
|
|
296
|
+
oe as TypingIndicator,
|
|
297
|
+
Ne as Typo,
|
|
298
|
+
x as badgeVariants,
|
|
299
|
+
b as buttonVariants,
|
|
300
|
+
W as toggleVariants,
|
|
301
|
+
va as useAudioRecording,
|
|
302
|
+
Ga as useAutoScroll,
|
|
303
|
+
Ra as useAutosizeTextArea,
|
|
304
|
+
Ha as useCopyToClipboard,
|
|
305
|
+
Na as useDebounce,
|
|
306
|
+
Bo as useFormField,
|
|
307
|
+
Ba as useIsMobile,
|
|
308
|
+
Ma as useSidebar
|
|
303
309
|
};
|
package/dist/laif-ds.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--gantt-border-color-base: hsl(var(--border));--gantt-background-second: hsl(var(--muted));--gantt-background-main: hsl(var(--background));--gantt-primary: hsl(var(--primary));--gantt-text-color: hsl(var(--foreground));--gantt-text-color-inverse: hsl(var(--primary-foreground));--gantt-control-element-bg: hsl(var(--secondary));--gantt-font-size: .875rem;--gantt-border-radius: var(--radius);--gantt-font-family: var(--font-sans)}*,*:before,*:after{box-sizing:border-box}.gantt-wrap{display:flex;flex-direction:column;gap:8px;width:100%;height:100%;font-size:var(--gantt-font-size);font-family:var(--gantt-font-family)}.gantt-chart-wrap{position:relative;flex-grow:1;border:1px solid var(--gantt-border-color-base);background-color:var(--gantt-background-second);width:100%;overflow-x:auto}.gantt-scale-wrap{position:sticky;top:0;z-index:10}.gantt-scale-list{overflow:visible!important}.gantt-scale-item{border-right:none;background-color:var(--gantt-background-main)}.gantt-scale-title{display:flex;justify-content:center;align-items:center;border-left:1px solid var(--gantt-border-color-base);height:25px}.gantt-scale-steps{display:flex;height:25px}.gantt-scale-step{display:flex;justify-content:center;align-items:center;border:1px solid var(--gantt-border-color-base);border-right:none}.gantt-tree-wrap{position:sticky;left:0;flex-shrink:0;z-index:100;background-color:var(--gantt-background-second)}.gantt-tree-title{display:flex;position:sticky;top:0;justify-content:center;align-items:center;z-index:10;border-right:1px solid var(--gantt-border-color-base);border-bottom:1px solid var(--gantt-border-color-base);font-weight:700}.gantt-tree-inner-wrap{position:relative}.gantt-tree-list{overflow:visible!important}.gantt-tree-list-item{display:flex;align-items:center;cursor:pointer;border:none;border-right:1px solid var(--gantt-border-color-base);border-bottom:1px solid var(--gantt-border-color-base);padding:0;font-size:inherit;font-family:inherit;text-align:left}.gantt-tree-icon{margin-right:21px;margin-left:-45px;font-size:24px}.gantt-bars-wrap{position:absolute;top:0;left:0;width:100%}.gantt-bars-list{margin-top:50px;overflow:visible!important}
|