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