@brainfish-ai/components 0.4.5 → 0.4.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/index.d.ts CHANGED
@@ -11,6 +11,9 @@ import * as SwitchPrimitives from '@radix-ui/react-switch';
11
11
  import * as TooltipPrimitive from '@radix-ui/react-tooltip';
12
12
  import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
13
13
  import * as LabelPrimitive from '@radix-ui/react-label';
14
+ import * as PopoverPrimitive from '@radix-ui/react-popover';
15
+ import * as DialogPrimitive from '@radix-ui/react-dialog';
16
+ import { DialogProps } from '@radix-ui/react-dialog';
14
17
 
15
18
  declare function customColor(cssVariable: string, fallbackColor?: string): ({ opacityVariable, opacityValue }: {
16
19
  opacityVariable: string;
@@ -193,7 +196,7 @@ type ActionInputFormBlock = {
193
196
  initialValues: ActionInputs;
194
197
  schema: ActionInputsSchema;
195
198
  onSubmit?: (inputs: ActionInputs) => void;
196
- inputs?: ActionInput[];
199
+ inputs: ActionInput[];
197
200
  };
198
201
  type ActionInput = {
199
202
  name: string;
@@ -427,6 +430,7 @@ type GetActionInputs = {
427
430
  payload: {
428
431
  searchIntentId: string;
429
432
  actionId: string;
433
+ inputs: ActionInput[];
430
434
  schema: JSONSchema<ActionInputs>;
431
435
  initialValues: ActionInputs;
432
436
  onSubmit: (parameters: ActionInputs) => void;
@@ -584,6 +588,106 @@ declare const Label: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelPr
584
588
 
585
589
  declare const Input: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
586
590
 
591
+ declare const Popover: React.FC<PopoverPrimitive.PopoverProps>;
592
+ declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
593
+ declare const PopoverAnchor: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React.RefAttributes<HTMLDivElement>>;
594
+ declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
595
+
596
+ declare const Command: React.ForwardRefExoticComponent<Omit<{
597
+ children?: React.ReactNode;
598
+ } & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
599
+ ref?: React.Ref<HTMLDivElement> | undefined;
600
+ } & {
601
+ asChild?: boolean | undefined;
602
+ }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & {
603
+ label?: string | undefined;
604
+ shouldFilter?: boolean | undefined;
605
+ filter?: ((value: string, search: string, keywords?: string[] | undefined) => number) | undefined;
606
+ defaultValue?: string | undefined;
607
+ value?: string | undefined;
608
+ onValueChange?: ((value: string) => void) | undefined;
609
+ loop?: boolean | undefined;
610
+ disablePointerSelection?: boolean | undefined;
611
+ vimBindings?: boolean | undefined;
612
+ } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
613
+ declare const CommandDialog: ({ children, ...props }: DialogProps) => React.JSX.Element;
614
+ declare const CommandInput: React.ForwardRefExoticComponent<Omit<Omit<Pick<Pick<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "key" | keyof React.InputHTMLAttributes<HTMLInputElement>> & {
615
+ ref?: React.Ref<HTMLInputElement> | undefined;
616
+ } & {
617
+ asChild?: boolean | undefined;
618
+ }, "key" | "asChild" | keyof React.InputHTMLAttributes<HTMLInputElement>>, "onChange" | "type" | "value"> & {
619
+ value?: string | undefined;
620
+ onValueChange?: ((search: string) => void) | undefined;
621
+ } & React.RefAttributes<HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
622
+ declare const CommandList: React.ForwardRefExoticComponent<Omit<{
623
+ children?: React.ReactNode;
624
+ } & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
625
+ ref?: React.Ref<HTMLDivElement> | undefined;
626
+ } & {
627
+ asChild?: boolean | undefined;
628
+ }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & {
629
+ label?: string | undefined;
630
+ } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
631
+ declare const CommandEmpty: React.ForwardRefExoticComponent<Omit<{
632
+ children?: React.ReactNode;
633
+ } & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
634
+ ref?: React.Ref<HTMLDivElement> | undefined;
635
+ } & {
636
+ asChild?: boolean | undefined;
637
+ }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
638
+ declare const CommandGroup: React.ForwardRefExoticComponent<Omit<{
639
+ children?: React.ReactNode;
640
+ } & Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
641
+ ref?: React.Ref<HTMLDivElement> | undefined;
642
+ } & {
643
+ asChild?: boolean | undefined;
644
+ }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild">, "heading" | "value"> & {
645
+ heading?: React.ReactNode;
646
+ value?: string | undefined;
647
+ forceMount?: boolean | undefined;
648
+ } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
649
+ declare const CommandSeparator: React.ForwardRefExoticComponent<Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
650
+ ref?: React.Ref<HTMLDivElement> | undefined;
651
+ } & {
652
+ asChild?: boolean | undefined;
653
+ }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & {
654
+ alwaysRender?: boolean | undefined;
655
+ } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
656
+ declare const CommandItem: React.ForwardRefExoticComponent<Omit<{
657
+ children?: React.ReactNode;
658
+ } & Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
659
+ ref?: React.Ref<HTMLDivElement> | undefined;
660
+ } & {
661
+ asChild?: boolean | undefined;
662
+ }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "disabled" | "value"> & {
663
+ disabled?: boolean | undefined;
664
+ onSelect?: ((value: string) => void) | undefined;
665
+ value?: string | undefined;
666
+ keywords?: string[] | undefined;
667
+ forceMount?: boolean | undefined;
668
+ } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
669
+ declare const CommandShortcut: {
670
+ ({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): React.JSX.Element;
671
+ displayName: string;
672
+ };
673
+
674
+ declare const Dialog: React.FC<DialogPrimitive.DialogProps>;
675
+ declare const DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
676
+ declare const DialogPortal: React.FC<DialogPrimitive.DialogPortalProps>;
677
+ declare const DialogClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
678
+ declare const DialogOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
679
+ declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
680
+ declare const DialogHeader: {
681
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): React.JSX.Element;
682
+ displayName: string;
683
+ };
684
+ declare const DialogFooter: {
685
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): React.JSX.Element;
686
+ displayName: string;
687
+ };
688
+ declare const DialogTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
689
+ declare const DialogDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
690
+
587
691
  type SelectOption = {
588
692
  label: string;
589
693
  value: string;
@@ -606,4 +710,18 @@ interface DatePickerProps {
606
710
  }
607
711
  declare function DatePicker({ date, setDate, className, placeholder }: DatePickerProps): React.JSX.Element;
608
712
 
609
- export { type Answer, BrainfishColors, Button, type ButtonProps, ChatSearch, type ChatSearchHandle, type ChatSearchProps, ChatSearchProvider, type ChatSearchState, CodeBlock, Collapsible, CollapsibleContent, CollapsibleTrigger, type Collection, DatePicker, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FormattedMessage, Input, Label, MemoizedReactMarkdown, type MemoizedReactMarkdownProps, MermaidDiagram, type Props, ScrollArea, ScrollBar, type SelectOption, SimpleSelect, type SimpleSelectProps, Switch, Textarea, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, ZoomableImage, buttonVariants, customColor, useChatSearch, useIsChatSearchDirty };
713
+ interface ComboboxProps {
714
+ options: {
715
+ value: string;
716
+ label: string;
717
+ }[];
718
+ defaultValueLabel: string;
719
+ placeholder: string;
720
+ noResultsLabel: string;
721
+ className?: string;
722
+ onOpenChange?: (open: boolean) => void;
723
+ onChange?: (value: string) => void;
724
+ }
725
+ declare function Combobox({ options, defaultValueLabel, placeholder, noResultsLabel, className, onOpenChange, onChange, }: ComboboxProps): React.JSX.Element;
726
+
727
+ export { type Answer, BrainfishColors, Button, type ButtonProps, ChatSearch, type ChatSearchHandle, type ChatSearchProps, ChatSearchProvider, type ChatSearchState, CodeBlock, Collapsible, CollapsibleContent, CollapsibleTrigger, type Collection, Combobox, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, DatePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FormattedMessage, Input, Label, MemoizedReactMarkdown, type MemoizedReactMarkdownProps, MermaidDiagram, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type Props, ScrollArea, ScrollBar, type SelectOption, SimpleSelect, type SimpleSelectProps, Switch, Textarea, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, ZoomableImage, buttonVariants, customColor, useChatSearch, useIsChatSearchDirty };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brainfish-ai/components",
3
- "version": "0.4.5",
3
+ "version": "0.4.7",
4
4
  "description": "Brainfish Components",
5
5
  "license": "MIT",
6
6
  "module": "./dist/esm/index.js",
@@ -120,6 +120,7 @@
120
120
  "@paralleldrive/cuid2": "^2.2.2",
121
121
  "@phosphor-icons/react": "^2.1.7",
122
122
  "@radix-ui/react-collapsible": "^1.1.2",
123
+ "@radix-ui/react-dialog": "^1.1.7",
123
124
  "@radix-ui/react-dropdown-menu": "^2.1.4",
124
125
  "@radix-ui/react-icons": "^1.3.2",
125
126
  "@radix-ui/react-label": "^2.1.2",
@@ -131,12 +132,13 @@
131
132
  "ajv": "^8.17.1",
132
133
  "ajv-errors": "^3.0.0",
133
134
  "ajv-formats": "^3.0.1",
135
+ "cmdk": "^1.1.1",
134
136
  "date-fns": "^4.1.0",
135
137
  "framer-motion": "^11.15.0",
136
138
  "immer": "^10.1.1",
137
139
  "mermaid": "^11.4.0",
138
140
  "path-to-regexp": "^8.2.0",
139
- "react-day-picker": "^9.6.1",
141
+ "react-day-picker": "^8.9.1",
140
142
  "react-hook-form": "^7.54.2",
141
143
  "react-markdown": "^9.0.3",
142
144
  "react-syntax-highlighter": "^15.6.1",
package/stats.html CHANGED
@@ -4929,7 +4929,7 @@ var drawChart = (function (exports) {
4929
4929
  </script>
4930
4930
  <script>
4931
4931
  /*<!--*/
4932
- const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src","children":[{"name":"colors","children":[{"uid":"867c5071-1","name":"customColor.ts"},{"uid":"867c5071-3","name":"dark.ts"},{"uid":"867c5071-5","name":"primary.ts"},{"uid":"867c5071-7","name":"orange.ts"},{"uid":"867c5071-9","name":"yellow.ts"},{"uid":"867c5071-11","name":"green.ts"},{"uid":"867c5071-13","name":"blue.ts"},{"uid":"867c5071-15","name":"purple.ts"},{"uid":"867c5071-17","name":"pink.ts"},{"uid":"867c5071-19","name":"red.ts"},{"uid":"867c5071-21","name":"index.ts"}]},{"name":"lib","children":[{"uid":"867c5071-25","name":"utils.ts"},{"uid":"867c5071-107","name":"fetchClient.ts"},{"uid":"867c5071-109","name":"api.ts"},{"uid":"867c5071-143","name":"feature-flags.tsx"},{"uid":"867c5071-145","name":"hooks.ts"}]},{"name":"components","children":[{"name":"ui","children":[{"uid":"867c5071-27","name":"tooltip.tsx"},{"uid":"867c5071-33","name":"button.tsx"},{"uid":"867c5071-37","name":"input.tsx"},{"uid":"867c5071-39","name":"label.tsx"},{"uid":"867c5071-41","name":"textarea.tsx"},{"uid":"867c5071-83","name":"icon.tsx"},{"uid":"867c5071-93","name":"collapsible.tsx"},{"uid":"867c5071-129","name":"dropdown-menu.tsx"},{"uid":"867c5071-147","name":"scroll-area.tsx"},{"uid":"867c5071-151","name":"switch.tsx"},{"uid":"867c5071-153","name":"select.tsx"},{"uid":"867c5071-157","name":"calendar.tsx"},{"uid":"867c5071-159","name":"popover.tsx"}]},{"name":"chat-search","children":[{"uid":"867c5071-35","name":"Suggestions.tsx"},{"name":"blocks","children":[{"uid":"867c5071-43","name":"ActionInputForm.tsx"},{"uid":"867c5071-45","name":"ActionButtons.tsx"},{"uid":"867c5071-77","name":"MarkdownText.tsx"},{"uid":"867c5071-81","name":"utils.ts"}]},{"uid":"867c5071-79","name":"AnswerBlock.tsx"},{"uid":"867c5071-85","name":"NextBestActions.tsx"},{"uid":"867c5071-87","name":"types.ts"},{"name":"helpers/nextBestActions.ts","uid":"867c5071-89"},{"uid":"867c5071-91","name":"AnswerActions.tsx"},{"name":"hooks","children":[{"uid":"867c5071-97","name":"useAnswerList.ts"},{"uid":"867c5071-99","name":"useConversationId.ts"},{"uid":"867c5071-103","name":"useIsChatSearchDirty.ts"},{"uid":"867c5071-105","name":"useScrollManager.ts"},{"uid":"867c5071-111","name":"useConversationLoader.ts"},{"uid":"867c5071-113","name":"useSubscriptionManager.ts"},{"uid":"867c5071-115","name":"useDarkMode.ts"},{"uid":"867c5071-117","name":"useAccessibleColor.ts"}]},{"uid":"867c5071-101","name":"ChatSearchContext.tsx"},{"uid":"867c5071-121","name":"Answer.tsx"},{"uid":"867c5071-123","name":"FollowUpQuestions.tsx"},{"uid":"867c5071-125","name":"TimelineNavigation.tsx"},{"uid":"867c5071-127","name":"ScrollToBottomArrow.tsx"},{"uid":"867c5071-131","name":"PrimarySearch.tsx"},{"uid":"867c5071-133","name":"FollowUpSearchBar.module.css"},{"uid":"867c5071-135","name":"FollowUpSearchBar.tsx"},{"uid":"867c5071-137","name":"Header.tsx"},{"uid":"867c5071-139","name":"text-config.ts"},{"uid":"867c5071-141","name":"LoadingConversation.tsx"},{"uid":"867c5071-149","name":"ChatSearch.tsx"}]},{"name":"markdown","children":[{"name":"utils","children":[{"uid":"867c5071-47","name":"codeblock.ts"},{"uid":"867c5071-73","name":"stripNewLines.ts"}]},{"uid":"867c5071-49","name":"CodeBlock.tsx"},{"uid":"867c5071-51","name":"Frame.tsx"},{"name":"embeds","children":[{"uid":"867c5071-53","name":"Loom.tsx"},{"uid":"867c5071-55","name":"Supademo.tsx"},{"uid":"867c5071-57","name":"Typeform.tsx"},{"uid":"867c5071-59","name":"Vimeo.tsx"},{"uid":"867c5071-61","name":"Wistia.tsx"},{"uid":"867c5071-63","name":"Youtube.tsx"},{"uid":"867c5071-65","name":"index.tsx"}]},{"uid":"867c5071-67","name":"MemoizedReactMarkdown.tsx"},{"uid":"867c5071-69","name":"MermaidDiagram.tsx"},{"uid":"867c5071-71","name":"ZoomableImage.tsx"},{"uid":"867c5071-75","name":"FormattedMessage.tsx"}]},{"name":"feedback/feedback.tsx","uid":"867c5071-95"},{"name":"generating-star/generating-star.tsx","uid":"867c5071-119"},{"name":"select/simpleSelect.tsx","uid":"867c5071-155"},{"name":"date-picker/date-picker.tsx","uid":"867c5071-161"}]},{"uid":"867c5071-163","name":"index.ts"}]},{"name":"node_modules","children":[{"name":"tslib/tslib.es6.js","uid":"867c5071-23"},{"name":"@radix-ui","children":[{"name":"react-compose-refs/dist/index.mjs","uid":"867c5071-29"},{"name":"react-slot/dist/index.mjs","uid":"867c5071-31"}]}]}]}],"isRoot":true},"nodeParts":{"867c5071-1":{"renderedLength":354,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-0"},"867c5071-3":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-2"},"867c5071-5":{"renderedLength":344,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-4"},"867c5071-7":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-6"},"867c5071-9":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-8"},"867c5071-11":{"renderedLength":248,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-10"},"867c5071-13":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-12"},"867c5071-15":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-14"},"867c5071-17":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-16"},"867c5071-19":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-18"},"867c5071-21":{"renderedLength":127,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-20"},"867c5071-23":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-22"},"867c5071-25":{"renderedLength":2527,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-24"},"867c5071-27":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-26"},"867c5071-29":{"renderedLength":802,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-28"},"867c5071-31":{"renderedLength":3014,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-30"},"867c5071-33":{"renderedLength":1710,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-32"},"867c5071-35":{"renderedLength":1526,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-34"},"867c5071-37":{"renderedLength":626,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-36"},"867c5071-39":{"renderedLength":407,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-38"},"867c5071-41":{"renderedLength":527,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-40"},"867c5071-43":{"renderedLength":3643,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-42"},"867c5071-45":{"renderedLength":110,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-44"},"867c5071-47":{"renderedLength":944,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-46"},"867c5071-49":{"renderedLength":2826,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-48"},"867c5071-51":{"renderedLength":1997,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-50"},"867c5071-53":{"renderedLength":349,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-52"},"867c5071-55":{"renderedLength":279,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-54"},"867c5071-57":{"renderedLength":392,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-56"},"867c5071-59":{"renderedLength":1009,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-58"},"867c5071-61":{"renderedLength":1862,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-60"},"867c5071-63":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-62"},"867c5071-65":{"renderedLength":768,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-64"},"867c5071-67":{"renderedLength":170,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-66"},"867c5071-69":{"renderedLength":1855,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-68"},"867c5071-71":{"renderedLength":4117,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-70"},"867c5071-73":{"renderedLength":75,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-72"},"867c5071-75":{"renderedLength":9028,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-74"},"867c5071-77":{"renderedLength":1064,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-76"},"867c5071-79":{"renderedLength":532,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-78"},"867c5071-81":{"renderedLength":620,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-80"},"867c5071-83":{"renderedLength":980,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-82"},"867c5071-85":{"renderedLength":3985,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-84"},"867c5071-87":{"renderedLength":588,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-86"},"867c5071-89":{"renderedLength":2142,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-88"},"867c5071-91":{"renderedLength":2034,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-90"},"867c5071-93":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-92"},"867c5071-95":{"renderedLength":4585,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-94"},"867c5071-97":{"renderedLength":8860,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-96"},"867c5071-99":{"renderedLength":1664,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-98"},"867c5071-101":{"renderedLength":2227,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-100"},"867c5071-103":{"renderedLength":177,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-102"},"867c5071-105":{"renderedLength":1409,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-104"},"867c5071-107":{"renderedLength":3720,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-106"},"867c5071-109":{"renderedLength":3919,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-108"},"867c5071-111":{"renderedLength":2797,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-110"},"867c5071-113":{"renderedLength":1130,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-112"},"867c5071-115":{"renderedLength":521,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-114"},"867c5071-117":{"renderedLength":921,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-116"},"867c5071-119":{"renderedLength":2637,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-118"},"867c5071-121":{"renderedLength":6812,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-120"},"867c5071-123":{"renderedLength":1203,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-122"},"867c5071-125":{"renderedLength":4169,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-124"},"867c5071-127":{"renderedLength":335,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-126"},"867c5071-129":{"renderedLength":6222,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-128"},"867c5071-131":{"renderedLength":12791,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-130"},"867c5071-133":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-132"},"867c5071-135":{"renderedLength":3631,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-134"},"867c5071-137":{"renderedLength":2182,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-136"},"867c5071-139":{"renderedLength":2318,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-138"},"867c5071-141":{"renderedLength":636,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-140"},"867c5071-143":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-142"},"867c5071-145":{"renderedLength":1815,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-144"},"867c5071-147":{"renderedLength":1348,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-146"},"867c5071-149":{"renderedLength":26872,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-148"},"867c5071-151":{"renderedLength":922,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-150"},"867c5071-153":{"renderedLength":3678,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-152"},"867c5071-155":{"renderedLength":673,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-154"},"867c5071-157":{"renderedLength":373,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-156"},"867c5071-159":{"renderedLength":983,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-158"},"867c5071-161":{"renderedLength":753,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-160"},"867c5071-163":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"867c5071-162"}},"nodeMetas":{"867c5071-0":{"id":"/src/colors/customColor.ts","moduleParts":{"index.js":"867c5071-1"},"imported":[],"importedBy":[{"uid":"867c5071-20"},{"uid":"867c5071-4"}]},"867c5071-2":{"id":"/src/colors/dark.ts","moduleParts":{"index.js":"867c5071-3"},"imported":[],"importedBy":[{"uid":"867c5071-20"},{"uid":"867c5071-4"}]},"867c5071-4":{"id":"/src/colors/primary.ts","moduleParts":{"index.js":"867c5071-5"},"imported":[{"uid":"867c5071-0"},{"uid":"867c5071-2"}],"importedBy":[{"uid":"867c5071-20"}]},"867c5071-6":{"id":"/src/colors/orange.ts","moduleParts":{"index.js":"867c5071-7"},"imported":[],"importedBy":[{"uid":"867c5071-20"}]},"867c5071-8":{"id":"/src/colors/yellow.ts","moduleParts":{"index.js":"867c5071-9"},"imported":[],"importedBy":[{"uid":"867c5071-20"}]},"867c5071-10":{"id":"/src/colors/green.ts","moduleParts":{"index.js":"867c5071-11"},"imported":[],"importedBy":[{"uid":"867c5071-20"}]},"867c5071-12":{"id":"/src/colors/blue.ts","moduleParts":{"index.js":"867c5071-13"},"imported":[],"importedBy":[{"uid":"867c5071-20"}]},"867c5071-14":{"id":"/src/colors/purple.ts","moduleParts":{"index.js":"867c5071-15"},"imported":[],"importedBy":[{"uid":"867c5071-20"}]},"867c5071-16":{"id":"/src/colors/pink.ts","moduleParts":{"index.js":"867c5071-17"},"imported":[],"importedBy":[{"uid":"867c5071-20"}]},"867c5071-18":{"id":"/src/colors/red.ts","moduleParts":{"index.js":"867c5071-19"},"imported":[],"importedBy":[{"uid":"867c5071-20"}]},"867c5071-20":{"id":"/src/colors/index.ts","moduleParts":{"index.js":"867c5071-21"},"imported":[{"uid":"867c5071-4"},{"uid":"867c5071-2"},{"uid":"867c5071-6"},{"uid":"867c5071-8"},{"uid":"867c5071-10"},{"uid":"867c5071-12"},{"uid":"867c5071-14"},{"uid":"867c5071-16"},{"uid":"867c5071-18"},{"uid":"867c5071-0"}],"importedBy":[{"uid":"867c5071-162"}]},"867c5071-22":{"id":"/node_modules/tslib/tslib.es6.js","moduleParts":{"index.js":"867c5071-23"},"imported":[],"importedBy":[{"uid":"867c5071-32"},{"uid":"867c5071-92"},{"uid":"867c5071-128"},{"uid":"867c5071-150"},{"uid":"867c5071-26"},{"uid":"867c5071-40"},{"uid":"867c5071-146"},{"uid":"867c5071-38"},{"uid":"867c5071-36"},{"uid":"867c5071-148"},{"uid":"867c5071-48"},{"uid":"867c5071-74"},{"uid":"867c5071-68"},{"uid":"867c5071-120"},{"uid":"867c5071-136"},{"uid":"867c5071-144"},{"uid":"867c5071-108"},{"uid":"867c5071-82"},{"uid":"867c5071-152"},{"uid":"867c5071-156"},{"uid":"867c5071-158"},{"uid":"867c5071-106"},{"uid":"867c5071-118"}]},"867c5071-24":{"id":"/src/lib/utils.ts","moduleParts":{"index.js":"867c5071-25"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-189"},{"uid":"867c5071-190"}],"importedBy":[{"uid":"867c5071-32"},{"uid":"867c5071-128"},{"uid":"867c5071-150"},{"uid":"867c5071-26"},{"uid":"867c5071-40"},{"uid":"867c5071-146"},{"uid":"867c5071-38"},{"uid":"867c5071-36"},{"uid":"867c5071-148"},{"uid":"867c5071-74"},{"uid":"867c5071-154"},{"uid":"867c5071-160"},{"uid":"867c5071-124"},{"uid":"867c5071-130"},{"uid":"867c5071-134"},{"uid":"867c5071-136"},{"uid":"867c5071-152"},{"uid":"867c5071-156"},{"uid":"867c5071-158"},{"uid":"867c5071-110"},{"uid":"867c5071-116"},{"uid":"867c5071-42"},{"uid":"867c5071-118"}]},"867c5071-26":{"id":"/src/components/ui/tooltip.tsx","moduleParts":{"index.js":"867c5071-27"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-175"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-162"},{"uid":"867c5071-34"},{"uid":"867c5071-120"},{"uid":"867c5071-124"},{"uid":"867c5071-94"}]},"867c5071-28":{"id":"/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","moduleParts":{"index.js":"867c5071-29"},"imported":[{"uid":"867c5071-169"}],"importedBy":[{"uid":"867c5071-30"}]},"867c5071-30":{"id":"/node_modules/@radix-ui/react-slot/dist/index.mjs","moduleParts":{"index.js":"867c5071-31"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-28"},{"uid":"867c5071-188"}],"importedBy":[{"uid":"867c5071-32"}]},"867c5071-32":{"id":"/src/components/ui/button.tsx","moduleParts":{"index.js":"867c5071-33"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-30"},{"uid":"867c5071-170"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-162"},{"uid":"867c5071-48"},{"uid":"867c5071-160"},{"uid":"867c5071-34"},{"uid":"867c5071-120"},{"uid":"867c5071-122"},{"uid":"867c5071-84"},{"uid":"867c5071-126"},{"uid":"867c5071-130"},{"uid":"867c5071-134"},{"uid":"867c5071-136"},{"uid":"867c5071-42"},{"uid":"867c5071-94"}]},"867c5071-34":{"id":"/src/components/chat-search/Suggestions.tsx","moduleParts":{"index.js":"867c5071-35"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-26"},{"uid":"867c5071-32"}],"importedBy":[{"uid":"867c5071-148"}]},"867c5071-36":{"id":"/src/components/ui/input.tsx","moduleParts":{"index.js":"867c5071-37"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-162"},{"uid":"867c5071-42"}]},"867c5071-38":{"id":"/src/components/ui/label.tsx","moduleParts":{"index.js":"867c5071-39"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-177"},{"uid":"867c5071-170"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-162"},{"uid":"867c5071-42"}]},"867c5071-40":{"id":"/src/components/ui/textarea.tsx","moduleParts":{"index.js":"867c5071-41"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-162"},{"uid":"867c5071-134"},{"uid":"867c5071-42"}]},"867c5071-42":{"id":"/src/components/chat-search/blocks/ActionInputForm.tsx","moduleParts":{"index.js":"867c5071-43"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-202"},{"uid":"867c5071-203"},{"uid":"867c5071-180"},{"uid":"867c5071-32"},{"uid":"867c5071-36"},{"uid":"867c5071-38"},{"uid":"867c5071-40"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-78"}]},"867c5071-44":{"id":"/src/components/chat-search/blocks/ActionButtons.tsx","moduleParts":{"index.js":"867c5071-45"},"imported":[],"importedBy":[{"uid":"867c5071-78"}]},"867c5071-46":{"id":"/src/components/markdown/utils/codeblock.ts","moduleParts":{"index.js":"867c5071-47"},"imported":[],"importedBy":[{"uid":"867c5071-48"}]},"867c5071-48":{"id":"/src/components/markdown/CodeBlock.tsx","moduleParts":{"index.js":"867c5071-49"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-180"},{"uid":"867c5071-181"},{"uid":"867c5071-182"},{"uid":"867c5071-32"},{"uid":"867c5071-46"}],"importedBy":[{"uid":"867c5071-166"},{"uid":"867c5071-74"}]},"867c5071-50":{"id":"/src/components/markdown/Frame.tsx","moduleParts":{"index.js":"867c5071-51"},"imported":[{"uid":"867c5071-169"}],"importedBy":[{"uid":"867c5071-166"},{"uid":"867c5071-52"},{"uid":"867c5071-54"},{"uid":"867c5071-56"},{"uid":"867c5071-58"},{"uid":"867c5071-60"},{"uid":"867c5071-62"}]},"867c5071-52":{"id":"/src/components/markdown/embeds/Loom.tsx","moduleParts":{"index.js":"867c5071-53"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-50"}],"importedBy":[{"uid":"867c5071-64"}]},"867c5071-54":{"id":"/src/components/markdown/embeds/Supademo.tsx","moduleParts":{"index.js":"867c5071-55"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-50"}],"importedBy":[{"uid":"867c5071-64"}]},"867c5071-56":{"id":"/src/components/markdown/embeds/Typeform.tsx","moduleParts":{"index.js":"867c5071-57"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-50"}],"importedBy":[{"uid":"867c5071-64"}]},"867c5071-58":{"id":"/src/components/markdown/embeds/Vimeo.tsx","moduleParts":{"index.js":"867c5071-59"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-50"}],"importedBy":[{"uid":"867c5071-64"}]},"867c5071-60":{"id":"/src/components/markdown/embeds/Wistia.tsx","moduleParts":{"index.js":"867c5071-61"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-50"}],"importedBy":[{"uid":"867c5071-64"}]},"867c5071-62":{"id":"/src/components/markdown/embeds/Youtube.tsx","moduleParts":{"index.js":"867c5071-63"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-50"}],"importedBy":[{"uid":"867c5071-64"}]},"867c5071-64":{"id":"/src/components/markdown/embeds/index.tsx","moduleParts":{"index.js":"867c5071-65"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-52"},{"uid":"867c5071-54"},{"uid":"867c5071-56"},{"uid":"867c5071-58"},{"uid":"867c5071-60"},{"uid":"867c5071-62"}],"importedBy":[{"uid":"867c5071-74"}]},"867c5071-66":{"id":"/src/components/markdown/MemoizedReactMarkdown.tsx","moduleParts":{"index.js":"867c5071-67"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-186"}],"importedBy":[{"uid":"867c5071-166"},{"uid":"867c5071-74"}]},"867c5071-68":{"id":"/src/components/markdown/MermaidDiagram.tsx","moduleParts":{"index.js":"867c5071-69"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-187"}],"importedBy":[{"uid":"867c5071-166"},{"uid":"867c5071-74"}]},"867c5071-70":{"id":"/src/components/markdown/ZoomableImage.tsx","moduleParts":{"index.js":"867c5071-71"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-178"},{"uid":"867c5071-180"}],"importedBy":[{"uid":"867c5071-166"},{"uid":"867c5071-74"}]},"867c5071-72":{"id":"/src/components/markdown/utils/stripNewLines.ts","moduleParts":{"index.js":"867c5071-73"},"imported":[],"importedBy":[{"uid":"867c5071-74"}]},"867c5071-74":{"id":"/src/components/markdown/FormattedMessage.tsx","moduleParts":{"index.js":"867c5071-75"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-183"},{"uid":"867c5071-184"},{"uid":"867c5071-185"},{"uid":"867c5071-48"},{"uid":"867c5071-64"},{"uid":"867c5071-66"},{"uid":"867c5071-68"},{"uid":"867c5071-70"},{"uid":"867c5071-72"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-166"},{"uid":"867c5071-76"}]},"867c5071-76":{"id":"/src/components/chat-search/blocks/MarkdownText.tsx","moduleParts":{"index.js":"867c5071-77"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-74"}],"importedBy":[{"uid":"867c5071-78"}]},"867c5071-78":{"id":"/src/components/chat-search/AnswerBlock.tsx","moduleParts":{"index.js":"867c5071-79"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-42"},{"uid":"867c5071-44"},{"uid":"867c5071-76"}],"importedBy":[{"uid":"867c5071-120"}]},"867c5071-80":{"id":"/src/components/chat-search/blocks/utils.ts","moduleParts":{"index.js":"867c5071-81"},"imported":[{"uid":"867c5071-196"}],"importedBy":[{"uid":"867c5071-120"},{"uid":"867c5071-96"},{"uid":"867c5071-110"}]},"867c5071-82":{"id":"/src/components/ui/icon.tsx","moduleParts":{"index.js":"867c5071-83"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-180","dynamic":true}],"importedBy":[{"uid":"867c5071-148"},{"uid":"867c5071-84"}]},"867c5071-84":{"id":"/src/components/chat-search/NextBestActions.tsx","moduleParts":{"index.js":"867c5071-85"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-178"},{"uid":"867c5071-82"},{"uid":"867c5071-32"}],"importedBy":[{"uid":"867c5071-148"},{"uid":"867c5071-90"}]},"867c5071-86":{"id":"/src/components/chat-search/types.ts","moduleParts":{"index.js":"867c5071-87"},"imported":[],"importedBy":[{"uid":"867c5071-88"}]},"867c5071-88":{"id":"/src/components/chat-search/helpers/nextBestActions.ts","moduleParts":{"index.js":"867c5071-89"},"imported":[{"uid":"867c5071-86"}],"importedBy":[{"uid":"867c5071-90"}]},"867c5071-90":{"id":"/src/components/chat-search/AnswerActions.tsx","moduleParts":{"index.js":"867c5071-91"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-84"},{"uid":"867c5071-88"}],"importedBy":[{"uid":"867c5071-120"}]},"867c5071-92":{"id":"/src/components/ui/collapsible.tsx","moduleParts":{"index.js":"867c5071-93"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-171"}],"importedBy":[{"uid":"867c5071-162"},{"uid":"867c5071-120"}]},"867c5071-94":{"id":"/src/components/feedback/feedback.tsx","moduleParts":{"index.js":"867c5071-95"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-180"},{"uid":"867c5071-178"},{"uid":"867c5071-32"},{"uid":"867c5071-26"}],"importedBy":[{"uid":"867c5071-193"}]},"867c5071-96":{"id":"/src/components/chat-search/hooks/useAnswerList.ts","moduleParts":{"index.js":"867c5071-97"},"imported":[{"uid":"867c5071-196"},{"uid":"867c5071-197"},{"uid":"867c5071-80"}],"importedBy":[{"uid":"867c5071-148"},{"uid":"867c5071-100"},{"uid":"867c5071-110"}]},"867c5071-98":{"id":"/src/components/chat-search/hooks/useConversationId.ts","moduleParts":{"index.js":"867c5071-99"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-198"}],"importedBy":[{"uid":"867c5071-100"}]},"867c5071-100":{"id":"/src/components/chat-search/ChatSearchContext.tsx","moduleParts":{"index.js":"867c5071-101"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-96"},{"uid":"867c5071-98"}],"importedBy":[{"uid":"867c5071-165"},{"uid":"867c5071-148"},{"uid":"867c5071-102"},{"uid":"867c5071-136"},{"uid":"867c5071-195"},{"uid":"867c5071-110"},{"uid":"867c5071-112"}]},"867c5071-102":{"id":"/src/components/chat-search/hooks/useIsChatSearchDirty.ts","moduleParts":{"index.js":"867c5071-103"},"imported":[{"uid":"867c5071-100"}],"importedBy":[{"uid":"867c5071-165"},{"uid":"867c5071-136"},{"uid":"867c5071-179"}]},"867c5071-104":{"id":"/src/components/chat-search/hooks/useScrollManager.ts","moduleParts":{"index.js":"867c5071-105"},"imported":[],"importedBy":[{"uid":"867c5071-179"}]},"867c5071-106":{"id":"/src/lib/fetchClient.ts","moduleParts":{"index.js":"867c5071-107"},"imported":[{"uid":"867c5071-22"}],"importedBy":[{"uid":"867c5071-108"}]},"867c5071-108":{"id":"/src/lib/api.ts","moduleParts":{"index.js":"867c5071-109"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-196"},{"uid":"867c5071-106"}],"importedBy":[{"uid":"867c5071-148"},{"uid":"867c5071-144"},{"uid":"867c5071-110"}]},"867c5071-110":{"id":"/src/components/chat-search/hooks/useConversationLoader.ts","moduleParts":{"index.js":"867c5071-111"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-198"},{"uid":"867c5071-100"},{"uid":"867c5071-96"},{"uid":"867c5071-80"},{"uid":"867c5071-24"},{"uid":"867c5071-108"}],"importedBy":[{"uid":"867c5071-179"}]},"867c5071-112":{"id":"/src/components/chat-search/hooks/useSubscriptionManager.ts","moduleParts":{"index.js":"867c5071-113"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-100"}],"importedBy":[{"uid":"867c5071-179"}]},"867c5071-114":{"id":"/src/components/chat-search/hooks/useDarkMode.ts","moduleParts":{"index.js":"867c5071-115"},"imported":[{"uid":"867c5071-169"}],"importedBy":[{"uid":"867c5071-179"},{"uid":"867c5071-116"}]},"867c5071-116":{"id":"/src/components/chat-search/hooks/useAccessibleColor.ts","moduleParts":{"index.js":"867c5071-117"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-114"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-179"}]},"867c5071-118":{"id":"/src/components/generating-star/generating-star.tsx","moduleParts":{"index.js":"867c5071-119"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-179"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-194"}]},"867c5071-120":{"id":"/src/components/chat-search/Answer.tsx","moduleParts":{"index.js":"867c5071-121"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-180"},{"uid":"867c5071-32"},{"uid":"867c5071-78"},{"uid":"867c5071-80"},{"uid":"867c5071-90"},{"uid":"867c5071-92"},{"uid":"867c5071-193"},{"uid":"867c5071-194"},{"uid":"867c5071-26"}],"importedBy":[{"uid":"867c5071-148"}]},"867c5071-122":{"id":"/src/components/chat-search/FollowUpQuestions.tsx","moduleParts":{"index.js":"867c5071-123"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-178"},{"uid":"867c5071-180"},{"uid":"867c5071-32"}],"importedBy":[{"uid":"867c5071-148"}]},"867c5071-124":{"id":"/src/components/chat-search/TimelineNavigation.tsx","moduleParts":{"index.js":"867c5071-125"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-180"},{"uid":"867c5071-178"},{"uid":"867c5071-26"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-148"}]},"867c5071-126":{"id":"/src/components/chat-search/ScrollToBottomArrow.tsx","moduleParts":{"index.js":"867c5071-127"},"imported":[{"uid":"867c5071-180"},{"uid":"867c5071-169"},{"uid":"867c5071-32"}],"importedBy":[{"uid":"867c5071-148"}]},"867c5071-128":{"id":"/src/components/ui/dropdown-menu.tsx","moduleParts":{"index.js":"867c5071-129"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-172"},{"uid":"867c5071-24"},{"uid":"867c5071-173"}],"importedBy":[{"uid":"867c5071-162"},{"uid":"867c5071-130"}]},"867c5071-130":{"id":"/src/components/chat-search/PrimarySearch.tsx","moduleParts":{"index.js":"867c5071-131"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-178"},{"uid":"867c5071-180"},{"uid":"867c5071-32"},{"uid":"867c5071-128"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-148"}]},"867c5071-132":{"id":"/src/components/chat-search/FollowUpSearchBar.module.css","moduleParts":{"index.js":"867c5071-133"},"imported":[],"importedBy":[{"uid":"867c5071-134"}]},"867c5071-134":{"id":"/src/components/chat-search/FollowUpSearchBar.tsx","moduleParts":{"index.js":"867c5071-135"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-180"},{"uid":"867c5071-178"},{"uid":"867c5071-132"},{"uid":"867c5071-32"},{"uid":"867c5071-40"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-148"}]},"867c5071-136":{"id":"/src/components/chat-search/Header.tsx","moduleParts":{"index.js":"867c5071-137"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-178"},{"uid":"867c5071-180"},{"uid":"867c5071-32"},{"uid":"867c5071-102"},{"uid":"867c5071-100"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-148"}]},"867c5071-138":{"id":"/src/components/chat-search/text-config.ts","moduleParts":{"index.js":"867c5071-139"},"imported":[],"importedBy":[{"uid":"867c5071-148"}]},"867c5071-140":{"id":"/src/components/chat-search/LoadingConversation.tsx","moduleParts":{"index.js":"867c5071-141"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-178"}],"importedBy":[{"uid":"867c5071-148"}]},"867c5071-142":{"id":"/src/lib/feature-flags.tsx","moduleParts":{"index.js":"867c5071-143"},"imported":[{"uid":"867c5071-169"}],"importedBy":[{"uid":"867c5071-148"}]},"867c5071-144":{"id":"/src/lib/hooks.ts","moduleParts":{"index.js":"867c5071-145"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-108"}],"importedBy":[{"uid":"867c5071-148"}]},"867c5071-146":{"id":"/src/components/ui/scroll-area.tsx","moduleParts":{"index.js":"867c5071-147"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-176"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-162"},{"uid":"867c5071-148"}]},"867c5071-148":{"id":"/src/components/chat-search/ChatSearch.tsx","moduleParts":{"index.js":"867c5071-149"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-178"},{"uid":"867c5071-34"},{"uid":"867c5071-120"},{"uid":"867c5071-122"},{"uid":"867c5071-84"},{"uid":"867c5071-124"},{"uid":"867c5071-126"},{"uid":"867c5071-130"},{"uid":"867c5071-134"},{"uid":"867c5071-136"},{"uid":"867c5071-138"},{"uid":"867c5071-100"},{"uid":"867c5071-179"},{"uid":"867c5071-96"},{"uid":"867c5071-140"},{"uid":"867c5071-142"},{"uid":"867c5071-24"},{"uid":"867c5071-144"},{"uid":"867c5071-108"},{"uid":"867c5071-146"},{"uid":"867c5071-82"}],"importedBy":[{"uid":"867c5071-165"}]},"867c5071-150":{"id":"/src/components/ui/switch.tsx","moduleParts":{"index.js":"867c5071-151"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-174"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-162"}]},"867c5071-152":{"id":"/src/components/ui/select.tsx","moduleParts":{"index.js":"867c5071-153"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-199"},{"uid":"867c5071-180"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-154"}]},"867c5071-154":{"id":"/src/components/select/simpleSelect.tsx","moduleParts":{"index.js":"867c5071-155"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-24"},{"uid":"867c5071-152"}],"importedBy":[{"uid":"867c5071-167"}]},"867c5071-156":{"id":"/src/components/ui/calendar.tsx","moduleParts":{"index.js":"867c5071-157"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-200"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-160"}]},"867c5071-158":{"id":"/src/components/ui/popover.tsx","moduleParts":{"index.js":"867c5071-159"},"imported":[{"uid":"867c5071-22"},{"uid":"867c5071-169"},{"uid":"867c5071-201"},{"uid":"867c5071-24"}],"importedBy":[{"uid":"867c5071-160"}]},"867c5071-160":{"id":"/src/components/date-picker/date-picker.tsx","moduleParts":{"index.js":"867c5071-161"},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-191"},{"uid":"867c5071-180"},{"uid":"867c5071-24"},{"uid":"867c5071-32"},{"uid":"867c5071-156"},{"uid":"867c5071-158"},{"uid":"867c5071-192"}],"importedBy":[{"uid":"867c5071-168"}]},"867c5071-162":{"id":"/src/index.ts","moduleParts":{"index.js":"867c5071-163"},"imported":[{"uid":"867c5071-164"},{"uid":"867c5071-20"},{"uid":"867c5071-165"},{"uid":"867c5071-166"},{"uid":"867c5071-32"},{"uid":"867c5071-92"},{"uid":"867c5071-128"},{"uid":"867c5071-150"},{"uid":"867c5071-26"},{"uid":"867c5071-40"},{"uid":"867c5071-146"},{"uid":"867c5071-38"},{"uid":"867c5071-36"},{"uid":"867c5071-167"},{"uid":"867c5071-168"}],"importedBy":[],"isEntry":true},"867c5071-164":{"id":"/src/global.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-162"}]},"867c5071-165":{"id":"/src/components/chat-search/index.ts","moduleParts":{},"imported":[{"uid":"867c5071-148"},{"uid":"867c5071-100"},{"uid":"867c5071-102"}],"importedBy":[{"uid":"867c5071-162"}]},"867c5071-166":{"id":"/src/components/markdown/index.ts","moduleParts":{},"imported":[{"uid":"867c5071-48"},{"uid":"867c5071-74"},{"uid":"867c5071-50"},{"uid":"867c5071-66"},{"uid":"867c5071-68"},{"uid":"867c5071-70"}],"importedBy":[{"uid":"867c5071-162"}]},"867c5071-167":{"id":"/src/components/select/index.ts","moduleParts":{},"imported":[{"uid":"867c5071-154"}],"importedBy":[{"uid":"867c5071-162"}]},"867c5071-168":{"id":"/src/components/date-picker/index.tsx","moduleParts":{},"imported":[{"uid":"867c5071-160"}],"importedBy":[{"uid":"867c5071-162"}]},"867c5071-169":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-32"},{"uid":"867c5071-92"},{"uid":"867c5071-128"},{"uid":"867c5071-150"},{"uid":"867c5071-26"},{"uid":"867c5071-40"},{"uid":"867c5071-146"},{"uid":"867c5071-38"},{"uid":"867c5071-36"},{"uid":"867c5071-148"},{"uid":"867c5071-100"},{"uid":"867c5071-48"},{"uid":"867c5071-74"},{"uid":"867c5071-50"},{"uid":"867c5071-66"},{"uid":"867c5071-68"},{"uid":"867c5071-70"},{"uid":"867c5071-30"},{"uid":"867c5071-24"},{"uid":"867c5071-154"},{"uid":"867c5071-160"},{"uid":"867c5071-34"},{"uid":"867c5071-120"},{"uid":"867c5071-122"},{"uid":"867c5071-84"},{"uid":"867c5071-124"},{"uid":"867c5071-126"},{"uid":"867c5071-130"},{"uid":"867c5071-134"},{"uid":"867c5071-136"},{"uid":"867c5071-140"},{"uid":"867c5071-142"},{"uid":"867c5071-144"},{"uid":"867c5071-82"},{"uid":"867c5071-98"},{"uid":"867c5071-64"},{"uid":"867c5071-28"},{"uid":"867c5071-152"},{"uid":"867c5071-156"},{"uid":"867c5071-158"},{"uid":"867c5071-78"},{"uid":"867c5071-90"},{"uid":"867c5071-195"},{"uid":"867c5071-110"},{"uid":"867c5071-112"},{"uid":"867c5071-114"},{"uid":"867c5071-116"},{"uid":"867c5071-52"},{"uid":"867c5071-54"},{"uid":"867c5071-56"},{"uid":"867c5071-58"},{"uid":"867c5071-60"},{"uid":"867c5071-62"},{"uid":"867c5071-42"},{"uid":"867c5071-76"},{"uid":"867c5071-94"},{"uid":"867c5071-118"}],"isExternal":true},"867c5071-170":{"id":"class-variance-authority","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-32"},{"uid":"867c5071-38"}],"isExternal":true},"867c5071-171":{"id":"@radix-ui/react-collapsible","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-92"}],"isExternal":true},"867c5071-172":{"id":"@radix-ui/react-dropdown-menu","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-128"}],"isExternal":true},"867c5071-173":{"id":"@radix-ui/react-icons","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-128"}],"isExternal":true},"867c5071-174":{"id":"@radix-ui/react-switch","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-150"}],"isExternal":true},"867c5071-175":{"id":"@radix-ui/react-tooltip","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-26"}],"isExternal":true},"867c5071-176":{"id":"@radix-ui/react-scroll-area","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-146"}],"isExternal":true},"867c5071-177":{"id":"@radix-ui/react-label","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-38"}],"isExternal":true},"867c5071-178":{"id":"framer-motion","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-148"},{"uid":"867c5071-70"},{"uid":"867c5071-122"},{"uid":"867c5071-84"},{"uid":"867c5071-124"},{"uid":"867c5071-130"},{"uid":"867c5071-134"},{"uid":"867c5071-136"},{"uid":"867c5071-140"},{"uid":"867c5071-94"}],"isExternal":true},"867c5071-179":{"id":"/src/components/chat-search/hooks/index.ts","moduleParts":{},"imported":[{"uid":"867c5071-102"},{"uid":"867c5071-104"},{"uid":"867c5071-195"},{"uid":"867c5071-110"},{"uid":"867c5071-112"},{"uid":"867c5071-114"},{"uid":"867c5071-116"}],"importedBy":[{"uid":"867c5071-148"},{"uid":"867c5071-118"}]},"867c5071-180":{"id":"@phosphor-icons/react","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-48"},{"uid":"867c5071-70"},{"uid":"867c5071-160"},{"uid":"867c5071-120"},{"uid":"867c5071-122"},{"uid":"867c5071-124"},{"uid":"867c5071-126"},{"uid":"867c5071-130"},{"uid":"867c5071-134"},{"uid":"867c5071-136"},{"uid":"867c5071-82"},{"uid":"867c5071-152"},{"uid":"867c5071-42"},{"uid":"867c5071-94"}],"isExternal":true},"867c5071-181":{"id":"react-syntax-highlighter","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-48"}],"isExternal":true},"867c5071-182":{"id":"react-syntax-highlighter/dist/esm/styles/prism","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-48"}],"isExternal":true},"867c5071-183":{"id":"rehype-raw","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-74"}],"isExternal":true},"867c5071-184":{"id":"remark-gfm","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-74"}],"isExternal":true},"867c5071-185":{"id":"path-to-regexp","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-74"}],"isExternal":true},"867c5071-186":{"id":"react-markdown","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-66"}],"isExternal":true},"867c5071-187":{"id":"mermaid","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-68"}],"isExternal":true},"867c5071-188":{"id":"react/jsx-runtime","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-30"}],"isExternal":true},"867c5071-189":{"id":"clsx","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-24"}],"isExternal":true},"867c5071-190":{"id":"tailwind-merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-24"}],"isExternal":true},"867c5071-191":{"id":"date-fns","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-160"}],"isExternal":true},"867c5071-192":{"id":"/src/components/ui/calendar.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-160"}]},"867c5071-193":{"id":"/src/components/feedback/index.ts","moduleParts":{},"imported":[{"uid":"867c5071-94"}],"importedBy":[{"uid":"867c5071-120"}]},"867c5071-194":{"id":"/src/components/generating-star/index.ts","moduleParts":{},"imported":[{"uid":"867c5071-118"}],"importedBy":[{"uid":"867c5071-120"}]},"867c5071-195":{"id":"/src/components/chat-search/hooks/useUrlManager.ts","moduleParts":{},"imported":[{"uid":"867c5071-169"},{"uid":"867c5071-100"}],"importedBy":[{"uid":"867c5071-179"}]},"867c5071-196":{"id":"@paralleldrive/cuid2","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-96"},{"uid":"867c5071-108"},{"uid":"867c5071-80"}],"isExternal":true},"867c5071-197":{"id":"use-immer","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-96"}],"isExternal":true},"867c5071-198":{"id":"react-use","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-98"},{"uid":"867c5071-110"}],"isExternal":true},"867c5071-199":{"id":"@radix-ui/react-select","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-152"}],"isExternal":true},"867c5071-200":{"id":"react-day-picker","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-156"}],"isExternal":true},"867c5071-201":{"id":"@radix-ui/react-popover","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-158"}],"isExternal":true},"867c5071-202":{"id":"react-hook-form","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-42"}],"isExternal":true},"867c5071-203":{"id":"@hookform/resolvers/ajv","moduleParts":{},"imported":[],"importedBy":[{"uid":"867c5071-42"}],"isExternal":true}},"env":{"rollup":"4.3.0"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
4932
+ const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.js","children":[{"name":"src","children":[{"name":"colors","children":[{"uid":"cfbe880c-1","name":"customColor.ts"},{"uid":"cfbe880c-3","name":"dark.ts"},{"uid":"cfbe880c-5","name":"primary.ts"},{"uid":"cfbe880c-7","name":"orange.ts"},{"uid":"cfbe880c-9","name":"yellow.ts"},{"uid":"cfbe880c-11","name":"green.ts"},{"uid":"cfbe880c-13","name":"blue.ts"},{"uid":"cfbe880c-15","name":"purple.ts"},{"uid":"cfbe880c-17","name":"pink.ts"},{"uid":"cfbe880c-19","name":"red.ts"},{"uid":"cfbe880c-21","name":"index.ts"}]},{"name":"lib","children":[{"uid":"cfbe880c-25","name":"utils.ts"},{"uid":"cfbe880c-113","name":"fetchClient.ts"},{"uid":"cfbe880c-115","name":"api.ts"},{"uid":"cfbe880c-149","name":"feature-flags.tsx"},{"uid":"cfbe880c-151","name":"hooks.ts"}]},{"name":"components","children":[{"name":"ui","children":[{"uid":"cfbe880c-27","name":"tooltip.tsx"},{"uid":"cfbe880c-33","name":"button.tsx"},{"uid":"cfbe880c-37","name":"input.tsx"},{"uid":"cfbe880c-39","name":"label.tsx"},{"uid":"cfbe880c-41","name":"textarea.tsx"},{"uid":"cfbe880c-43","name":"calendar.tsx"},{"uid":"cfbe880c-45","name":"popover.tsx"},{"uid":"cfbe880c-89","name":"icon.tsx"},{"uid":"cfbe880c-99","name":"collapsible.tsx"},{"uid":"cfbe880c-135","name":"dropdown-menu.tsx"},{"uid":"cfbe880c-153","name":"scroll-area.tsx"},{"uid":"cfbe880c-157","name":"switch.tsx"},{"uid":"cfbe880c-159","name":"dialog.tsx"},{"uid":"cfbe880c-161","name":"command.tsx"},{"uid":"cfbe880c-163","name":"select.tsx"}]},{"name":"chat-search","children":[{"uid":"cfbe880c-35","name":"Suggestions.tsx"},{"name":"blocks","children":[{"uid":"cfbe880c-49","name":"ActionInputForm.tsx"},{"uid":"cfbe880c-51","name":"ActionButtons.tsx"},{"uid":"cfbe880c-83","name":"MarkdownText.tsx"},{"uid":"cfbe880c-87","name":"utils.ts"}]},{"uid":"cfbe880c-85","name":"AnswerBlock.tsx"},{"uid":"cfbe880c-91","name":"NextBestActions.tsx"},{"uid":"cfbe880c-93","name":"types.ts"},{"name":"helpers/nextBestActions.ts","uid":"cfbe880c-95"},{"uid":"cfbe880c-97","name":"AnswerActions.tsx"},{"name":"hooks","children":[{"uid":"cfbe880c-103","name":"useAnswerList.ts"},{"uid":"cfbe880c-105","name":"useConversationId.ts"},{"uid":"cfbe880c-109","name":"useIsChatSearchDirty.ts"},{"uid":"cfbe880c-111","name":"useScrollManager.ts"},{"uid":"cfbe880c-117","name":"useConversationLoader.ts"},{"uid":"cfbe880c-119","name":"useSubscriptionManager.ts"},{"uid":"cfbe880c-121","name":"useDarkMode.ts"},{"uid":"cfbe880c-123","name":"useAccessibleColor.ts"}]},{"uid":"cfbe880c-107","name":"ChatSearchContext.tsx"},{"uid":"cfbe880c-127","name":"Answer.tsx"},{"uid":"cfbe880c-129","name":"FollowUpQuestions.tsx"},{"uid":"cfbe880c-131","name":"TimelineNavigation.tsx"},{"uid":"cfbe880c-133","name":"ScrollToBottomArrow.tsx"},{"uid":"cfbe880c-137","name":"PrimarySearch.tsx"},{"uid":"cfbe880c-139","name":"FollowUpSearchBar.module.css"},{"uid":"cfbe880c-141","name":"FollowUpSearchBar.tsx"},{"uid":"cfbe880c-143","name":"Header.tsx"},{"uid":"cfbe880c-145","name":"text-config.ts"},{"uid":"cfbe880c-147","name":"LoadingConversation.tsx"},{"uid":"cfbe880c-155","name":"ChatSearch.tsx"}]},{"name":"date-picker/date-picker.tsx","uid":"cfbe880c-47"},{"name":"markdown","children":[{"name":"utils","children":[{"uid":"cfbe880c-53","name":"codeblock.ts"},{"uid":"cfbe880c-79","name":"stripNewLines.ts"}]},{"uid":"cfbe880c-55","name":"CodeBlock.tsx"},{"uid":"cfbe880c-57","name":"Frame.tsx"},{"name":"embeds","children":[{"uid":"cfbe880c-59","name":"Loom.tsx"},{"uid":"cfbe880c-61","name":"Supademo.tsx"},{"uid":"cfbe880c-63","name":"Typeform.tsx"},{"uid":"cfbe880c-65","name":"Vimeo.tsx"},{"uid":"cfbe880c-67","name":"Wistia.tsx"},{"uid":"cfbe880c-69","name":"Youtube.tsx"},{"uid":"cfbe880c-71","name":"index.tsx"}]},{"uid":"cfbe880c-73","name":"MemoizedReactMarkdown.tsx"},{"uid":"cfbe880c-75","name":"MermaidDiagram.tsx"},{"uid":"cfbe880c-77","name":"ZoomableImage.tsx"},{"uid":"cfbe880c-81","name":"FormattedMessage.tsx"}]},{"name":"feedback/feedback.tsx","uid":"cfbe880c-101"},{"name":"generating-star/generating-star.tsx","uid":"cfbe880c-125"},{"name":"select/simpleSelect.tsx","uid":"cfbe880c-165"},{"name":"combobox/combobox.tsx","uid":"cfbe880c-167"}]},{"uid":"cfbe880c-169","name":"index.ts"}]},{"name":"node_modules","children":[{"name":"tslib/tslib.es6.js","uid":"cfbe880c-23"},{"name":"@radix-ui","children":[{"name":"react-compose-refs/dist/index.mjs","uid":"cfbe880c-29"},{"name":"react-slot/dist/index.mjs","uid":"cfbe880c-31"}]}]}]}],"isRoot":true},"nodeParts":{"cfbe880c-1":{"renderedLength":354,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-0"},"cfbe880c-3":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-2"},"cfbe880c-5":{"renderedLength":344,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-4"},"cfbe880c-7":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-6"},"cfbe880c-9":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-8"},"cfbe880c-11":{"renderedLength":248,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-10"},"cfbe880c-13":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-12"},"cfbe880c-15":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-14"},"cfbe880c-17":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-16"},"cfbe880c-19":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-18"},"cfbe880c-21":{"renderedLength":127,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-20"},"cfbe880c-23":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-22"},"cfbe880c-25":{"renderedLength":2527,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-24"},"cfbe880c-27":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-26"},"cfbe880c-29":{"renderedLength":802,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-28"},"cfbe880c-31":{"renderedLength":3014,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-30"},"cfbe880c-33":{"renderedLength":1710,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-32"},"cfbe880c-35":{"renderedLength":1526,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-34"},"cfbe880c-37":{"renderedLength":626,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-36"},"cfbe880c-39":{"renderedLength":407,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-38"},"cfbe880c-41":{"renderedLength":527,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-40"},"cfbe880c-43":{"renderedLength":373,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-42"},"cfbe880c-45":{"renderedLength":1030,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-44"},"cfbe880c-47":{"renderedLength":758,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-46"},"cfbe880c-49":{"renderedLength":6231,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-48"},"cfbe880c-51":{"renderedLength":110,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-50"},"cfbe880c-53":{"renderedLength":944,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-52"},"cfbe880c-55":{"renderedLength":2826,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-54"},"cfbe880c-57":{"renderedLength":1997,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-56"},"cfbe880c-59":{"renderedLength":349,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-58"},"cfbe880c-61":{"renderedLength":279,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-60"},"cfbe880c-63":{"renderedLength":392,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-62"},"cfbe880c-65":{"renderedLength":1009,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-64"},"cfbe880c-67":{"renderedLength":1862,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-66"},"cfbe880c-69":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-68"},"cfbe880c-71":{"renderedLength":768,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-70"},"cfbe880c-73":{"renderedLength":170,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-72"},"cfbe880c-75":{"renderedLength":1855,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-74"},"cfbe880c-77":{"renderedLength":4117,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-76"},"cfbe880c-79":{"renderedLength":75,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-78"},"cfbe880c-81":{"renderedLength":9028,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-80"},"cfbe880c-83":{"renderedLength":1064,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-82"},"cfbe880c-85":{"renderedLength":532,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-84"},"cfbe880c-87":{"renderedLength":620,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-86"},"cfbe880c-89":{"renderedLength":980,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-88"},"cfbe880c-91":{"renderedLength":3985,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-90"},"cfbe880c-93":{"renderedLength":588,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-92"},"cfbe880c-95":{"renderedLength":2142,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-94"},"cfbe880c-97":{"renderedLength":2034,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-96"},"cfbe880c-99":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-98"},"cfbe880c-101":{"renderedLength":4585,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-100"},"cfbe880c-103":{"renderedLength":8935,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-102"},"cfbe880c-105":{"renderedLength":1664,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-104"},"cfbe880c-107":{"renderedLength":2227,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-106"},"cfbe880c-109":{"renderedLength":177,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-108"},"cfbe880c-111":{"renderedLength":1409,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-110"},"cfbe880c-113":{"renderedLength":3720,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-112"},"cfbe880c-115":{"renderedLength":3919,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-114"},"cfbe880c-117":{"renderedLength":2797,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-116"},"cfbe880c-119":{"renderedLength":1130,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-118"},"cfbe880c-121":{"renderedLength":521,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-120"},"cfbe880c-123":{"renderedLength":921,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-122"},"cfbe880c-125":{"renderedLength":2637,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-124"},"cfbe880c-127":{"renderedLength":6812,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-126"},"cfbe880c-129":{"renderedLength":1203,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-128"},"cfbe880c-131":{"renderedLength":4169,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-130"},"cfbe880c-133":{"renderedLength":335,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-132"},"cfbe880c-135":{"renderedLength":6222,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-134"},"cfbe880c-137":{"renderedLength":12791,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-136"},"cfbe880c-139":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-138"},"cfbe880c-141":{"renderedLength":3631,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-140"},"cfbe880c-143":{"renderedLength":2182,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-142"},"cfbe880c-145":{"renderedLength":2318,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-144"},"cfbe880c-147":{"renderedLength":636,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-146"},"cfbe880c-149":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-148"},"cfbe880c-151":{"renderedLength":1815,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-150"},"cfbe880c-153":{"renderedLength":1348,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-152"},"cfbe880c-155":{"renderedLength":26926,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-154"},"cfbe880c-157":{"renderedLength":922,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-156"},"cfbe880c-159":{"renderedLength":3386,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-158"},"cfbe880c-161":{"renderedLength":3993,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-160"},"cfbe880c-163":{"renderedLength":3678,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-162"},"cfbe880c-165":{"renderedLength":673,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-164"},"cfbe880c-167":{"renderedLength":2263,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-166"},"cfbe880c-169":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"cfbe880c-168"}},"nodeMetas":{"cfbe880c-0":{"id":"/src/colors/customColor.ts","moduleParts":{"index.js":"cfbe880c-1"},"imported":[],"importedBy":[{"uid":"cfbe880c-20"},{"uid":"cfbe880c-4"}]},"cfbe880c-2":{"id":"/src/colors/dark.ts","moduleParts":{"index.js":"cfbe880c-3"},"imported":[],"importedBy":[{"uid":"cfbe880c-20"},{"uid":"cfbe880c-4"}]},"cfbe880c-4":{"id":"/src/colors/primary.ts","moduleParts":{"index.js":"cfbe880c-5"},"imported":[{"uid":"cfbe880c-0"},{"uid":"cfbe880c-2"}],"importedBy":[{"uid":"cfbe880c-20"}]},"cfbe880c-6":{"id":"/src/colors/orange.ts","moduleParts":{"index.js":"cfbe880c-7"},"imported":[],"importedBy":[{"uid":"cfbe880c-20"}]},"cfbe880c-8":{"id":"/src/colors/yellow.ts","moduleParts":{"index.js":"cfbe880c-9"},"imported":[],"importedBy":[{"uid":"cfbe880c-20"}]},"cfbe880c-10":{"id":"/src/colors/green.ts","moduleParts":{"index.js":"cfbe880c-11"},"imported":[],"importedBy":[{"uid":"cfbe880c-20"}]},"cfbe880c-12":{"id":"/src/colors/blue.ts","moduleParts":{"index.js":"cfbe880c-13"},"imported":[],"importedBy":[{"uid":"cfbe880c-20"}]},"cfbe880c-14":{"id":"/src/colors/purple.ts","moduleParts":{"index.js":"cfbe880c-15"},"imported":[],"importedBy":[{"uid":"cfbe880c-20"}]},"cfbe880c-16":{"id":"/src/colors/pink.ts","moduleParts":{"index.js":"cfbe880c-17"},"imported":[],"importedBy":[{"uid":"cfbe880c-20"}]},"cfbe880c-18":{"id":"/src/colors/red.ts","moduleParts":{"index.js":"cfbe880c-19"},"imported":[],"importedBy":[{"uid":"cfbe880c-20"}]},"cfbe880c-20":{"id":"/src/colors/index.ts","moduleParts":{"index.js":"cfbe880c-21"},"imported":[{"uid":"cfbe880c-4"},{"uid":"cfbe880c-2"},{"uid":"cfbe880c-6"},{"uid":"cfbe880c-8"},{"uid":"cfbe880c-10"},{"uid":"cfbe880c-12"},{"uid":"cfbe880c-14"},{"uid":"cfbe880c-16"},{"uid":"cfbe880c-18"},{"uid":"cfbe880c-0"}],"importedBy":[{"uid":"cfbe880c-168"}]},"cfbe880c-22":{"id":"/node_modules/tslib/tslib.es6.js","moduleParts":{"index.js":"cfbe880c-23"},"imported":[],"importedBy":[{"uid":"cfbe880c-32"},{"uid":"cfbe880c-98"},{"uid":"cfbe880c-134"},{"uid":"cfbe880c-156"},{"uid":"cfbe880c-26"},{"uid":"cfbe880c-40"},{"uid":"cfbe880c-152"},{"uid":"cfbe880c-38"},{"uid":"cfbe880c-36"},{"uid":"cfbe880c-44"},{"uid":"cfbe880c-160"},{"uid":"cfbe880c-158"},{"uid":"cfbe880c-154"},{"uid":"cfbe880c-54"},{"uid":"cfbe880c-80"},{"uid":"cfbe880c-74"},{"uid":"cfbe880c-126"},{"uid":"cfbe880c-142"},{"uid":"cfbe880c-150"},{"uid":"cfbe880c-114"},{"uid":"cfbe880c-88"},{"uid":"cfbe880c-162"},{"uid":"cfbe880c-42"},{"uid":"cfbe880c-112"},{"uid":"cfbe880c-124"}]},"cfbe880c-24":{"id":"/src/lib/utils.ts","moduleParts":{"index.js":"cfbe880c-25"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-199"},{"uid":"cfbe880c-200"}],"importedBy":[{"uid":"cfbe880c-32"},{"uid":"cfbe880c-134"},{"uid":"cfbe880c-156"},{"uid":"cfbe880c-26"},{"uid":"cfbe880c-40"},{"uid":"cfbe880c-152"},{"uid":"cfbe880c-38"},{"uid":"cfbe880c-36"},{"uid":"cfbe880c-44"},{"uid":"cfbe880c-160"},{"uid":"cfbe880c-158"},{"uid":"cfbe880c-154"},{"uid":"cfbe880c-80"},{"uid":"cfbe880c-164"},{"uid":"cfbe880c-46"},{"uid":"cfbe880c-166"},{"uid":"cfbe880c-130"},{"uid":"cfbe880c-136"},{"uid":"cfbe880c-140"},{"uid":"cfbe880c-142"},{"uid":"cfbe880c-162"},{"uid":"cfbe880c-42"},{"uid":"cfbe880c-116"},{"uid":"cfbe880c-122"},{"uid":"cfbe880c-48"},{"uid":"cfbe880c-124"}]},"cfbe880c-26":{"id":"/src/components/ui/tooltip.tsx","moduleParts":{"index.js":"cfbe880c-27"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-182"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-168"},{"uid":"cfbe880c-34"},{"uid":"cfbe880c-126"},{"uid":"cfbe880c-130"},{"uid":"cfbe880c-100"}]},"cfbe880c-28":{"id":"/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","moduleParts":{"index.js":"cfbe880c-29"},"imported":[{"uid":"cfbe880c-176"}],"importedBy":[{"uid":"cfbe880c-30"}]},"cfbe880c-30":{"id":"/node_modules/@radix-ui/react-slot/dist/index.mjs","moduleParts":{"index.js":"cfbe880c-31"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-28"},{"uid":"cfbe880c-198"}],"importedBy":[{"uid":"cfbe880c-32"}]},"cfbe880c-32":{"id":"/src/components/ui/button.tsx","moduleParts":{"index.js":"cfbe880c-33"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-30"},{"uid":"cfbe880c-177"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-168"},{"uid":"cfbe880c-54"},{"uid":"cfbe880c-46"},{"uid":"cfbe880c-166"},{"uid":"cfbe880c-34"},{"uid":"cfbe880c-126"},{"uid":"cfbe880c-128"},{"uid":"cfbe880c-90"},{"uid":"cfbe880c-132"},{"uid":"cfbe880c-136"},{"uid":"cfbe880c-140"},{"uid":"cfbe880c-142"},{"uid":"cfbe880c-48"},{"uid":"cfbe880c-100"}]},"cfbe880c-34":{"id":"/src/components/chat-search/Suggestions.tsx","moduleParts":{"index.js":"cfbe880c-35"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-26"},{"uid":"cfbe880c-32"}],"importedBy":[{"uid":"cfbe880c-154"}]},"cfbe880c-36":{"id":"/src/components/ui/input.tsx","moduleParts":{"index.js":"cfbe880c-37"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-168"},{"uid":"cfbe880c-48"}]},"cfbe880c-38":{"id":"/src/components/ui/label.tsx","moduleParts":{"index.js":"cfbe880c-39"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-184"},{"uid":"cfbe880c-177"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-168"},{"uid":"cfbe880c-48"}]},"cfbe880c-40":{"id":"/src/components/ui/textarea.tsx","moduleParts":{"index.js":"cfbe880c-41"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-168"},{"uid":"cfbe880c-140"},{"uid":"cfbe880c-48"}]},"cfbe880c-42":{"id":"/src/components/ui/calendar.tsx","moduleParts":{"index.js":"cfbe880c-43"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-210"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-46"}]},"cfbe880c-44":{"id":"/src/components/ui/popover.tsx","moduleParts":{"index.js":"cfbe880c-45"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-185"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-168"},{"uid":"cfbe880c-46"},{"uid":"cfbe880c-166"}]},"cfbe880c-46":{"id":"/src/components/date-picker/date-picker.tsx","moduleParts":{"index.js":"cfbe880c-47"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-201"},{"uid":"cfbe880c-190"},{"uid":"cfbe880c-24"},{"uid":"cfbe880c-32"},{"uid":"cfbe880c-42"},{"uid":"cfbe880c-44"},{"uid":"cfbe880c-202"}],"importedBy":[{"uid":"cfbe880c-174"}]},"cfbe880c-48":{"id":"/src/components/chat-search/blocks/ActionInputForm.tsx","moduleParts":{"index.js":"cfbe880c-49"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-211"},{"uid":"cfbe880c-212"},{"uid":"cfbe880c-190"},{"uid":"cfbe880c-32"},{"uid":"cfbe880c-36"},{"uid":"cfbe880c-38"},{"uid":"cfbe880c-40"},{"uid":"cfbe880c-24"},{"uid":"cfbe880c-174"}],"importedBy":[{"uid":"cfbe880c-84"}]},"cfbe880c-50":{"id":"/src/components/chat-search/blocks/ActionButtons.tsx","moduleParts":{"index.js":"cfbe880c-51"},"imported":[],"importedBy":[{"uid":"cfbe880c-84"}]},"cfbe880c-52":{"id":"/src/components/markdown/utils/codeblock.ts","moduleParts":{"index.js":"cfbe880c-53"},"imported":[],"importedBy":[{"uid":"cfbe880c-54"}]},"cfbe880c-54":{"id":"/src/components/markdown/CodeBlock.tsx","moduleParts":{"index.js":"cfbe880c-55"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-190"},{"uid":"cfbe880c-191"},{"uid":"cfbe880c-192"},{"uid":"cfbe880c-32"},{"uid":"cfbe880c-52"}],"importedBy":[{"uid":"cfbe880c-172"},{"uid":"cfbe880c-80"}]},"cfbe880c-56":{"id":"/src/components/markdown/Frame.tsx","moduleParts":{"index.js":"cfbe880c-57"},"imported":[{"uid":"cfbe880c-176"}],"importedBy":[{"uid":"cfbe880c-172"},{"uid":"cfbe880c-58"},{"uid":"cfbe880c-60"},{"uid":"cfbe880c-62"},{"uid":"cfbe880c-64"},{"uid":"cfbe880c-66"},{"uid":"cfbe880c-68"}]},"cfbe880c-58":{"id":"/src/components/markdown/embeds/Loom.tsx","moduleParts":{"index.js":"cfbe880c-59"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-56"}],"importedBy":[{"uid":"cfbe880c-70"}]},"cfbe880c-60":{"id":"/src/components/markdown/embeds/Supademo.tsx","moduleParts":{"index.js":"cfbe880c-61"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-56"}],"importedBy":[{"uid":"cfbe880c-70"}]},"cfbe880c-62":{"id":"/src/components/markdown/embeds/Typeform.tsx","moduleParts":{"index.js":"cfbe880c-63"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-56"}],"importedBy":[{"uid":"cfbe880c-70"}]},"cfbe880c-64":{"id":"/src/components/markdown/embeds/Vimeo.tsx","moduleParts":{"index.js":"cfbe880c-65"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-56"}],"importedBy":[{"uid":"cfbe880c-70"}]},"cfbe880c-66":{"id":"/src/components/markdown/embeds/Wistia.tsx","moduleParts":{"index.js":"cfbe880c-67"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-56"}],"importedBy":[{"uid":"cfbe880c-70"}]},"cfbe880c-68":{"id":"/src/components/markdown/embeds/Youtube.tsx","moduleParts":{"index.js":"cfbe880c-69"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-56"}],"importedBy":[{"uid":"cfbe880c-70"}]},"cfbe880c-70":{"id":"/src/components/markdown/embeds/index.tsx","moduleParts":{"index.js":"cfbe880c-71"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-58"},{"uid":"cfbe880c-60"},{"uid":"cfbe880c-62"},{"uid":"cfbe880c-64"},{"uid":"cfbe880c-66"},{"uid":"cfbe880c-68"}],"importedBy":[{"uid":"cfbe880c-80"}]},"cfbe880c-72":{"id":"/src/components/markdown/MemoizedReactMarkdown.tsx","moduleParts":{"index.js":"cfbe880c-73"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-196"}],"importedBy":[{"uid":"cfbe880c-172"},{"uid":"cfbe880c-80"}]},"cfbe880c-74":{"id":"/src/components/markdown/MermaidDiagram.tsx","moduleParts":{"index.js":"cfbe880c-75"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-197"}],"importedBy":[{"uid":"cfbe880c-172"},{"uid":"cfbe880c-80"}]},"cfbe880c-76":{"id":"/src/components/markdown/ZoomableImage.tsx","moduleParts":{"index.js":"cfbe880c-77"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-188"},{"uid":"cfbe880c-190"}],"importedBy":[{"uid":"cfbe880c-172"},{"uid":"cfbe880c-80"}]},"cfbe880c-78":{"id":"/src/components/markdown/utils/stripNewLines.ts","moduleParts":{"index.js":"cfbe880c-79"},"imported":[],"importedBy":[{"uid":"cfbe880c-80"}]},"cfbe880c-80":{"id":"/src/components/markdown/FormattedMessage.tsx","moduleParts":{"index.js":"cfbe880c-81"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-193"},{"uid":"cfbe880c-194"},{"uid":"cfbe880c-195"},{"uid":"cfbe880c-54"},{"uid":"cfbe880c-70"},{"uid":"cfbe880c-72"},{"uid":"cfbe880c-74"},{"uid":"cfbe880c-76"},{"uid":"cfbe880c-78"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-172"},{"uid":"cfbe880c-82"}]},"cfbe880c-82":{"id":"/src/components/chat-search/blocks/MarkdownText.tsx","moduleParts":{"index.js":"cfbe880c-83"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-80"}],"importedBy":[{"uid":"cfbe880c-84"}]},"cfbe880c-84":{"id":"/src/components/chat-search/AnswerBlock.tsx","moduleParts":{"index.js":"cfbe880c-85"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-48"},{"uid":"cfbe880c-50"},{"uid":"cfbe880c-82"}],"importedBy":[{"uid":"cfbe880c-126"}]},"cfbe880c-86":{"id":"/src/components/chat-search/blocks/utils.ts","moduleParts":{"index.js":"cfbe880c-87"},"imported":[{"uid":"cfbe880c-206"}],"importedBy":[{"uid":"cfbe880c-126"},{"uid":"cfbe880c-102"},{"uid":"cfbe880c-116"}]},"cfbe880c-88":{"id":"/src/components/ui/icon.tsx","moduleParts":{"index.js":"cfbe880c-89"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-190","dynamic":true}],"importedBy":[{"uid":"cfbe880c-154"},{"uid":"cfbe880c-90"}]},"cfbe880c-90":{"id":"/src/components/chat-search/NextBestActions.tsx","moduleParts":{"index.js":"cfbe880c-91"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-188"},{"uid":"cfbe880c-88"},{"uid":"cfbe880c-32"}],"importedBy":[{"uid":"cfbe880c-154"},{"uid":"cfbe880c-96"}]},"cfbe880c-92":{"id":"/src/components/chat-search/types.ts","moduleParts":{"index.js":"cfbe880c-93"},"imported":[],"importedBy":[{"uid":"cfbe880c-94"}]},"cfbe880c-94":{"id":"/src/components/chat-search/helpers/nextBestActions.ts","moduleParts":{"index.js":"cfbe880c-95"},"imported":[{"uid":"cfbe880c-92"}],"importedBy":[{"uid":"cfbe880c-96"}]},"cfbe880c-96":{"id":"/src/components/chat-search/AnswerActions.tsx","moduleParts":{"index.js":"cfbe880c-97"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-90"},{"uid":"cfbe880c-94"}],"importedBy":[{"uid":"cfbe880c-126"}]},"cfbe880c-98":{"id":"/src/components/ui/collapsible.tsx","moduleParts":{"index.js":"cfbe880c-99"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-178"}],"importedBy":[{"uid":"cfbe880c-168"},{"uid":"cfbe880c-126"}]},"cfbe880c-100":{"id":"/src/components/feedback/feedback.tsx","moduleParts":{"index.js":"cfbe880c-101"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-190"},{"uid":"cfbe880c-188"},{"uid":"cfbe880c-32"},{"uid":"cfbe880c-26"}],"importedBy":[{"uid":"cfbe880c-203"}]},"cfbe880c-102":{"id":"/src/components/chat-search/hooks/useAnswerList.ts","moduleParts":{"index.js":"cfbe880c-103"},"imported":[{"uid":"cfbe880c-206"},{"uid":"cfbe880c-207"},{"uid":"cfbe880c-86"}],"importedBy":[{"uid":"cfbe880c-154"},{"uid":"cfbe880c-106"},{"uid":"cfbe880c-116"}]},"cfbe880c-104":{"id":"/src/components/chat-search/hooks/useConversationId.ts","moduleParts":{"index.js":"cfbe880c-105"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-208"}],"importedBy":[{"uid":"cfbe880c-106"}]},"cfbe880c-106":{"id":"/src/components/chat-search/ChatSearchContext.tsx","moduleParts":{"index.js":"cfbe880c-107"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-102"},{"uid":"cfbe880c-104"}],"importedBy":[{"uid":"cfbe880c-171"},{"uid":"cfbe880c-154"},{"uid":"cfbe880c-108"},{"uid":"cfbe880c-142"},{"uid":"cfbe880c-205"},{"uid":"cfbe880c-116"},{"uid":"cfbe880c-118"}]},"cfbe880c-108":{"id":"/src/components/chat-search/hooks/useIsChatSearchDirty.ts","moduleParts":{"index.js":"cfbe880c-109"},"imported":[{"uid":"cfbe880c-106"}],"importedBy":[{"uid":"cfbe880c-171"},{"uid":"cfbe880c-142"},{"uid":"cfbe880c-189"}]},"cfbe880c-110":{"id":"/src/components/chat-search/hooks/useScrollManager.ts","moduleParts":{"index.js":"cfbe880c-111"},"imported":[],"importedBy":[{"uid":"cfbe880c-189"}]},"cfbe880c-112":{"id":"/src/lib/fetchClient.ts","moduleParts":{"index.js":"cfbe880c-113"},"imported":[{"uid":"cfbe880c-22"}],"importedBy":[{"uid":"cfbe880c-114"}]},"cfbe880c-114":{"id":"/src/lib/api.ts","moduleParts":{"index.js":"cfbe880c-115"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-206"},{"uid":"cfbe880c-112"}],"importedBy":[{"uid":"cfbe880c-154"},{"uid":"cfbe880c-150"},{"uid":"cfbe880c-116"}]},"cfbe880c-116":{"id":"/src/components/chat-search/hooks/useConversationLoader.ts","moduleParts":{"index.js":"cfbe880c-117"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-208"},{"uid":"cfbe880c-106"},{"uid":"cfbe880c-102"},{"uid":"cfbe880c-86"},{"uid":"cfbe880c-24"},{"uid":"cfbe880c-114"}],"importedBy":[{"uid":"cfbe880c-189"}]},"cfbe880c-118":{"id":"/src/components/chat-search/hooks/useSubscriptionManager.ts","moduleParts":{"index.js":"cfbe880c-119"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-106"}],"importedBy":[{"uid":"cfbe880c-189"}]},"cfbe880c-120":{"id":"/src/components/chat-search/hooks/useDarkMode.ts","moduleParts":{"index.js":"cfbe880c-121"},"imported":[{"uid":"cfbe880c-176"}],"importedBy":[{"uid":"cfbe880c-189"},{"uid":"cfbe880c-122"}]},"cfbe880c-122":{"id":"/src/components/chat-search/hooks/useAccessibleColor.ts","moduleParts":{"index.js":"cfbe880c-123"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-120"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-189"}]},"cfbe880c-124":{"id":"/src/components/generating-star/generating-star.tsx","moduleParts":{"index.js":"cfbe880c-125"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-189"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-204"}]},"cfbe880c-126":{"id":"/src/components/chat-search/Answer.tsx","moduleParts":{"index.js":"cfbe880c-127"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-190"},{"uid":"cfbe880c-32"},{"uid":"cfbe880c-84"},{"uid":"cfbe880c-86"},{"uid":"cfbe880c-96"},{"uid":"cfbe880c-98"},{"uid":"cfbe880c-203"},{"uid":"cfbe880c-204"},{"uid":"cfbe880c-26"}],"importedBy":[{"uid":"cfbe880c-154"}]},"cfbe880c-128":{"id":"/src/components/chat-search/FollowUpQuestions.tsx","moduleParts":{"index.js":"cfbe880c-129"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-188"},{"uid":"cfbe880c-190"},{"uid":"cfbe880c-32"}],"importedBy":[{"uid":"cfbe880c-154"}]},"cfbe880c-130":{"id":"/src/components/chat-search/TimelineNavigation.tsx","moduleParts":{"index.js":"cfbe880c-131"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-190"},{"uid":"cfbe880c-188"},{"uid":"cfbe880c-26"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-154"}]},"cfbe880c-132":{"id":"/src/components/chat-search/ScrollToBottomArrow.tsx","moduleParts":{"index.js":"cfbe880c-133"},"imported":[{"uid":"cfbe880c-190"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-32"}],"importedBy":[{"uid":"cfbe880c-154"}]},"cfbe880c-134":{"id":"/src/components/ui/dropdown-menu.tsx","moduleParts":{"index.js":"cfbe880c-135"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-179"},{"uid":"cfbe880c-24"},{"uid":"cfbe880c-180"}],"importedBy":[{"uid":"cfbe880c-168"},{"uid":"cfbe880c-136"}]},"cfbe880c-136":{"id":"/src/components/chat-search/PrimarySearch.tsx","moduleParts":{"index.js":"cfbe880c-137"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-188"},{"uid":"cfbe880c-190"},{"uid":"cfbe880c-32"},{"uid":"cfbe880c-134"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-154"}]},"cfbe880c-138":{"id":"/src/components/chat-search/FollowUpSearchBar.module.css","moduleParts":{"index.js":"cfbe880c-139"},"imported":[],"importedBy":[{"uid":"cfbe880c-140"}]},"cfbe880c-140":{"id":"/src/components/chat-search/FollowUpSearchBar.tsx","moduleParts":{"index.js":"cfbe880c-141"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-190"},{"uid":"cfbe880c-188"},{"uid":"cfbe880c-138"},{"uid":"cfbe880c-32"},{"uid":"cfbe880c-40"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-154"}]},"cfbe880c-142":{"id":"/src/components/chat-search/Header.tsx","moduleParts":{"index.js":"cfbe880c-143"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-188"},{"uid":"cfbe880c-190"},{"uid":"cfbe880c-32"},{"uid":"cfbe880c-108"},{"uid":"cfbe880c-106"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-154"}]},"cfbe880c-144":{"id":"/src/components/chat-search/text-config.ts","moduleParts":{"index.js":"cfbe880c-145"},"imported":[],"importedBy":[{"uid":"cfbe880c-154"}]},"cfbe880c-146":{"id":"/src/components/chat-search/LoadingConversation.tsx","moduleParts":{"index.js":"cfbe880c-147"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-188"}],"importedBy":[{"uid":"cfbe880c-154"}]},"cfbe880c-148":{"id":"/src/lib/feature-flags.tsx","moduleParts":{"index.js":"cfbe880c-149"},"imported":[{"uid":"cfbe880c-176"}],"importedBy":[{"uid":"cfbe880c-154"}]},"cfbe880c-150":{"id":"/src/lib/hooks.ts","moduleParts":{"index.js":"cfbe880c-151"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-114"}],"importedBy":[{"uid":"cfbe880c-154"}]},"cfbe880c-152":{"id":"/src/components/ui/scroll-area.tsx","moduleParts":{"index.js":"cfbe880c-153"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-183"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-168"},{"uid":"cfbe880c-154"}]},"cfbe880c-154":{"id":"/src/components/chat-search/ChatSearch.tsx","moduleParts":{"index.js":"cfbe880c-155"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-188"},{"uid":"cfbe880c-34"},{"uid":"cfbe880c-126"},{"uid":"cfbe880c-128"},{"uid":"cfbe880c-90"},{"uid":"cfbe880c-130"},{"uid":"cfbe880c-132"},{"uid":"cfbe880c-136"},{"uid":"cfbe880c-140"},{"uid":"cfbe880c-142"},{"uid":"cfbe880c-144"},{"uid":"cfbe880c-106"},{"uid":"cfbe880c-189"},{"uid":"cfbe880c-102"},{"uid":"cfbe880c-146"},{"uid":"cfbe880c-148"},{"uid":"cfbe880c-24"},{"uid":"cfbe880c-150"},{"uid":"cfbe880c-114"},{"uid":"cfbe880c-152"},{"uid":"cfbe880c-88"}],"importedBy":[{"uid":"cfbe880c-171"}]},"cfbe880c-156":{"id":"/src/components/ui/switch.tsx","moduleParts":{"index.js":"cfbe880c-157"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-181"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-168"}]},"cfbe880c-158":{"id":"/src/components/ui/dialog.tsx","moduleParts":{"index.js":"cfbe880c-159"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-187"},{"uid":"cfbe880c-24"},{"uid":"cfbe880c-180"}],"importedBy":[{"uid":"cfbe880c-168"},{"uid":"cfbe880c-160"}]},"cfbe880c-160":{"id":"/src/components/ui/command.tsx","moduleParts":{"index.js":"cfbe880c-161"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-186"},{"uid":"cfbe880c-24"},{"uid":"cfbe880c-158"},{"uid":"cfbe880c-180"}],"importedBy":[{"uid":"cfbe880c-168"},{"uid":"cfbe880c-166"}]},"cfbe880c-162":{"id":"/src/components/ui/select.tsx","moduleParts":{"index.js":"cfbe880c-163"},"imported":[{"uid":"cfbe880c-22"},{"uid":"cfbe880c-176"},{"uid":"cfbe880c-209"},{"uid":"cfbe880c-190"},{"uid":"cfbe880c-24"}],"importedBy":[{"uid":"cfbe880c-164"}]},"cfbe880c-164":{"id":"/src/components/select/simpleSelect.tsx","moduleParts":{"index.js":"cfbe880c-165"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-24"},{"uid":"cfbe880c-162"}],"importedBy":[{"uid":"cfbe880c-173"}]},"cfbe880c-166":{"id":"/src/components/combobox/combobox.tsx","moduleParts":{"index.js":"cfbe880c-167"},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-190"},{"uid":"cfbe880c-24"},{"uid":"cfbe880c-32"},{"uid":"cfbe880c-160"},{"uid":"cfbe880c-44"}],"importedBy":[{"uid":"cfbe880c-175"}]},"cfbe880c-168":{"id":"/src/index.ts","moduleParts":{"index.js":"cfbe880c-169"},"imported":[{"uid":"cfbe880c-170"},{"uid":"cfbe880c-20"},{"uid":"cfbe880c-171"},{"uid":"cfbe880c-172"},{"uid":"cfbe880c-32"},{"uid":"cfbe880c-98"},{"uid":"cfbe880c-134"},{"uid":"cfbe880c-156"},{"uid":"cfbe880c-26"},{"uid":"cfbe880c-40"},{"uid":"cfbe880c-152"},{"uid":"cfbe880c-38"},{"uid":"cfbe880c-36"},{"uid":"cfbe880c-44"},{"uid":"cfbe880c-160"},{"uid":"cfbe880c-158"},{"uid":"cfbe880c-173"},{"uid":"cfbe880c-174"},{"uid":"cfbe880c-175"}],"importedBy":[],"isEntry":true},"cfbe880c-170":{"id":"/src/global.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-168"}]},"cfbe880c-171":{"id":"/src/components/chat-search/index.ts","moduleParts":{},"imported":[{"uid":"cfbe880c-154"},{"uid":"cfbe880c-106"},{"uid":"cfbe880c-108"}],"importedBy":[{"uid":"cfbe880c-168"}]},"cfbe880c-172":{"id":"/src/components/markdown/index.ts","moduleParts":{},"imported":[{"uid":"cfbe880c-54"},{"uid":"cfbe880c-80"},{"uid":"cfbe880c-56"},{"uid":"cfbe880c-72"},{"uid":"cfbe880c-74"},{"uid":"cfbe880c-76"}],"importedBy":[{"uid":"cfbe880c-168"}]},"cfbe880c-173":{"id":"/src/components/select/index.ts","moduleParts":{},"imported":[{"uid":"cfbe880c-164"}],"importedBy":[{"uid":"cfbe880c-168"}]},"cfbe880c-174":{"id":"/src/components/date-picker/index.tsx","moduleParts":{},"imported":[{"uid":"cfbe880c-46"}],"importedBy":[{"uid":"cfbe880c-168"},{"uid":"cfbe880c-48"}]},"cfbe880c-175":{"id":"/src/components/combobox/index.tsx","moduleParts":{},"imported":[{"uid":"cfbe880c-166"}],"importedBy":[{"uid":"cfbe880c-168"}]},"cfbe880c-176":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-32"},{"uid":"cfbe880c-98"},{"uid":"cfbe880c-134"},{"uid":"cfbe880c-156"},{"uid":"cfbe880c-26"},{"uid":"cfbe880c-40"},{"uid":"cfbe880c-152"},{"uid":"cfbe880c-38"},{"uid":"cfbe880c-36"},{"uid":"cfbe880c-44"},{"uid":"cfbe880c-160"},{"uid":"cfbe880c-158"},{"uid":"cfbe880c-154"},{"uid":"cfbe880c-106"},{"uid":"cfbe880c-54"},{"uid":"cfbe880c-80"},{"uid":"cfbe880c-56"},{"uid":"cfbe880c-72"},{"uid":"cfbe880c-74"},{"uid":"cfbe880c-76"},{"uid":"cfbe880c-30"},{"uid":"cfbe880c-24"},{"uid":"cfbe880c-164"},{"uid":"cfbe880c-46"},{"uid":"cfbe880c-166"},{"uid":"cfbe880c-34"},{"uid":"cfbe880c-126"},{"uid":"cfbe880c-128"},{"uid":"cfbe880c-90"},{"uid":"cfbe880c-130"},{"uid":"cfbe880c-132"},{"uid":"cfbe880c-136"},{"uid":"cfbe880c-140"},{"uid":"cfbe880c-142"},{"uid":"cfbe880c-146"},{"uid":"cfbe880c-148"},{"uid":"cfbe880c-150"},{"uid":"cfbe880c-88"},{"uid":"cfbe880c-104"},{"uid":"cfbe880c-70"},{"uid":"cfbe880c-28"},{"uid":"cfbe880c-162"},{"uid":"cfbe880c-42"},{"uid":"cfbe880c-84"},{"uid":"cfbe880c-96"},{"uid":"cfbe880c-205"},{"uid":"cfbe880c-116"},{"uid":"cfbe880c-118"},{"uid":"cfbe880c-120"},{"uid":"cfbe880c-122"},{"uid":"cfbe880c-58"},{"uid":"cfbe880c-60"},{"uid":"cfbe880c-62"},{"uid":"cfbe880c-64"},{"uid":"cfbe880c-66"},{"uid":"cfbe880c-68"},{"uid":"cfbe880c-48"},{"uid":"cfbe880c-82"},{"uid":"cfbe880c-100"},{"uid":"cfbe880c-124"}],"isExternal":true},"cfbe880c-177":{"id":"class-variance-authority","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-32"},{"uid":"cfbe880c-38"}],"isExternal":true},"cfbe880c-178":{"id":"@radix-ui/react-collapsible","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-98"}],"isExternal":true},"cfbe880c-179":{"id":"@radix-ui/react-dropdown-menu","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-134"}],"isExternal":true},"cfbe880c-180":{"id":"@radix-ui/react-icons","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-134"},{"uid":"cfbe880c-160"},{"uid":"cfbe880c-158"}],"isExternal":true},"cfbe880c-181":{"id":"@radix-ui/react-switch","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-156"}],"isExternal":true},"cfbe880c-182":{"id":"@radix-ui/react-tooltip","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-26"}],"isExternal":true},"cfbe880c-183":{"id":"@radix-ui/react-scroll-area","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-152"}],"isExternal":true},"cfbe880c-184":{"id":"@radix-ui/react-label","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-38"}],"isExternal":true},"cfbe880c-185":{"id":"@radix-ui/react-popover","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-44"}],"isExternal":true},"cfbe880c-186":{"id":"cmdk","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-160"}],"isExternal":true},"cfbe880c-187":{"id":"@radix-ui/react-dialog","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-158"}],"isExternal":true},"cfbe880c-188":{"id":"framer-motion","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-154"},{"uid":"cfbe880c-76"},{"uid":"cfbe880c-128"},{"uid":"cfbe880c-90"},{"uid":"cfbe880c-130"},{"uid":"cfbe880c-136"},{"uid":"cfbe880c-140"},{"uid":"cfbe880c-142"},{"uid":"cfbe880c-146"},{"uid":"cfbe880c-100"}],"isExternal":true},"cfbe880c-189":{"id":"/src/components/chat-search/hooks/index.ts","moduleParts":{},"imported":[{"uid":"cfbe880c-108"},{"uid":"cfbe880c-110"},{"uid":"cfbe880c-205"},{"uid":"cfbe880c-116"},{"uid":"cfbe880c-118"},{"uid":"cfbe880c-120"},{"uid":"cfbe880c-122"}],"importedBy":[{"uid":"cfbe880c-154"},{"uid":"cfbe880c-124"}]},"cfbe880c-190":{"id":"@phosphor-icons/react","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-54"},{"uid":"cfbe880c-76"},{"uid":"cfbe880c-46"},{"uid":"cfbe880c-166"},{"uid":"cfbe880c-126"},{"uid":"cfbe880c-128"},{"uid":"cfbe880c-130"},{"uid":"cfbe880c-132"},{"uid":"cfbe880c-136"},{"uid":"cfbe880c-140"},{"uid":"cfbe880c-142"},{"uid":"cfbe880c-88"},{"uid":"cfbe880c-162"},{"uid":"cfbe880c-48"},{"uid":"cfbe880c-100"}],"isExternal":true},"cfbe880c-191":{"id":"react-syntax-highlighter","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-54"}],"isExternal":true},"cfbe880c-192":{"id":"react-syntax-highlighter/dist/esm/styles/prism","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-54"}],"isExternal":true},"cfbe880c-193":{"id":"rehype-raw","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-80"}],"isExternal":true},"cfbe880c-194":{"id":"remark-gfm","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-80"}],"isExternal":true},"cfbe880c-195":{"id":"path-to-regexp","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-80"}],"isExternal":true},"cfbe880c-196":{"id":"react-markdown","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-72"}],"isExternal":true},"cfbe880c-197":{"id":"mermaid","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-74"}],"isExternal":true},"cfbe880c-198":{"id":"react/jsx-runtime","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-30"}],"isExternal":true},"cfbe880c-199":{"id":"clsx","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-24"}],"isExternal":true},"cfbe880c-200":{"id":"tailwind-merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-24"}],"isExternal":true},"cfbe880c-201":{"id":"date-fns","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-46"}],"isExternal":true},"cfbe880c-202":{"id":"/src/components/ui/calendar.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-46"}]},"cfbe880c-203":{"id":"/src/components/feedback/index.ts","moduleParts":{},"imported":[{"uid":"cfbe880c-100"}],"importedBy":[{"uid":"cfbe880c-126"}]},"cfbe880c-204":{"id":"/src/components/generating-star/index.ts","moduleParts":{},"imported":[{"uid":"cfbe880c-124"}],"importedBy":[{"uid":"cfbe880c-126"}]},"cfbe880c-205":{"id":"/src/components/chat-search/hooks/useUrlManager.ts","moduleParts":{},"imported":[{"uid":"cfbe880c-176"},{"uid":"cfbe880c-106"}],"importedBy":[{"uid":"cfbe880c-189"}]},"cfbe880c-206":{"id":"@paralleldrive/cuid2","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-102"},{"uid":"cfbe880c-114"},{"uid":"cfbe880c-86"}],"isExternal":true},"cfbe880c-207":{"id":"use-immer","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-102"}],"isExternal":true},"cfbe880c-208":{"id":"react-use","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-104"},{"uid":"cfbe880c-116"}],"isExternal":true},"cfbe880c-209":{"id":"@radix-ui/react-select","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-162"}],"isExternal":true},"cfbe880c-210":{"id":"react-day-picker","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-42"}],"isExternal":true},"cfbe880c-211":{"id":"react-hook-form","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-48"}],"isExternal":true},"cfbe880c-212":{"id":"@hookform/resolvers/ajv","moduleParts":{},"imported":[],"importedBy":[{"uid":"cfbe880c-48"}],"isExternal":true}},"env":{"rollup":"4.3.0"},"options":{"gzip":false,"brotli":false,"sourcemap":false}};
4933
4933
 
4934
4934
  const run = () => {
4935
4935
  const width = window.innerWidth;