@brainfish-ai/components 0.4.4 → 0.4.6

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,6 +196,20 @@ type ActionInputFormBlock = {
193
196
  initialValues: ActionInputs;
194
197
  schema: ActionInputsSchema;
195
198
  onSubmit?: (inputs: ActionInputs) => void;
199
+ inputs: ActionInput[];
200
+ };
201
+ type ActionInput = {
202
+ name: string;
203
+ required: boolean;
204
+ schema: {
205
+ type: string;
206
+ title: string;
207
+ description: string;
208
+ };
209
+ type: string;
210
+ ui: {
211
+ type: string;
212
+ };
196
213
  };
197
214
  type AnswerBlock = MarkdownTextBlock | ActionButtonsBlock | ActionInputFormBlock;
198
215
  type AnswerState = 'fetching-search-results' | 'fetching-stream' | 'streaming' | 'getting-action-inputs' | 'completed';
@@ -413,6 +430,7 @@ type GetActionInputs = {
413
430
  payload: {
414
431
  searchIntentId: string;
415
432
  actionId: string;
433
+ inputs: ActionInput[];
416
434
  schema: JSONSchema<ActionInputs>;
417
435
  initialValues: ActionInputs;
418
436
  onSubmit: (parameters: ActionInputs) => void;
@@ -570,6 +588,106 @@ declare const Label: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelPr
570
588
 
571
589
  declare const Input: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
572
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
+
573
691
  type SelectOption = {
574
692
  label: string;
575
693
  value: string;
@@ -592,4 +710,18 @@ interface DatePickerProps {
592
710
  }
593
711
  declare function DatePicker({ date, setDate, className, placeholder }: DatePickerProps): React.JSX.Element;
594
712
 
595
- 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.4",
3
+ "version": "0.4.6",
4
4
  "description": "Brainfish Components",
5
5
  "license": "MIT",
6
6
  "module": "./dist/esm/index.js",
@@ -24,8 +24,8 @@
24
24
  "start": "NODE_ENV=development BABEL_ENV=development yarn storybook",
25
25
  "build": "rimraf dist && NODE_ENV=production BABEL_ENV=production rollup -c",
26
26
  "watch": "rollup -c -w",
27
- "lint": "yarn check-types && yarn eslint && yarn stylelint",
28
- "lint:fix": "yarn eslint:fix && yarn stylelint:fix",
27
+ "lint": "yarn check-types && yarn eslint",
28
+ "lint:fix": "yarn eslint:fix",
29
29
  "eslint": "eslint . --ext .js,.jsx,.tsx,.ts",
30
30
  "eslint:fix": "eslint . --ext .js,.jsx,.tsx,.ts --fix",
31
31
  "check-types": "tsc --noEmit true",
@@ -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,6 +132,7 @@
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",
@@ -147,4 +149,4 @@
147
149
  "shadcn": "latest",
148
150
  "use-immer": "^0.11.0"
149
151
  }
150
- }
152
+ }
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":"4c2c93df-1","name":"customColor.ts"},{"uid":"4c2c93df-3","name":"dark.ts"},{"uid":"4c2c93df-5","name":"primary.ts"},{"uid":"4c2c93df-7","name":"orange.ts"},{"uid":"4c2c93df-9","name":"yellow.ts"},{"uid":"4c2c93df-11","name":"green.ts"},{"uid":"4c2c93df-13","name":"blue.ts"},{"uid":"4c2c93df-15","name":"purple.ts"},{"uid":"4c2c93df-17","name":"pink.ts"},{"uid":"4c2c93df-19","name":"red.ts"},{"uid":"4c2c93df-21","name":"index.ts"}]},{"name":"lib","children":[{"uid":"4c2c93df-25","name":"utils.ts"},{"uid":"4c2c93df-105","name":"fetchClient.ts"},{"uid":"4c2c93df-107","name":"api.ts"},{"uid":"4c2c93df-141","name":"feature-flags.tsx"},{"uid":"4c2c93df-143","name":"hooks.ts"}]},{"name":"components","children":[{"name":"ui","children":[{"uid":"4c2c93df-27","name":"tooltip.tsx"},{"uid":"4c2c93df-33","name":"button.tsx"},{"uid":"4c2c93df-37","name":"input.tsx"},{"uid":"4c2c93df-39","name":"label.tsx"},{"uid":"4c2c93df-81","name":"icon.tsx"},{"uid":"4c2c93df-91","name":"collapsible.tsx"},{"uid":"4c2c93df-127","name":"dropdown-menu.tsx"},{"uid":"4c2c93df-133","name":"textarea.tsx"},{"uid":"4c2c93df-145","name":"scroll-area.tsx"},{"uid":"4c2c93df-151","name":"switch.tsx"},{"uid":"4c2c93df-153","name":"select.tsx"},{"uid":"4c2c93df-157","name":"calendar.tsx"},{"uid":"4c2c93df-159","name":"popover.tsx"}]},{"name":"chat-search","children":[{"uid":"4c2c93df-35","name":"Suggestions.tsx"},{"name":"blocks","children":[{"uid":"4c2c93df-41","name":"ActionInputForm.tsx"},{"uid":"4c2c93df-43","name":"ActionButtons.tsx"},{"uid":"4c2c93df-75","name":"MarkdownText.tsx"},{"uid":"4c2c93df-79","name":"utils.ts"}]},{"uid":"4c2c93df-77","name":"AnswerBlock.tsx"},{"uid":"4c2c93df-83","name":"NextBestActions.tsx"},{"uid":"4c2c93df-85","name":"types.ts"},{"name":"helpers/nextBestActions.ts","uid":"4c2c93df-87"},{"uid":"4c2c93df-89","name":"AnswerActions.tsx"},{"name":"hooks","children":[{"uid":"4c2c93df-95","name":"useAnswerList.ts"},{"uid":"4c2c93df-97","name":"useConversationId.ts"},{"uid":"4c2c93df-101","name":"useIsChatSearchDirty.ts"},{"uid":"4c2c93df-103","name":"useScrollManager.ts"},{"uid":"4c2c93df-109","name":"useConversationLoader.ts"},{"uid":"4c2c93df-111","name":"useSubscriptionManager.ts"},{"uid":"4c2c93df-113","name":"useDarkMode.ts"},{"uid":"4c2c93df-115","name":"useAccessibleColor.ts"}]},{"uid":"4c2c93df-99","name":"ChatSearchContext.tsx"},{"uid":"4c2c93df-119","name":"Answer.tsx"},{"uid":"4c2c93df-121","name":"FollowUpQuestions.tsx"},{"uid":"4c2c93df-123","name":"TimelineNavigation.tsx"},{"uid":"4c2c93df-125","name":"ScrollToBottomArrow.tsx"},{"uid":"4c2c93df-129","name":"PrimarySearch.tsx"},{"uid":"4c2c93df-131","name":"FollowUpSearchBar.module.css"},{"uid":"4c2c93df-135","name":"FollowUpSearchBar.tsx"},{"uid":"4c2c93df-137","name":"Header.tsx"},{"uid":"4c2c93df-139","name":"text-config.ts"},{"uid":"4c2c93df-147","name":"LoadingConversation.tsx"},{"uid":"4c2c93df-149","name":"ChatSearch.tsx"}]},{"name":"markdown","children":[{"name":"utils","children":[{"uid":"4c2c93df-45","name":"codeblock.ts"},{"uid":"4c2c93df-71","name":"stripNewLines.ts"}]},{"uid":"4c2c93df-47","name":"CodeBlock.tsx"},{"uid":"4c2c93df-49","name":"Frame.tsx"},{"name":"embeds","children":[{"uid":"4c2c93df-51","name":"Loom.tsx"},{"uid":"4c2c93df-53","name":"Supademo.tsx"},{"uid":"4c2c93df-55","name":"Typeform.tsx"},{"uid":"4c2c93df-57","name":"Vimeo.tsx"},{"uid":"4c2c93df-59","name":"Wistia.tsx"},{"uid":"4c2c93df-61","name":"Youtube.tsx"},{"uid":"4c2c93df-63","name":"index.tsx"}]},{"uid":"4c2c93df-65","name":"MemoizedReactMarkdown.tsx"},{"uid":"4c2c93df-67","name":"MermaidDiagram.tsx"},{"uid":"4c2c93df-69","name":"ZoomableImage.tsx"},{"uid":"4c2c93df-73","name":"FormattedMessage.tsx"}]},{"name":"feedback/feedback.tsx","uid":"4c2c93df-93"},{"name":"generating-star/generating-star.tsx","uid":"4c2c93df-117"},{"name":"select/simpleSelect.tsx","uid":"4c2c93df-155"},{"name":"date-picker/date-picker.tsx","uid":"4c2c93df-161"}]},{"uid":"4c2c93df-163","name":"index.ts"}]},{"name":"node_modules","children":[{"name":"tslib/tslib.es6.js","uid":"4c2c93df-23"},{"name":"@radix-ui","children":[{"name":"react-compose-refs/dist/index.mjs","uid":"4c2c93df-29"},{"name":"react-slot/dist/index.mjs","uid":"4c2c93df-31"}]}]}]}],"isRoot":true},"nodeParts":{"4c2c93df-1":{"renderedLength":354,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-0"},"4c2c93df-3":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-2"},"4c2c93df-5":{"renderedLength":344,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-4"},"4c2c93df-7":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-6"},"4c2c93df-9":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-8"},"4c2c93df-11":{"renderedLength":248,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-10"},"4c2c93df-13":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-12"},"4c2c93df-15":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-14"},"4c2c93df-17":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-16"},"4c2c93df-19":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-18"},"4c2c93df-21":{"renderedLength":127,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-20"},"4c2c93df-23":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-22"},"4c2c93df-25":{"renderedLength":2527,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-24"},"4c2c93df-27":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-26"},"4c2c93df-29":{"renderedLength":802,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-28"},"4c2c93df-31":{"renderedLength":3014,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-30"},"4c2c93df-33":{"renderedLength":1710,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-32"},"4c2c93df-35":{"renderedLength":1526,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-34"},"4c2c93df-37":{"renderedLength":626,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-36"},"4c2c93df-39":{"renderedLength":407,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-38"},"4c2c93df-41":{"renderedLength":3464,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-40"},"4c2c93df-43":{"renderedLength":56,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-42"},"4c2c93df-45":{"renderedLength":944,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-44"},"4c2c93df-47":{"renderedLength":2826,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-46"},"4c2c93df-49":{"renderedLength":1997,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-48"},"4c2c93df-51":{"renderedLength":349,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-50"},"4c2c93df-53":{"renderedLength":279,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-52"},"4c2c93df-55":{"renderedLength":392,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-54"},"4c2c93df-57":{"renderedLength":1011,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-56"},"4c2c93df-59":{"renderedLength":1864,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-58"},"4c2c93df-61":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-60"},"4c2c93df-63":{"renderedLength":768,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-62"},"4c2c93df-65":{"renderedLength":170,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-64"},"4c2c93df-67":{"renderedLength":1855,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-66"},"4c2c93df-69":{"renderedLength":4117,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-68"},"4c2c93df-71":{"renderedLength":75,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-70"},"4c2c93df-73":{"renderedLength":9028,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-72"},"4c2c93df-75":{"renderedLength":1064,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-74"},"4c2c93df-77":{"renderedLength":532,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-76"},"4c2c93df-79":{"renderedLength":600,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-78"},"4c2c93df-81":{"renderedLength":980,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-80"},"4c2c93df-83":{"renderedLength":3985,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-82"},"4c2c93df-85":{"renderedLength":588,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-84"},"4c2c93df-87":{"renderedLength":2142,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-86"},"4c2c93df-89":{"renderedLength":2034,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-88"},"4c2c93df-91":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-90"},"4c2c93df-93":{"renderedLength":4585,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-92"},"4c2c93df-95":{"renderedLength":8860,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-94"},"4c2c93df-97":{"renderedLength":1664,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-96"},"4c2c93df-99":{"renderedLength":2227,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-98"},"4c2c93df-101":{"renderedLength":177,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-100"},"4c2c93df-103":{"renderedLength":1409,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-102"},"4c2c93df-105":{"renderedLength":3720,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-104"},"4c2c93df-107":{"renderedLength":3919,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-106"},"4c2c93df-109":{"renderedLength":2797,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-108"},"4c2c93df-111":{"renderedLength":1130,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-110"},"4c2c93df-113":{"renderedLength":521,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-112"},"4c2c93df-115":{"renderedLength":921,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-114"},"4c2c93df-117":{"renderedLength":2637,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-116"},"4c2c93df-119":{"renderedLength":6812,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-118"},"4c2c93df-121":{"renderedLength":1203,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-120"},"4c2c93df-123":{"renderedLength":4169,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-122"},"4c2c93df-125":{"renderedLength":335,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-124"},"4c2c93df-127":{"renderedLength":6222,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-126"},"4c2c93df-129":{"renderedLength":12791,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-128"},"4c2c93df-131":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-130"},"4c2c93df-133":{"renderedLength":527,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-132"},"4c2c93df-135":{"renderedLength":3631,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-134"},"4c2c93df-137":{"renderedLength":2182,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-136"},"4c2c93df-139":{"renderedLength":2318,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-138"},"4c2c93df-141":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-140"},"4c2c93df-143":{"renderedLength":1815,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-142"},"4c2c93df-145":{"renderedLength":1348,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-144"},"4c2c93df-147":{"renderedLength":636,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-146"},"4c2c93df-149":{"renderedLength":26872,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-148"},"4c2c93df-151":{"renderedLength":922,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-150"},"4c2c93df-153":{"renderedLength":3678,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-152"},"4c2c93df-155":{"renderedLength":673,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-154"},"4c2c93df-157":{"renderedLength":373,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-156"},"4c2c93df-159":{"renderedLength":983,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-158"},"4c2c93df-161":{"renderedLength":753,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-160"},"4c2c93df-163":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"4c2c93df-162"}},"nodeMetas":{"4c2c93df-0":{"id":"/src/colors/customColor.ts","moduleParts":{"index.js":"4c2c93df-1"},"imported":[],"importedBy":[{"uid":"4c2c93df-20"},{"uid":"4c2c93df-4"}]},"4c2c93df-2":{"id":"/src/colors/dark.ts","moduleParts":{"index.js":"4c2c93df-3"},"imported":[],"importedBy":[{"uid":"4c2c93df-20"},{"uid":"4c2c93df-4"}]},"4c2c93df-4":{"id":"/src/colors/primary.ts","moduleParts":{"index.js":"4c2c93df-5"},"imported":[{"uid":"4c2c93df-0"},{"uid":"4c2c93df-2"}],"importedBy":[{"uid":"4c2c93df-20"}]},"4c2c93df-6":{"id":"/src/colors/orange.ts","moduleParts":{"index.js":"4c2c93df-7"},"imported":[],"importedBy":[{"uid":"4c2c93df-20"}]},"4c2c93df-8":{"id":"/src/colors/yellow.ts","moduleParts":{"index.js":"4c2c93df-9"},"imported":[],"importedBy":[{"uid":"4c2c93df-20"}]},"4c2c93df-10":{"id":"/src/colors/green.ts","moduleParts":{"index.js":"4c2c93df-11"},"imported":[],"importedBy":[{"uid":"4c2c93df-20"}]},"4c2c93df-12":{"id":"/src/colors/blue.ts","moduleParts":{"index.js":"4c2c93df-13"},"imported":[],"importedBy":[{"uid":"4c2c93df-20"}]},"4c2c93df-14":{"id":"/src/colors/purple.ts","moduleParts":{"index.js":"4c2c93df-15"},"imported":[],"importedBy":[{"uid":"4c2c93df-20"}]},"4c2c93df-16":{"id":"/src/colors/pink.ts","moduleParts":{"index.js":"4c2c93df-17"},"imported":[],"importedBy":[{"uid":"4c2c93df-20"}]},"4c2c93df-18":{"id":"/src/colors/red.ts","moduleParts":{"index.js":"4c2c93df-19"},"imported":[],"importedBy":[{"uid":"4c2c93df-20"}]},"4c2c93df-20":{"id":"/src/colors/index.ts","moduleParts":{"index.js":"4c2c93df-21"},"imported":[{"uid":"4c2c93df-4"},{"uid":"4c2c93df-2"},{"uid":"4c2c93df-6"},{"uid":"4c2c93df-8"},{"uid":"4c2c93df-10"},{"uid":"4c2c93df-12"},{"uid":"4c2c93df-14"},{"uid":"4c2c93df-16"},{"uid":"4c2c93df-18"},{"uid":"4c2c93df-0"}],"importedBy":[{"uid":"4c2c93df-162"}]},"4c2c93df-22":{"id":"/node_modules/tslib/tslib.es6.js","moduleParts":{"index.js":"4c2c93df-23"},"imported":[],"importedBy":[{"uid":"4c2c93df-32"},{"uid":"4c2c93df-90"},{"uid":"4c2c93df-126"},{"uid":"4c2c93df-150"},{"uid":"4c2c93df-26"},{"uid":"4c2c93df-132"},{"uid":"4c2c93df-144"},{"uid":"4c2c93df-38"},{"uid":"4c2c93df-36"},{"uid":"4c2c93df-148"},{"uid":"4c2c93df-46"},{"uid":"4c2c93df-72"},{"uid":"4c2c93df-66"},{"uid":"4c2c93df-118"},{"uid":"4c2c93df-136"},{"uid":"4c2c93df-142"},{"uid":"4c2c93df-106"},{"uid":"4c2c93df-80"},{"uid":"4c2c93df-152"},{"uid":"4c2c93df-156"},{"uid":"4c2c93df-158"},{"uid":"4c2c93df-104"},{"uid":"4c2c93df-116"}]},"4c2c93df-24":{"id":"/src/lib/utils.ts","moduleParts":{"index.js":"4c2c93df-25"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-189"},{"uid":"4c2c93df-190"}],"importedBy":[{"uid":"4c2c93df-32"},{"uid":"4c2c93df-126"},{"uid":"4c2c93df-150"},{"uid":"4c2c93df-26"},{"uid":"4c2c93df-132"},{"uid":"4c2c93df-144"},{"uid":"4c2c93df-38"},{"uid":"4c2c93df-36"},{"uid":"4c2c93df-148"},{"uid":"4c2c93df-72"},{"uid":"4c2c93df-154"},{"uid":"4c2c93df-160"},{"uid":"4c2c93df-122"},{"uid":"4c2c93df-128"},{"uid":"4c2c93df-134"},{"uid":"4c2c93df-136"},{"uid":"4c2c93df-152"},{"uid":"4c2c93df-156"},{"uid":"4c2c93df-158"},{"uid":"4c2c93df-108"},{"uid":"4c2c93df-114"},{"uid":"4c2c93df-40"},{"uid":"4c2c93df-116"}]},"4c2c93df-26":{"id":"/src/components/ui/tooltip.tsx","moduleParts":{"index.js":"4c2c93df-27"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-175"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-162"},{"uid":"4c2c93df-34"},{"uid":"4c2c93df-118"},{"uid":"4c2c93df-122"},{"uid":"4c2c93df-92"}]},"4c2c93df-28":{"id":"/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","moduleParts":{"index.js":"4c2c93df-29"},"imported":[{"uid":"4c2c93df-169"}],"importedBy":[{"uid":"4c2c93df-30"}]},"4c2c93df-30":{"id":"/node_modules/@radix-ui/react-slot/dist/index.mjs","moduleParts":{"index.js":"4c2c93df-31"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-28"},{"uid":"4c2c93df-188"}],"importedBy":[{"uid":"4c2c93df-32"}]},"4c2c93df-32":{"id":"/src/components/ui/button.tsx","moduleParts":{"index.js":"4c2c93df-33"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-30"},{"uid":"4c2c93df-170"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-162"},{"uid":"4c2c93df-46"},{"uid":"4c2c93df-160"},{"uid":"4c2c93df-34"},{"uid":"4c2c93df-118"},{"uid":"4c2c93df-120"},{"uid":"4c2c93df-82"},{"uid":"4c2c93df-124"},{"uid":"4c2c93df-128"},{"uid":"4c2c93df-134"},{"uid":"4c2c93df-136"},{"uid":"4c2c93df-40"},{"uid":"4c2c93df-92"}]},"4c2c93df-34":{"id":"/src/components/chat-search/Suggestions.tsx","moduleParts":{"index.js":"4c2c93df-35"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-26"},{"uid":"4c2c93df-32"}],"importedBy":[{"uid":"4c2c93df-148"}]},"4c2c93df-36":{"id":"/src/components/ui/input.tsx","moduleParts":{"index.js":"4c2c93df-37"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-162"},{"uid":"4c2c93df-40"}]},"4c2c93df-38":{"id":"/src/components/ui/label.tsx","moduleParts":{"index.js":"4c2c93df-39"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-177"},{"uid":"4c2c93df-170"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-162"},{"uid":"4c2c93df-40"}]},"4c2c93df-40":{"id":"/src/components/chat-search/blocks/ActionInputForm.tsx","moduleParts":{"index.js":"4c2c93df-41"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-202"},{"uid":"4c2c93df-203"},{"uid":"4c2c93df-180"},{"uid":"4c2c93df-32"},{"uid":"4c2c93df-36"},{"uid":"4c2c93df-38"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-76"}]},"4c2c93df-42":{"id":"/src/components/chat-search/blocks/ActionButtons.tsx","moduleParts":{"index.js":"4c2c93df-43"},"imported":[],"importedBy":[{"uid":"4c2c93df-76"}]},"4c2c93df-44":{"id":"/src/components/markdown/utils/codeblock.ts","moduleParts":{"index.js":"4c2c93df-45"},"imported":[],"importedBy":[{"uid":"4c2c93df-46"}]},"4c2c93df-46":{"id":"/src/components/markdown/CodeBlock.tsx","moduleParts":{"index.js":"4c2c93df-47"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-180"},{"uid":"4c2c93df-181"},{"uid":"4c2c93df-182"},{"uid":"4c2c93df-32"},{"uid":"4c2c93df-44"}],"importedBy":[{"uid":"4c2c93df-166"},{"uid":"4c2c93df-72"}]},"4c2c93df-48":{"id":"/src/components/markdown/Frame.tsx","moduleParts":{"index.js":"4c2c93df-49"},"imported":[{"uid":"4c2c93df-169"}],"importedBy":[{"uid":"4c2c93df-166"},{"uid":"4c2c93df-50"},{"uid":"4c2c93df-52"},{"uid":"4c2c93df-54"},{"uid":"4c2c93df-56"},{"uid":"4c2c93df-58"},{"uid":"4c2c93df-60"}]},"4c2c93df-50":{"id":"/src/components/markdown/embeds/Loom.tsx","moduleParts":{"index.js":"4c2c93df-51"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-48"}],"importedBy":[{"uid":"4c2c93df-62"}]},"4c2c93df-52":{"id":"/src/components/markdown/embeds/Supademo.tsx","moduleParts":{"index.js":"4c2c93df-53"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-48"}],"importedBy":[{"uid":"4c2c93df-62"}]},"4c2c93df-54":{"id":"/src/components/markdown/embeds/Typeform.tsx","moduleParts":{"index.js":"4c2c93df-55"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-48"}],"importedBy":[{"uid":"4c2c93df-62"}]},"4c2c93df-56":{"id":"/src/components/markdown/embeds/Vimeo.tsx","moduleParts":{"index.js":"4c2c93df-57"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-48"}],"importedBy":[{"uid":"4c2c93df-62"}]},"4c2c93df-58":{"id":"/src/components/markdown/embeds/Wistia.tsx","moduleParts":{"index.js":"4c2c93df-59"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-48"}],"importedBy":[{"uid":"4c2c93df-62"}]},"4c2c93df-60":{"id":"/src/components/markdown/embeds/Youtube.tsx","moduleParts":{"index.js":"4c2c93df-61"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-48"}],"importedBy":[{"uid":"4c2c93df-62"}]},"4c2c93df-62":{"id":"/src/components/markdown/embeds/index.tsx","moduleParts":{"index.js":"4c2c93df-63"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-50"},{"uid":"4c2c93df-52"},{"uid":"4c2c93df-54"},{"uid":"4c2c93df-56"},{"uid":"4c2c93df-58"},{"uid":"4c2c93df-60"}],"importedBy":[{"uid":"4c2c93df-72"}]},"4c2c93df-64":{"id":"/src/components/markdown/MemoizedReactMarkdown.tsx","moduleParts":{"index.js":"4c2c93df-65"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-186"}],"importedBy":[{"uid":"4c2c93df-166"},{"uid":"4c2c93df-72"}]},"4c2c93df-66":{"id":"/src/components/markdown/MermaidDiagram.tsx","moduleParts":{"index.js":"4c2c93df-67"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-187"}],"importedBy":[{"uid":"4c2c93df-166"},{"uid":"4c2c93df-72"}]},"4c2c93df-68":{"id":"/src/components/markdown/ZoomableImage.tsx","moduleParts":{"index.js":"4c2c93df-69"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-178"},{"uid":"4c2c93df-180"}],"importedBy":[{"uid":"4c2c93df-166"},{"uid":"4c2c93df-72"}]},"4c2c93df-70":{"id":"/src/components/markdown/utils/stripNewLines.ts","moduleParts":{"index.js":"4c2c93df-71"},"imported":[],"importedBy":[{"uid":"4c2c93df-72"}]},"4c2c93df-72":{"id":"/src/components/markdown/FormattedMessage.tsx","moduleParts":{"index.js":"4c2c93df-73"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-183"},{"uid":"4c2c93df-184"},{"uid":"4c2c93df-185"},{"uid":"4c2c93df-46"},{"uid":"4c2c93df-62"},{"uid":"4c2c93df-64"},{"uid":"4c2c93df-66"},{"uid":"4c2c93df-68"},{"uid":"4c2c93df-70"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-166"},{"uid":"4c2c93df-74"}]},"4c2c93df-74":{"id":"/src/components/chat-search/blocks/MarkdownText.tsx","moduleParts":{"index.js":"4c2c93df-75"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-72"}],"importedBy":[{"uid":"4c2c93df-76"}]},"4c2c93df-76":{"id":"/src/components/chat-search/AnswerBlock.tsx","moduleParts":{"index.js":"4c2c93df-77"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-40"},{"uid":"4c2c93df-42"},{"uid":"4c2c93df-74"}],"importedBy":[{"uid":"4c2c93df-118"}]},"4c2c93df-78":{"id":"/src/components/chat-search/blocks/utils.ts","moduleParts":{"index.js":"4c2c93df-79"},"imported":[{"uid":"4c2c93df-196"}],"importedBy":[{"uid":"4c2c93df-118"},{"uid":"4c2c93df-94"},{"uid":"4c2c93df-108"}]},"4c2c93df-80":{"id":"/src/components/ui/icon.tsx","moduleParts":{"index.js":"4c2c93df-81"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-180","dynamic":true}],"importedBy":[{"uid":"4c2c93df-148"},{"uid":"4c2c93df-82"}]},"4c2c93df-82":{"id":"/src/components/chat-search/NextBestActions.tsx","moduleParts":{"index.js":"4c2c93df-83"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-178"},{"uid":"4c2c93df-80"},{"uid":"4c2c93df-32"}],"importedBy":[{"uid":"4c2c93df-148"},{"uid":"4c2c93df-88"}]},"4c2c93df-84":{"id":"/src/components/chat-search/types.ts","moduleParts":{"index.js":"4c2c93df-85"},"imported":[],"importedBy":[{"uid":"4c2c93df-86"}]},"4c2c93df-86":{"id":"/src/components/chat-search/helpers/nextBestActions.ts","moduleParts":{"index.js":"4c2c93df-87"},"imported":[{"uid":"4c2c93df-84"}],"importedBy":[{"uid":"4c2c93df-88"}]},"4c2c93df-88":{"id":"/src/components/chat-search/AnswerActions.tsx","moduleParts":{"index.js":"4c2c93df-89"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-82"},{"uid":"4c2c93df-86"}],"importedBy":[{"uid":"4c2c93df-118"}]},"4c2c93df-90":{"id":"/src/components/ui/collapsible.tsx","moduleParts":{"index.js":"4c2c93df-91"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-171"}],"importedBy":[{"uid":"4c2c93df-162"},{"uid":"4c2c93df-118"}]},"4c2c93df-92":{"id":"/src/components/feedback/feedback.tsx","moduleParts":{"index.js":"4c2c93df-93"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-180"},{"uid":"4c2c93df-178"},{"uid":"4c2c93df-32"},{"uid":"4c2c93df-26"}],"importedBy":[{"uid":"4c2c93df-193"}]},"4c2c93df-94":{"id":"/src/components/chat-search/hooks/useAnswerList.ts","moduleParts":{"index.js":"4c2c93df-95"},"imported":[{"uid":"4c2c93df-196"},{"uid":"4c2c93df-197"},{"uid":"4c2c93df-78"}],"importedBy":[{"uid":"4c2c93df-148"},{"uid":"4c2c93df-98"},{"uid":"4c2c93df-108"}]},"4c2c93df-96":{"id":"/src/components/chat-search/hooks/useConversationId.ts","moduleParts":{"index.js":"4c2c93df-97"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-198"}],"importedBy":[{"uid":"4c2c93df-98"}]},"4c2c93df-98":{"id":"/src/components/chat-search/ChatSearchContext.tsx","moduleParts":{"index.js":"4c2c93df-99"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-94"},{"uid":"4c2c93df-96"}],"importedBy":[{"uid":"4c2c93df-165"},{"uid":"4c2c93df-148"},{"uid":"4c2c93df-100"},{"uid":"4c2c93df-136"},{"uid":"4c2c93df-195"},{"uid":"4c2c93df-108"},{"uid":"4c2c93df-110"}]},"4c2c93df-100":{"id":"/src/components/chat-search/hooks/useIsChatSearchDirty.ts","moduleParts":{"index.js":"4c2c93df-101"},"imported":[{"uid":"4c2c93df-98"}],"importedBy":[{"uid":"4c2c93df-165"},{"uid":"4c2c93df-136"},{"uid":"4c2c93df-179"}]},"4c2c93df-102":{"id":"/src/components/chat-search/hooks/useScrollManager.ts","moduleParts":{"index.js":"4c2c93df-103"},"imported":[],"importedBy":[{"uid":"4c2c93df-179"}]},"4c2c93df-104":{"id":"/src/lib/fetchClient.ts","moduleParts":{"index.js":"4c2c93df-105"},"imported":[{"uid":"4c2c93df-22"}],"importedBy":[{"uid":"4c2c93df-106"}]},"4c2c93df-106":{"id":"/src/lib/api.ts","moduleParts":{"index.js":"4c2c93df-107"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-196"},{"uid":"4c2c93df-104"}],"importedBy":[{"uid":"4c2c93df-148"},{"uid":"4c2c93df-142"},{"uid":"4c2c93df-108"}]},"4c2c93df-108":{"id":"/src/components/chat-search/hooks/useConversationLoader.ts","moduleParts":{"index.js":"4c2c93df-109"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-198"},{"uid":"4c2c93df-98"},{"uid":"4c2c93df-94"},{"uid":"4c2c93df-78"},{"uid":"4c2c93df-24"},{"uid":"4c2c93df-106"}],"importedBy":[{"uid":"4c2c93df-179"}]},"4c2c93df-110":{"id":"/src/components/chat-search/hooks/useSubscriptionManager.ts","moduleParts":{"index.js":"4c2c93df-111"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-98"}],"importedBy":[{"uid":"4c2c93df-179"}]},"4c2c93df-112":{"id":"/src/components/chat-search/hooks/useDarkMode.ts","moduleParts":{"index.js":"4c2c93df-113"},"imported":[{"uid":"4c2c93df-169"}],"importedBy":[{"uid":"4c2c93df-179"},{"uid":"4c2c93df-114"}]},"4c2c93df-114":{"id":"/src/components/chat-search/hooks/useAccessibleColor.ts","moduleParts":{"index.js":"4c2c93df-115"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-24"},{"uid":"4c2c93df-112"}],"importedBy":[{"uid":"4c2c93df-179"}]},"4c2c93df-116":{"id":"/src/components/generating-star/generating-star.tsx","moduleParts":{"index.js":"4c2c93df-117"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-24"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-179"}],"importedBy":[{"uid":"4c2c93df-194"}]},"4c2c93df-118":{"id":"/src/components/chat-search/Answer.tsx","moduleParts":{"index.js":"4c2c93df-119"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-180"},{"uid":"4c2c93df-32"},{"uid":"4c2c93df-76"},{"uid":"4c2c93df-78"},{"uid":"4c2c93df-88"},{"uid":"4c2c93df-90"},{"uid":"4c2c93df-193"},{"uid":"4c2c93df-194"},{"uid":"4c2c93df-26"}],"importedBy":[{"uid":"4c2c93df-148"}]},"4c2c93df-120":{"id":"/src/components/chat-search/FollowUpQuestions.tsx","moduleParts":{"index.js":"4c2c93df-121"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-178"},{"uid":"4c2c93df-180"},{"uid":"4c2c93df-32"}],"importedBy":[{"uid":"4c2c93df-148"}]},"4c2c93df-122":{"id":"/src/components/chat-search/TimelineNavigation.tsx","moduleParts":{"index.js":"4c2c93df-123"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-180"},{"uid":"4c2c93df-178"},{"uid":"4c2c93df-26"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-148"}]},"4c2c93df-124":{"id":"/src/components/chat-search/ScrollToBottomArrow.tsx","moduleParts":{"index.js":"4c2c93df-125"},"imported":[{"uid":"4c2c93df-180"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-32"}],"importedBy":[{"uid":"4c2c93df-148"}]},"4c2c93df-126":{"id":"/src/components/ui/dropdown-menu.tsx","moduleParts":{"index.js":"4c2c93df-127"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-172"},{"uid":"4c2c93df-24"},{"uid":"4c2c93df-173"}],"importedBy":[{"uid":"4c2c93df-162"},{"uid":"4c2c93df-128"}]},"4c2c93df-128":{"id":"/src/components/chat-search/PrimarySearch.tsx","moduleParts":{"index.js":"4c2c93df-129"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-178"},{"uid":"4c2c93df-180"},{"uid":"4c2c93df-32"},{"uid":"4c2c93df-126"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-148"}]},"4c2c93df-130":{"id":"/src/components/chat-search/FollowUpSearchBar.module.css","moduleParts":{"index.js":"4c2c93df-131"},"imported":[],"importedBy":[{"uid":"4c2c93df-134"}]},"4c2c93df-132":{"id":"/src/components/ui/textarea.tsx","moduleParts":{"index.js":"4c2c93df-133"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-162"},{"uid":"4c2c93df-134"}]},"4c2c93df-134":{"id":"/src/components/chat-search/FollowUpSearchBar.tsx","moduleParts":{"index.js":"4c2c93df-135"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-180"},{"uid":"4c2c93df-178"},{"uid":"4c2c93df-130"},{"uid":"4c2c93df-32"},{"uid":"4c2c93df-132"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-148"}]},"4c2c93df-136":{"id":"/src/components/chat-search/Header.tsx","moduleParts":{"index.js":"4c2c93df-137"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-178"},{"uid":"4c2c93df-180"},{"uid":"4c2c93df-32"},{"uid":"4c2c93df-100"},{"uid":"4c2c93df-98"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-148"}]},"4c2c93df-138":{"id":"/src/components/chat-search/text-config.ts","moduleParts":{"index.js":"4c2c93df-139"},"imported":[],"importedBy":[{"uid":"4c2c93df-148"}]},"4c2c93df-140":{"id":"/src/lib/feature-flags.tsx","moduleParts":{"index.js":"4c2c93df-141"},"imported":[{"uid":"4c2c93df-169"}],"importedBy":[{"uid":"4c2c93df-148"}]},"4c2c93df-142":{"id":"/src/lib/hooks.ts","moduleParts":{"index.js":"4c2c93df-143"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-106"}],"importedBy":[{"uid":"4c2c93df-148"}]},"4c2c93df-144":{"id":"/src/components/ui/scroll-area.tsx","moduleParts":{"index.js":"4c2c93df-145"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-176"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-162"},{"uid":"4c2c93df-148"}]},"4c2c93df-146":{"id":"/src/components/chat-search/LoadingConversation.tsx","moduleParts":{"index.js":"4c2c93df-147"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-178"}],"importedBy":[{"uid":"4c2c93df-148"}]},"4c2c93df-148":{"id":"/src/components/chat-search/ChatSearch.tsx","moduleParts":{"index.js":"4c2c93df-149"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-178"},{"uid":"4c2c93df-34"},{"uid":"4c2c93df-118"},{"uid":"4c2c93df-120"},{"uid":"4c2c93df-82"},{"uid":"4c2c93df-122"},{"uid":"4c2c93df-124"},{"uid":"4c2c93df-128"},{"uid":"4c2c93df-134"},{"uid":"4c2c93df-136"},{"uid":"4c2c93df-138"},{"uid":"4c2c93df-98"},{"uid":"4c2c93df-179"},{"uid":"4c2c93df-94"},{"uid":"4c2c93df-140"},{"uid":"4c2c93df-24"},{"uid":"4c2c93df-142"},{"uid":"4c2c93df-106"},{"uid":"4c2c93df-144"},{"uid":"4c2c93df-80"},{"uid":"4c2c93df-146"}],"importedBy":[{"uid":"4c2c93df-165"}]},"4c2c93df-150":{"id":"/src/components/ui/switch.tsx","moduleParts":{"index.js":"4c2c93df-151"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-174"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-162"}]},"4c2c93df-152":{"id":"/src/components/ui/select.tsx","moduleParts":{"index.js":"4c2c93df-153"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-199"},{"uid":"4c2c93df-180"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-154"}]},"4c2c93df-154":{"id":"/src/components/select/simpleSelect.tsx","moduleParts":{"index.js":"4c2c93df-155"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-24"},{"uid":"4c2c93df-152"}],"importedBy":[{"uid":"4c2c93df-167"}]},"4c2c93df-156":{"id":"/src/components/ui/calendar.tsx","moduleParts":{"index.js":"4c2c93df-157"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-200"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-160"}]},"4c2c93df-158":{"id":"/src/components/ui/popover.tsx","moduleParts":{"index.js":"4c2c93df-159"},"imported":[{"uid":"4c2c93df-22"},{"uid":"4c2c93df-169"},{"uid":"4c2c93df-201"},{"uid":"4c2c93df-24"}],"importedBy":[{"uid":"4c2c93df-160"}]},"4c2c93df-160":{"id":"/src/components/date-picker/date-picker.tsx","moduleParts":{"index.js":"4c2c93df-161"},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-191"},{"uid":"4c2c93df-180"},{"uid":"4c2c93df-24"},{"uid":"4c2c93df-32"},{"uid":"4c2c93df-156"},{"uid":"4c2c93df-158"},{"uid":"4c2c93df-192"}],"importedBy":[{"uid":"4c2c93df-168"}]},"4c2c93df-162":{"id":"/src/index.ts","moduleParts":{"index.js":"4c2c93df-163"},"imported":[{"uid":"4c2c93df-164"},{"uid":"4c2c93df-20"},{"uid":"4c2c93df-165"},{"uid":"4c2c93df-166"},{"uid":"4c2c93df-32"},{"uid":"4c2c93df-90"},{"uid":"4c2c93df-126"},{"uid":"4c2c93df-150"},{"uid":"4c2c93df-26"},{"uid":"4c2c93df-132"},{"uid":"4c2c93df-144"},{"uid":"4c2c93df-38"},{"uid":"4c2c93df-36"},{"uid":"4c2c93df-167"},{"uid":"4c2c93df-168"}],"importedBy":[],"isEntry":true},"4c2c93df-164":{"id":"/src/global.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-162"}]},"4c2c93df-165":{"id":"/src/components/chat-search/index.ts","moduleParts":{},"imported":[{"uid":"4c2c93df-148"},{"uid":"4c2c93df-98"},{"uid":"4c2c93df-100"}],"importedBy":[{"uid":"4c2c93df-162"}]},"4c2c93df-166":{"id":"/src/components/markdown/index.ts","moduleParts":{},"imported":[{"uid":"4c2c93df-46"},{"uid":"4c2c93df-72"},{"uid":"4c2c93df-48"},{"uid":"4c2c93df-64"},{"uid":"4c2c93df-66"},{"uid":"4c2c93df-68"}],"importedBy":[{"uid":"4c2c93df-162"}]},"4c2c93df-167":{"id":"/src/components/select/index.ts","moduleParts":{},"imported":[{"uid":"4c2c93df-154"}],"importedBy":[{"uid":"4c2c93df-162"}]},"4c2c93df-168":{"id":"/src/components/date-picker/index.tsx","moduleParts":{},"imported":[{"uid":"4c2c93df-160"}],"importedBy":[{"uid":"4c2c93df-162"}]},"4c2c93df-169":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-32"},{"uid":"4c2c93df-90"},{"uid":"4c2c93df-126"},{"uid":"4c2c93df-150"},{"uid":"4c2c93df-26"},{"uid":"4c2c93df-132"},{"uid":"4c2c93df-144"},{"uid":"4c2c93df-38"},{"uid":"4c2c93df-36"},{"uid":"4c2c93df-148"},{"uid":"4c2c93df-98"},{"uid":"4c2c93df-46"},{"uid":"4c2c93df-72"},{"uid":"4c2c93df-48"},{"uid":"4c2c93df-64"},{"uid":"4c2c93df-66"},{"uid":"4c2c93df-68"},{"uid":"4c2c93df-30"},{"uid":"4c2c93df-24"},{"uid":"4c2c93df-154"},{"uid":"4c2c93df-160"},{"uid":"4c2c93df-34"},{"uid":"4c2c93df-118"},{"uid":"4c2c93df-120"},{"uid":"4c2c93df-82"},{"uid":"4c2c93df-122"},{"uid":"4c2c93df-124"},{"uid":"4c2c93df-128"},{"uid":"4c2c93df-134"},{"uid":"4c2c93df-136"},{"uid":"4c2c93df-140"},{"uid":"4c2c93df-142"},{"uid":"4c2c93df-80"},{"uid":"4c2c93df-146"},{"uid":"4c2c93df-96"},{"uid":"4c2c93df-62"},{"uid":"4c2c93df-28"},{"uid":"4c2c93df-152"},{"uid":"4c2c93df-156"},{"uid":"4c2c93df-158"},{"uid":"4c2c93df-76"},{"uid":"4c2c93df-88"},{"uid":"4c2c93df-195"},{"uid":"4c2c93df-108"},{"uid":"4c2c93df-110"},{"uid":"4c2c93df-112"},{"uid":"4c2c93df-114"},{"uid":"4c2c93df-50"},{"uid":"4c2c93df-52"},{"uid":"4c2c93df-54"},{"uid":"4c2c93df-56"},{"uid":"4c2c93df-58"},{"uid":"4c2c93df-60"},{"uid":"4c2c93df-40"},{"uid":"4c2c93df-74"},{"uid":"4c2c93df-92"},{"uid":"4c2c93df-116"}],"isExternal":true},"4c2c93df-170":{"id":"class-variance-authority","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-32"},{"uid":"4c2c93df-38"}],"isExternal":true},"4c2c93df-171":{"id":"@radix-ui/react-collapsible","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-90"}],"isExternal":true},"4c2c93df-172":{"id":"@radix-ui/react-dropdown-menu","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-126"}],"isExternal":true},"4c2c93df-173":{"id":"@radix-ui/react-icons","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-126"}],"isExternal":true},"4c2c93df-174":{"id":"@radix-ui/react-switch","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-150"}],"isExternal":true},"4c2c93df-175":{"id":"@radix-ui/react-tooltip","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-26"}],"isExternal":true},"4c2c93df-176":{"id":"@radix-ui/react-scroll-area","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-144"}],"isExternal":true},"4c2c93df-177":{"id":"@radix-ui/react-label","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-38"}],"isExternal":true},"4c2c93df-178":{"id":"framer-motion","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-148"},{"uid":"4c2c93df-68"},{"uid":"4c2c93df-120"},{"uid":"4c2c93df-82"},{"uid":"4c2c93df-122"},{"uid":"4c2c93df-128"},{"uid":"4c2c93df-134"},{"uid":"4c2c93df-136"},{"uid":"4c2c93df-146"},{"uid":"4c2c93df-92"}],"isExternal":true},"4c2c93df-179":{"id":"/src/components/chat-search/hooks/index.ts","moduleParts":{},"imported":[{"uid":"4c2c93df-100"},{"uid":"4c2c93df-102"},{"uid":"4c2c93df-195"},{"uid":"4c2c93df-108"},{"uid":"4c2c93df-110"},{"uid":"4c2c93df-112"},{"uid":"4c2c93df-114"}],"importedBy":[{"uid":"4c2c93df-148"},{"uid":"4c2c93df-116"}]},"4c2c93df-180":{"id":"@phosphor-icons/react","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-46"},{"uid":"4c2c93df-68"},{"uid":"4c2c93df-160"},{"uid":"4c2c93df-118"},{"uid":"4c2c93df-120"},{"uid":"4c2c93df-122"},{"uid":"4c2c93df-124"},{"uid":"4c2c93df-128"},{"uid":"4c2c93df-134"},{"uid":"4c2c93df-136"},{"uid":"4c2c93df-80"},{"uid":"4c2c93df-152"},{"uid":"4c2c93df-40"},{"uid":"4c2c93df-92"}],"isExternal":true},"4c2c93df-181":{"id":"react-syntax-highlighter","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-46"}],"isExternal":true},"4c2c93df-182":{"id":"react-syntax-highlighter/dist/esm/styles/prism","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-46"}],"isExternal":true},"4c2c93df-183":{"id":"rehype-raw","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-72"}],"isExternal":true},"4c2c93df-184":{"id":"remark-gfm","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-72"}],"isExternal":true},"4c2c93df-185":{"id":"path-to-regexp","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-72"}],"isExternal":true},"4c2c93df-186":{"id":"react-markdown","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-64"}],"isExternal":true},"4c2c93df-187":{"id":"mermaid","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-66"}],"isExternal":true},"4c2c93df-188":{"id":"react/jsx-runtime","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-30"}],"isExternal":true},"4c2c93df-189":{"id":"clsx","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-24"}],"isExternal":true},"4c2c93df-190":{"id":"tailwind-merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-24"}],"isExternal":true},"4c2c93df-191":{"id":"date-fns","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-160"}],"isExternal":true},"4c2c93df-192":{"id":"/src/components/ui/calendar.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-160"}]},"4c2c93df-193":{"id":"/src/components/feedback/index.ts","moduleParts":{},"imported":[{"uid":"4c2c93df-92"}],"importedBy":[{"uid":"4c2c93df-118"}]},"4c2c93df-194":{"id":"/src/components/generating-star/index.ts","moduleParts":{},"imported":[{"uid":"4c2c93df-116"}],"importedBy":[{"uid":"4c2c93df-118"}]},"4c2c93df-195":{"id":"/src/components/chat-search/hooks/useUrlManager.ts","moduleParts":{},"imported":[{"uid":"4c2c93df-169"},{"uid":"4c2c93df-98"}],"importedBy":[{"uid":"4c2c93df-179"}]},"4c2c93df-196":{"id":"@paralleldrive/cuid2","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-94"},{"uid":"4c2c93df-106"},{"uid":"4c2c93df-78"}],"isExternal":true},"4c2c93df-197":{"id":"use-immer","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-94"}],"isExternal":true},"4c2c93df-198":{"id":"react-use","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-96"},{"uid":"4c2c93df-108"}],"isExternal":true},"4c2c93df-199":{"id":"@radix-ui/react-select","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-152"}],"isExternal":true},"4c2c93df-200":{"id":"react-day-picker","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-156"}],"isExternal":true},"4c2c93df-201":{"id":"@radix-ui/react-popover","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-158"}],"isExternal":true},"4c2c93df-202":{"id":"react-hook-form","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-40"}],"isExternal":true},"4c2c93df-203":{"id":"@hookform/resolvers/ajv","moduleParts":{},"imported":[],"importedBy":[{"uid":"4c2c93df-40"}],"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":"90233a90-1","name":"customColor.ts"},{"uid":"90233a90-3","name":"dark.ts"},{"uid":"90233a90-5","name":"primary.ts"},{"uid":"90233a90-7","name":"orange.ts"},{"uid":"90233a90-9","name":"yellow.ts"},{"uid":"90233a90-11","name":"green.ts"},{"uid":"90233a90-13","name":"blue.ts"},{"uid":"90233a90-15","name":"purple.ts"},{"uid":"90233a90-17","name":"pink.ts"},{"uid":"90233a90-19","name":"red.ts"},{"uid":"90233a90-21","name":"index.ts"}]},{"name":"lib","children":[{"uid":"90233a90-25","name":"utils.ts"},{"uid":"90233a90-107","name":"fetchClient.ts"},{"uid":"90233a90-109","name":"api.ts"},{"uid":"90233a90-143","name":"feature-flags.tsx"},{"uid":"90233a90-145","name":"hooks.ts"}]},{"name":"components","children":[{"name":"ui","children":[{"uid":"90233a90-27","name":"tooltip.tsx"},{"uid":"90233a90-33","name":"button.tsx"},{"uid":"90233a90-37","name":"input.tsx"},{"uid":"90233a90-39","name":"label.tsx"},{"uid":"90233a90-41","name":"textarea.tsx"},{"uid":"90233a90-83","name":"icon.tsx"},{"uid":"90233a90-93","name":"collapsible.tsx"},{"uid":"90233a90-129","name":"dropdown-menu.tsx"},{"uid":"90233a90-147","name":"scroll-area.tsx"},{"uid":"90233a90-151","name":"switch.tsx"},{"uid":"90233a90-153","name":"popover.tsx"},{"uid":"90233a90-155","name":"dialog.tsx"},{"uid":"90233a90-157","name":"command.tsx"},{"uid":"90233a90-159","name":"select.tsx"},{"uid":"90233a90-163","name":"calendar.tsx"}]},{"name":"chat-search","children":[{"uid":"90233a90-35","name":"Suggestions.tsx"},{"name":"blocks","children":[{"uid":"90233a90-43","name":"ActionInputForm.tsx"},{"uid":"90233a90-45","name":"ActionButtons.tsx"},{"uid":"90233a90-77","name":"MarkdownText.tsx"},{"uid":"90233a90-81","name":"utils.ts"}]},{"uid":"90233a90-79","name":"AnswerBlock.tsx"},{"uid":"90233a90-85","name":"NextBestActions.tsx"},{"uid":"90233a90-87","name":"types.ts"},{"name":"helpers/nextBestActions.ts","uid":"90233a90-89"},{"uid":"90233a90-91","name":"AnswerActions.tsx"},{"name":"hooks","children":[{"uid":"90233a90-97","name":"useAnswerList.ts"},{"uid":"90233a90-99","name":"useConversationId.ts"},{"uid":"90233a90-103","name":"useIsChatSearchDirty.ts"},{"uid":"90233a90-105","name":"useScrollManager.ts"},{"uid":"90233a90-111","name":"useConversationLoader.ts"},{"uid":"90233a90-113","name":"useSubscriptionManager.ts"},{"uid":"90233a90-115","name":"useDarkMode.ts"},{"uid":"90233a90-117","name":"useAccessibleColor.ts"}]},{"uid":"90233a90-101","name":"ChatSearchContext.tsx"},{"uid":"90233a90-121","name":"Answer.tsx"},{"uid":"90233a90-123","name":"FollowUpQuestions.tsx"},{"uid":"90233a90-125","name":"TimelineNavigation.tsx"},{"uid":"90233a90-127","name":"ScrollToBottomArrow.tsx"},{"uid":"90233a90-131","name":"PrimarySearch.tsx"},{"uid":"90233a90-133","name":"FollowUpSearchBar.module.css"},{"uid":"90233a90-135","name":"FollowUpSearchBar.tsx"},{"uid":"90233a90-137","name":"Header.tsx"},{"uid":"90233a90-139","name":"text-config.ts"},{"uid":"90233a90-141","name":"LoadingConversation.tsx"},{"uid":"90233a90-149","name":"ChatSearch.tsx"}]},{"name":"markdown","children":[{"name":"utils","children":[{"uid":"90233a90-47","name":"codeblock.ts"},{"uid":"90233a90-73","name":"stripNewLines.ts"}]},{"uid":"90233a90-49","name":"CodeBlock.tsx"},{"uid":"90233a90-51","name":"Frame.tsx"},{"name":"embeds","children":[{"uid":"90233a90-53","name":"Loom.tsx"},{"uid":"90233a90-55","name":"Supademo.tsx"},{"uid":"90233a90-57","name":"Typeform.tsx"},{"uid":"90233a90-59","name":"Vimeo.tsx"},{"uid":"90233a90-61","name":"Wistia.tsx"},{"uid":"90233a90-63","name":"Youtube.tsx"},{"uid":"90233a90-65","name":"index.tsx"}]},{"uid":"90233a90-67","name":"MemoizedReactMarkdown.tsx"},{"uid":"90233a90-69","name":"MermaidDiagram.tsx"},{"uid":"90233a90-71","name":"ZoomableImage.tsx"},{"uid":"90233a90-75","name":"FormattedMessage.tsx"}]},{"name":"feedback/feedback.tsx","uid":"90233a90-95"},{"name":"generating-star/generating-star.tsx","uid":"90233a90-119"},{"name":"select/simpleSelect.tsx","uid":"90233a90-161"},{"name":"date-picker/date-picker.tsx","uid":"90233a90-165"},{"name":"combobox/combobox.tsx","uid":"90233a90-167"}]},{"uid":"90233a90-169","name":"index.ts"}]},{"name":"node_modules","children":[{"name":"tslib/tslib.es6.js","uid":"90233a90-23"},{"name":"@radix-ui","children":[{"name":"react-compose-refs/dist/index.mjs","uid":"90233a90-29"},{"name":"react-slot/dist/index.mjs","uid":"90233a90-31"}]}]}]}],"isRoot":true},"nodeParts":{"90233a90-1":{"renderedLength":354,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-0"},"90233a90-3":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-2"},"90233a90-5":{"renderedLength":344,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-4"},"90233a90-7":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-6"},"90233a90-9":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-8"},"90233a90-11":{"renderedLength":248,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-10"},"90233a90-13":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-12"},"90233a90-15":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-14"},"90233a90-17":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-16"},"90233a90-19":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-18"},"90233a90-21":{"renderedLength":127,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-20"},"90233a90-23":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-22"},"90233a90-25":{"renderedLength":2527,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-24"},"90233a90-27":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-26"},"90233a90-29":{"renderedLength":802,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-28"},"90233a90-31":{"renderedLength":3014,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-30"},"90233a90-33":{"renderedLength":1710,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-32"},"90233a90-35":{"renderedLength":1526,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-34"},"90233a90-37":{"renderedLength":626,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-36"},"90233a90-39":{"renderedLength":407,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-38"},"90233a90-41":{"renderedLength":527,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-40"},"90233a90-43":{"renderedLength":5119,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-42"},"90233a90-45":{"renderedLength":110,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-44"},"90233a90-47":{"renderedLength":944,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-46"},"90233a90-49":{"renderedLength":2826,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-48"},"90233a90-51":{"renderedLength":1997,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-50"},"90233a90-53":{"renderedLength":349,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-52"},"90233a90-55":{"renderedLength":279,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-54"},"90233a90-57":{"renderedLength":392,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-56"},"90233a90-59":{"renderedLength":1009,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-58"},"90233a90-61":{"renderedLength":1862,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-60"},"90233a90-63":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-62"},"90233a90-65":{"renderedLength":768,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-64"},"90233a90-67":{"renderedLength":170,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-66"},"90233a90-69":{"renderedLength":1855,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-68"},"90233a90-71":{"renderedLength":4117,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-70"},"90233a90-73":{"renderedLength":75,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-72"},"90233a90-75":{"renderedLength":9028,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-74"},"90233a90-77":{"renderedLength":1064,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-76"},"90233a90-79":{"renderedLength":532,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-78"},"90233a90-81":{"renderedLength":620,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-80"},"90233a90-83":{"renderedLength":980,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-82"},"90233a90-85":{"renderedLength":3985,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-84"},"90233a90-87":{"renderedLength":588,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-86"},"90233a90-89":{"renderedLength":2142,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-88"},"90233a90-91":{"renderedLength":2034,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-90"},"90233a90-93":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-92"},"90233a90-95":{"renderedLength":4585,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-94"},"90233a90-97":{"renderedLength":8935,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-96"},"90233a90-99":{"renderedLength":1664,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-98"},"90233a90-101":{"renderedLength":2227,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-100"},"90233a90-103":{"renderedLength":177,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-102"},"90233a90-105":{"renderedLength":1409,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-104"},"90233a90-107":{"renderedLength":3720,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-106"},"90233a90-109":{"renderedLength":3919,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-108"},"90233a90-111":{"renderedLength":2797,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-110"},"90233a90-113":{"renderedLength":1130,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-112"},"90233a90-115":{"renderedLength":521,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-114"},"90233a90-117":{"renderedLength":921,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-116"},"90233a90-119":{"renderedLength":2637,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-118"},"90233a90-121":{"renderedLength":6812,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-120"},"90233a90-123":{"renderedLength":1203,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-122"},"90233a90-125":{"renderedLength":4169,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-124"},"90233a90-127":{"renderedLength":335,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-126"},"90233a90-129":{"renderedLength":6222,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-128"},"90233a90-131":{"renderedLength":12791,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-130"},"90233a90-133":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-132"},"90233a90-135":{"renderedLength":3631,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-134"},"90233a90-137":{"renderedLength":2182,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-136"},"90233a90-139":{"renderedLength":2318,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-138"},"90233a90-141":{"renderedLength":636,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-140"},"90233a90-143":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-142"},"90233a90-145":{"renderedLength":1815,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-144"},"90233a90-147":{"renderedLength":1348,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-146"},"90233a90-149":{"renderedLength":26926,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-148"},"90233a90-151":{"renderedLength":922,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-150"},"90233a90-153":{"renderedLength":1030,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-152"},"90233a90-155":{"renderedLength":3386,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-154"},"90233a90-157":{"renderedLength":3993,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-156"},"90233a90-159":{"renderedLength":3678,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-158"},"90233a90-161":{"renderedLength":673,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-160"},"90233a90-163":{"renderedLength":373,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-162"},"90233a90-165":{"renderedLength":742,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-164"},"90233a90-167":{"renderedLength":2263,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-166"},"90233a90-169":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"90233a90-168"}},"nodeMetas":{"90233a90-0":{"id":"/src/colors/customColor.ts","moduleParts":{"index.js":"90233a90-1"},"imported":[],"importedBy":[{"uid":"90233a90-20"},{"uid":"90233a90-4"}]},"90233a90-2":{"id":"/src/colors/dark.ts","moduleParts":{"index.js":"90233a90-3"},"imported":[],"importedBy":[{"uid":"90233a90-20"},{"uid":"90233a90-4"}]},"90233a90-4":{"id":"/src/colors/primary.ts","moduleParts":{"index.js":"90233a90-5"},"imported":[{"uid":"90233a90-0"},{"uid":"90233a90-2"}],"importedBy":[{"uid":"90233a90-20"}]},"90233a90-6":{"id":"/src/colors/orange.ts","moduleParts":{"index.js":"90233a90-7"},"imported":[],"importedBy":[{"uid":"90233a90-20"}]},"90233a90-8":{"id":"/src/colors/yellow.ts","moduleParts":{"index.js":"90233a90-9"},"imported":[],"importedBy":[{"uid":"90233a90-20"}]},"90233a90-10":{"id":"/src/colors/green.ts","moduleParts":{"index.js":"90233a90-11"},"imported":[],"importedBy":[{"uid":"90233a90-20"}]},"90233a90-12":{"id":"/src/colors/blue.ts","moduleParts":{"index.js":"90233a90-13"},"imported":[],"importedBy":[{"uid":"90233a90-20"}]},"90233a90-14":{"id":"/src/colors/purple.ts","moduleParts":{"index.js":"90233a90-15"},"imported":[],"importedBy":[{"uid":"90233a90-20"}]},"90233a90-16":{"id":"/src/colors/pink.ts","moduleParts":{"index.js":"90233a90-17"},"imported":[],"importedBy":[{"uid":"90233a90-20"}]},"90233a90-18":{"id":"/src/colors/red.ts","moduleParts":{"index.js":"90233a90-19"},"imported":[],"importedBy":[{"uid":"90233a90-20"}]},"90233a90-20":{"id":"/src/colors/index.ts","moduleParts":{"index.js":"90233a90-21"},"imported":[{"uid":"90233a90-4"},{"uid":"90233a90-2"},{"uid":"90233a90-6"},{"uid":"90233a90-8"},{"uid":"90233a90-10"},{"uid":"90233a90-12"},{"uid":"90233a90-14"},{"uid":"90233a90-16"},{"uid":"90233a90-18"},{"uid":"90233a90-0"}],"importedBy":[{"uid":"90233a90-168"}]},"90233a90-22":{"id":"/node_modules/tslib/tslib.es6.js","moduleParts":{"index.js":"90233a90-23"},"imported":[],"importedBy":[{"uid":"90233a90-32"},{"uid":"90233a90-92"},{"uid":"90233a90-128"},{"uid":"90233a90-150"},{"uid":"90233a90-26"},{"uid":"90233a90-40"},{"uid":"90233a90-146"},{"uid":"90233a90-38"},{"uid":"90233a90-36"},{"uid":"90233a90-152"},{"uid":"90233a90-156"},{"uid":"90233a90-154"},{"uid":"90233a90-148"},{"uid":"90233a90-48"},{"uid":"90233a90-74"},{"uid":"90233a90-68"},{"uid":"90233a90-120"},{"uid":"90233a90-136"},{"uid":"90233a90-144"},{"uid":"90233a90-108"},{"uid":"90233a90-82"},{"uid":"90233a90-158"},{"uid":"90233a90-162"},{"uid":"90233a90-106"},{"uid":"90233a90-118"}]},"90233a90-24":{"id":"/src/lib/utils.ts","moduleParts":{"index.js":"90233a90-25"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-199"},{"uid":"90233a90-200"}],"importedBy":[{"uid":"90233a90-32"},{"uid":"90233a90-128"},{"uid":"90233a90-150"},{"uid":"90233a90-26"},{"uid":"90233a90-40"},{"uid":"90233a90-146"},{"uid":"90233a90-38"},{"uid":"90233a90-36"},{"uid":"90233a90-152"},{"uid":"90233a90-156"},{"uid":"90233a90-154"},{"uid":"90233a90-148"},{"uid":"90233a90-74"},{"uid":"90233a90-160"},{"uid":"90233a90-164"},{"uid":"90233a90-166"},{"uid":"90233a90-124"},{"uid":"90233a90-130"},{"uid":"90233a90-134"},{"uid":"90233a90-136"},{"uid":"90233a90-158"},{"uid":"90233a90-162"},{"uid":"90233a90-110"},{"uid":"90233a90-116"},{"uid":"90233a90-42"},{"uid":"90233a90-118"}]},"90233a90-26":{"id":"/src/components/ui/tooltip.tsx","moduleParts":{"index.js":"90233a90-27"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-182"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-168"},{"uid":"90233a90-34"},{"uid":"90233a90-120"},{"uid":"90233a90-124"},{"uid":"90233a90-94"}]},"90233a90-28":{"id":"/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","moduleParts":{"index.js":"90233a90-29"},"imported":[{"uid":"90233a90-176"}],"importedBy":[{"uid":"90233a90-30"}]},"90233a90-30":{"id":"/node_modules/@radix-ui/react-slot/dist/index.mjs","moduleParts":{"index.js":"90233a90-31"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-28"},{"uid":"90233a90-198"}],"importedBy":[{"uid":"90233a90-32"}]},"90233a90-32":{"id":"/src/components/ui/button.tsx","moduleParts":{"index.js":"90233a90-33"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-30"},{"uid":"90233a90-177"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-168"},{"uid":"90233a90-48"},{"uid":"90233a90-164"},{"uid":"90233a90-166"},{"uid":"90233a90-34"},{"uid":"90233a90-120"},{"uid":"90233a90-122"},{"uid":"90233a90-84"},{"uid":"90233a90-126"},{"uid":"90233a90-130"},{"uid":"90233a90-134"},{"uid":"90233a90-136"},{"uid":"90233a90-42"},{"uid":"90233a90-94"}]},"90233a90-34":{"id":"/src/components/chat-search/Suggestions.tsx","moduleParts":{"index.js":"90233a90-35"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-26"},{"uid":"90233a90-32"}],"importedBy":[{"uid":"90233a90-148"}]},"90233a90-36":{"id":"/src/components/ui/input.tsx","moduleParts":{"index.js":"90233a90-37"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-168"},{"uid":"90233a90-42"}]},"90233a90-38":{"id":"/src/components/ui/label.tsx","moduleParts":{"index.js":"90233a90-39"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-184"},{"uid":"90233a90-177"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-168"},{"uid":"90233a90-42"}]},"90233a90-40":{"id":"/src/components/ui/textarea.tsx","moduleParts":{"index.js":"90233a90-41"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-168"},{"uid":"90233a90-134"},{"uid":"90233a90-42"}]},"90233a90-42":{"id":"/src/components/chat-search/blocks/ActionInputForm.tsx","moduleParts":{"index.js":"90233a90-43"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-211"},{"uid":"90233a90-212"},{"uid":"90233a90-190"},{"uid":"90233a90-32"},{"uid":"90233a90-36"},{"uid":"90233a90-38"},{"uid":"90233a90-40"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-78"}]},"90233a90-44":{"id":"/src/components/chat-search/blocks/ActionButtons.tsx","moduleParts":{"index.js":"90233a90-45"},"imported":[],"importedBy":[{"uid":"90233a90-78"}]},"90233a90-46":{"id":"/src/components/markdown/utils/codeblock.ts","moduleParts":{"index.js":"90233a90-47"},"imported":[],"importedBy":[{"uid":"90233a90-48"}]},"90233a90-48":{"id":"/src/components/markdown/CodeBlock.tsx","moduleParts":{"index.js":"90233a90-49"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-190"},{"uid":"90233a90-191"},{"uid":"90233a90-192"},{"uid":"90233a90-32"},{"uid":"90233a90-46"}],"importedBy":[{"uid":"90233a90-172"},{"uid":"90233a90-74"}]},"90233a90-50":{"id":"/src/components/markdown/Frame.tsx","moduleParts":{"index.js":"90233a90-51"},"imported":[{"uid":"90233a90-176"}],"importedBy":[{"uid":"90233a90-172"},{"uid":"90233a90-52"},{"uid":"90233a90-54"},{"uid":"90233a90-56"},{"uid":"90233a90-58"},{"uid":"90233a90-60"},{"uid":"90233a90-62"}]},"90233a90-52":{"id":"/src/components/markdown/embeds/Loom.tsx","moduleParts":{"index.js":"90233a90-53"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-50"}],"importedBy":[{"uid":"90233a90-64"}]},"90233a90-54":{"id":"/src/components/markdown/embeds/Supademo.tsx","moduleParts":{"index.js":"90233a90-55"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-50"}],"importedBy":[{"uid":"90233a90-64"}]},"90233a90-56":{"id":"/src/components/markdown/embeds/Typeform.tsx","moduleParts":{"index.js":"90233a90-57"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-50"}],"importedBy":[{"uid":"90233a90-64"}]},"90233a90-58":{"id":"/src/components/markdown/embeds/Vimeo.tsx","moduleParts":{"index.js":"90233a90-59"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-50"}],"importedBy":[{"uid":"90233a90-64"}]},"90233a90-60":{"id":"/src/components/markdown/embeds/Wistia.tsx","moduleParts":{"index.js":"90233a90-61"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-50"}],"importedBy":[{"uid":"90233a90-64"}]},"90233a90-62":{"id":"/src/components/markdown/embeds/Youtube.tsx","moduleParts":{"index.js":"90233a90-63"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-50"}],"importedBy":[{"uid":"90233a90-64"}]},"90233a90-64":{"id":"/src/components/markdown/embeds/index.tsx","moduleParts":{"index.js":"90233a90-65"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-52"},{"uid":"90233a90-54"},{"uid":"90233a90-56"},{"uid":"90233a90-58"},{"uid":"90233a90-60"},{"uid":"90233a90-62"}],"importedBy":[{"uid":"90233a90-74"}]},"90233a90-66":{"id":"/src/components/markdown/MemoizedReactMarkdown.tsx","moduleParts":{"index.js":"90233a90-67"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-196"}],"importedBy":[{"uid":"90233a90-172"},{"uid":"90233a90-74"}]},"90233a90-68":{"id":"/src/components/markdown/MermaidDiagram.tsx","moduleParts":{"index.js":"90233a90-69"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-197"}],"importedBy":[{"uid":"90233a90-172"},{"uid":"90233a90-74"}]},"90233a90-70":{"id":"/src/components/markdown/ZoomableImage.tsx","moduleParts":{"index.js":"90233a90-71"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-188"},{"uid":"90233a90-190"}],"importedBy":[{"uid":"90233a90-172"},{"uid":"90233a90-74"}]},"90233a90-72":{"id":"/src/components/markdown/utils/stripNewLines.ts","moduleParts":{"index.js":"90233a90-73"},"imported":[],"importedBy":[{"uid":"90233a90-74"}]},"90233a90-74":{"id":"/src/components/markdown/FormattedMessage.tsx","moduleParts":{"index.js":"90233a90-75"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-193"},{"uid":"90233a90-194"},{"uid":"90233a90-195"},{"uid":"90233a90-48"},{"uid":"90233a90-64"},{"uid":"90233a90-66"},{"uid":"90233a90-68"},{"uid":"90233a90-70"},{"uid":"90233a90-72"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-172"},{"uid":"90233a90-76"}]},"90233a90-76":{"id":"/src/components/chat-search/blocks/MarkdownText.tsx","moduleParts":{"index.js":"90233a90-77"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-74"}],"importedBy":[{"uid":"90233a90-78"}]},"90233a90-78":{"id":"/src/components/chat-search/AnswerBlock.tsx","moduleParts":{"index.js":"90233a90-79"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-42"},{"uid":"90233a90-44"},{"uid":"90233a90-76"}],"importedBy":[{"uid":"90233a90-120"}]},"90233a90-80":{"id":"/src/components/chat-search/blocks/utils.ts","moduleParts":{"index.js":"90233a90-81"},"imported":[{"uid":"90233a90-206"}],"importedBy":[{"uid":"90233a90-120"},{"uid":"90233a90-96"},{"uid":"90233a90-110"}]},"90233a90-82":{"id":"/src/components/ui/icon.tsx","moduleParts":{"index.js":"90233a90-83"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-190","dynamic":true}],"importedBy":[{"uid":"90233a90-148"},{"uid":"90233a90-84"}]},"90233a90-84":{"id":"/src/components/chat-search/NextBestActions.tsx","moduleParts":{"index.js":"90233a90-85"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-188"},{"uid":"90233a90-82"},{"uid":"90233a90-32"}],"importedBy":[{"uid":"90233a90-148"},{"uid":"90233a90-90"}]},"90233a90-86":{"id":"/src/components/chat-search/types.ts","moduleParts":{"index.js":"90233a90-87"},"imported":[],"importedBy":[{"uid":"90233a90-88"}]},"90233a90-88":{"id":"/src/components/chat-search/helpers/nextBestActions.ts","moduleParts":{"index.js":"90233a90-89"},"imported":[{"uid":"90233a90-86"}],"importedBy":[{"uid":"90233a90-90"}]},"90233a90-90":{"id":"/src/components/chat-search/AnswerActions.tsx","moduleParts":{"index.js":"90233a90-91"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-84"},{"uid":"90233a90-88"}],"importedBy":[{"uid":"90233a90-120"}]},"90233a90-92":{"id":"/src/components/ui/collapsible.tsx","moduleParts":{"index.js":"90233a90-93"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-178"}],"importedBy":[{"uid":"90233a90-168"},{"uid":"90233a90-120"}]},"90233a90-94":{"id":"/src/components/feedback/feedback.tsx","moduleParts":{"index.js":"90233a90-95"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-190"},{"uid":"90233a90-188"},{"uid":"90233a90-32"},{"uid":"90233a90-26"}],"importedBy":[{"uid":"90233a90-203"}]},"90233a90-96":{"id":"/src/components/chat-search/hooks/useAnswerList.ts","moduleParts":{"index.js":"90233a90-97"},"imported":[{"uid":"90233a90-206"},{"uid":"90233a90-207"},{"uid":"90233a90-80"}],"importedBy":[{"uid":"90233a90-148"},{"uid":"90233a90-100"},{"uid":"90233a90-110"}]},"90233a90-98":{"id":"/src/components/chat-search/hooks/useConversationId.ts","moduleParts":{"index.js":"90233a90-99"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-208"}],"importedBy":[{"uid":"90233a90-100"}]},"90233a90-100":{"id":"/src/components/chat-search/ChatSearchContext.tsx","moduleParts":{"index.js":"90233a90-101"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-96"},{"uid":"90233a90-98"}],"importedBy":[{"uid":"90233a90-171"},{"uid":"90233a90-148"},{"uid":"90233a90-102"},{"uid":"90233a90-136"},{"uid":"90233a90-205"},{"uid":"90233a90-110"},{"uid":"90233a90-112"}]},"90233a90-102":{"id":"/src/components/chat-search/hooks/useIsChatSearchDirty.ts","moduleParts":{"index.js":"90233a90-103"},"imported":[{"uid":"90233a90-100"}],"importedBy":[{"uid":"90233a90-171"},{"uid":"90233a90-136"},{"uid":"90233a90-189"}]},"90233a90-104":{"id":"/src/components/chat-search/hooks/useScrollManager.ts","moduleParts":{"index.js":"90233a90-105"},"imported":[],"importedBy":[{"uid":"90233a90-189"}]},"90233a90-106":{"id":"/src/lib/fetchClient.ts","moduleParts":{"index.js":"90233a90-107"},"imported":[{"uid":"90233a90-22"}],"importedBy":[{"uid":"90233a90-108"}]},"90233a90-108":{"id":"/src/lib/api.ts","moduleParts":{"index.js":"90233a90-109"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-206"},{"uid":"90233a90-106"}],"importedBy":[{"uid":"90233a90-148"},{"uid":"90233a90-144"},{"uid":"90233a90-110"}]},"90233a90-110":{"id":"/src/components/chat-search/hooks/useConversationLoader.ts","moduleParts":{"index.js":"90233a90-111"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-208"},{"uid":"90233a90-100"},{"uid":"90233a90-96"},{"uid":"90233a90-80"},{"uid":"90233a90-24"},{"uid":"90233a90-108"}],"importedBy":[{"uid":"90233a90-189"}]},"90233a90-112":{"id":"/src/components/chat-search/hooks/useSubscriptionManager.ts","moduleParts":{"index.js":"90233a90-113"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-100"}],"importedBy":[{"uid":"90233a90-189"}]},"90233a90-114":{"id":"/src/components/chat-search/hooks/useDarkMode.ts","moduleParts":{"index.js":"90233a90-115"},"imported":[{"uid":"90233a90-176"}],"importedBy":[{"uid":"90233a90-189"},{"uid":"90233a90-116"}]},"90233a90-116":{"id":"/src/components/chat-search/hooks/useAccessibleColor.ts","moduleParts":{"index.js":"90233a90-117"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-114"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-189"}]},"90233a90-118":{"id":"/src/components/generating-star/generating-star.tsx","moduleParts":{"index.js":"90233a90-119"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-189"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-204"}]},"90233a90-120":{"id":"/src/components/chat-search/Answer.tsx","moduleParts":{"index.js":"90233a90-121"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-190"},{"uid":"90233a90-32"},{"uid":"90233a90-78"},{"uid":"90233a90-80"},{"uid":"90233a90-90"},{"uid":"90233a90-92"},{"uid":"90233a90-203"},{"uid":"90233a90-204"},{"uid":"90233a90-26"}],"importedBy":[{"uid":"90233a90-148"}]},"90233a90-122":{"id":"/src/components/chat-search/FollowUpQuestions.tsx","moduleParts":{"index.js":"90233a90-123"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-188"},{"uid":"90233a90-190"},{"uid":"90233a90-32"}],"importedBy":[{"uid":"90233a90-148"}]},"90233a90-124":{"id":"/src/components/chat-search/TimelineNavigation.tsx","moduleParts":{"index.js":"90233a90-125"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-190"},{"uid":"90233a90-188"},{"uid":"90233a90-26"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-148"}]},"90233a90-126":{"id":"/src/components/chat-search/ScrollToBottomArrow.tsx","moduleParts":{"index.js":"90233a90-127"},"imported":[{"uid":"90233a90-190"},{"uid":"90233a90-176"},{"uid":"90233a90-32"}],"importedBy":[{"uid":"90233a90-148"}]},"90233a90-128":{"id":"/src/components/ui/dropdown-menu.tsx","moduleParts":{"index.js":"90233a90-129"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-179"},{"uid":"90233a90-24"},{"uid":"90233a90-180"}],"importedBy":[{"uid":"90233a90-168"},{"uid":"90233a90-130"}]},"90233a90-130":{"id":"/src/components/chat-search/PrimarySearch.tsx","moduleParts":{"index.js":"90233a90-131"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-188"},{"uid":"90233a90-190"},{"uid":"90233a90-32"},{"uid":"90233a90-128"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-148"}]},"90233a90-132":{"id":"/src/components/chat-search/FollowUpSearchBar.module.css","moduleParts":{"index.js":"90233a90-133"},"imported":[],"importedBy":[{"uid":"90233a90-134"}]},"90233a90-134":{"id":"/src/components/chat-search/FollowUpSearchBar.tsx","moduleParts":{"index.js":"90233a90-135"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-190"},{"uid":"90233a90-188"},{"uid":"90233a90-132"},{"uid":"90233a90-32"},{"uid":"90233a90-40"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-148"}]},"90233a90-136":{"id":"/src/components/chat-search/Header.tsx","moduleParts":{"index.js":"90233a90-137"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-188"},{"uid":"90233a90-190"},{"uid":"90233a90-32"},{"uid":"90233a90-102"},{"uid":"90233a90-100"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-148"}]},"90233a90-138":{"id":"/src/components/chat-search/text-config.ts","moduleParts":{"index.js":"90233a90-139"},"imported":[],"importedBy":[{"uid":"90233a90-148"}]},"90233a90-140":{"id":"/src/components/chat-search/LoadingConversation.tsx","moduleParts":{"index.js":"90233a90-141"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-188"}],"importedBy":[{"uid":"90233a90-148"}]},"90233a90-142":{"id":"/src/lib/feature-flags.tsx","moduleParts":{"index.js":"90233a90-143"},"imported":[{"uid":"90233a90-176"}],"importedBy":[{"uid":"90233a90-148"}]},"90233a90-144":{"id":"/src/lib/hooks.ts","moduleParts":{"index.js":"90233a90-145"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-108"}],"importedBy":[{"uid":"90233a90-148"}]},"90233a90-146":{"id":"/src/components/ui/scroll-area.tsx","moduleParts":{"index.js":"90233a90-147"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-183"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-168"},{"uid":"90233a90-148"}]},"90233a90-148":{"id":"/src/components/chat-search/ChatSearch.tsx","moduleParts":{"index.js":"90233a90-149"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-188"},{"uid":"90233a90-34"},{"uid":"90233a90-120"},{"uid":"90233a90-122"},{"uid":"90233a90-84"},{"uid":"90233a90-124"},{"uid":"90233a90-126"},{"uid":"90233a90-130"},{"uid":"90233a90-134"},{"uid":"90233a90-136"},{"uid":"90233a90-138"},{"uid":"90233a90-100"},{"uid":"90233a90-189"},{"uid":"90233a90-96"},{"uid":"90233a90-140"},{"uid":"90233a90-142"},{"uid":"90233a90-24"},{"uid":"90233a90-144"},{"uid":"90233a90-108"},{"uid":"90233a90-146"},{"uid":"90233a90-82"}],"importedBy":[{"uid":"90233a90-171"}]},"90233a90-150":{"id":"/src/components/ui/switch.tsx","moduleParts":{"index.js":"90233a90-151"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-181"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-168"}]},"90233a90-152":{"id":"/src/components/ui/popover.tsx","moduleParts":{"index.js":"90233a90-153"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-185"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-168"},{"uid":"90233a90-164"},{"uid":"90233a90-166"}]},"90233a90-154":{"id":"/src/components/ui/dialog.tsx","moduleParts":{"index.js":"90233a90-155"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-187"},{"uid":"90233a90-24"},{"uid":"90233a90-180"}],"importedBy":[{"uid":"90233a90-168"},{"uid":"90233a90-156"}]},"90233a90-156":{"id":"/src/components/ui/command.tsx","moduleParts":{"index.js":"90233a90-157"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-186"},{"uid":"90233a90-24"},{"uid":"90233a90-154"},{"uid":"90233a90-180"}],"importedBy":[{"uid":"90233a90-168"},{"uid":"90233a90-166"}]},"90233a90-158":{"id":"/src/components/ui/select.tsx","moduleParts":{"index.js":"90233a90-159"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-209"},{"uid":"90233a90-190"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-160"}]},"90233a90-160":{"id":"/src/components/select/simpleSelect.tsx","moduleParts":{"index.js":"90233a90-161"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-24"},{"uid":"90233a90-158"}],"importedBy":[{"uid":"90233a90-173"}]},"90233a90-162":{"id":"/src/components/ui/calendar.tsx","moduleParts":{"index.js":"90233a90-163"},"imported":[{"uid":"90233a90-22"},{"uid":"90233a90-176"},{"uid":"90233a90-210"},{"uid":"90233a90-24"}],"importedBy":[{"uid":"90233a90-164"}]},"90233a90-164":{"id":"/src/components/date-picker/date-picker.tsx","moduleParts":{"index.js":"90233a90-165"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-201"},{"uid":"90233a90-190"},{"uid":"90233a90-24"},{"uid":"90233a90-32"},{"uid":"90233a90-162"},{"uid":"90233a90-152"},{"uid":"90233a90-202"}],"importedBy":[{"uid":"90233a90-174"}]},"90233a90-166":{"id":"/src/components/combobox/combobox.tsx","moduleParts":{"index.js":"90233a90-167"},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-190"},{"uid":"90233a90-24"},{"uid":"90233a90-32"},{"uid":"90233a90-156"},{"uid":"90233a90-152"}],"importedBy":[{"uid":"90233a90-175"}]},"90233a90-168":{"id":"/src/index.ts","moduleParts":{"index.js":"90233a90-169"},"imported":[{"uid":"90233a90-170"},{"uid":"90233a90-20"},{"uid":"90233a90-171"},{"uid":"90233a90-172"},{"uid":"90233a90-32"},{"uid":"90233a90-92"},{"uid":"90233a90-128"},{"uid":"90233a90-150"},{"uid":"90233a90-26"},{"uid":"90233a90-40"},{"uid":"90233a90-146"},{"uid":"90233a90-38"},{"uid":"90233a90-36"},{"uid":"90233a90-152"},{"uid":"90233a90-156"},{"uid":"90233a90-154"},{"uid":"90233a90-173"},{"uid":"90233a90-174"},{"uid":"90233a90-175"}],"importedBy":[],"isEntry":true},"90233a90-170":{"id":"/src/global.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-168"}]},"90233a90-171":{"id":"/src/components/chat-search/index.ts","moduleParts":{},"imported":[{"uid":"90233a90-148"},{"uid":"90233a90-100"},{"uid":"90233a90-102"}],"importedBy":[{"uid":"90233a90-168"}]},"90233a90-172":{"id":"/src/components/markdown/index.ts","moduleParts":{},"imported":[{"uid":"90233a90-48"},{"uid":"90233a90-74"},{"uid":"90233a90-50"},{"uid":"90233a90-66"},{"uid":"90233a90-68"},{"uid":"90233a90-70"}],"importedBy":[{"uid":"90233a90-168"}]},"90233a90-173":{"id":"/src/components/select/index.ts","moduleParts":{},"imported":[{"uid":"90233a90-160"}],"importedBy":[{"uid":"90233a90-168"}]},"90233a90-174":{"id":"/src/components/date-picker/index.tsx","moduleParts":{},"imported":[{"uid":"90233a90-164"}],"importedBy":[{"uid":"90233a90-168"}]},"90233a90-175":{"id":"/src/components/combobox/index.tsx","moduleParts":{},"imported":[{"uid":"90233a90-166"}],"importedBy":[{"uid":"90233a90-168"}]},"90233a90-176":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-32"},{"uid":"90233a90-92"},{"uid":"90233a90-128"},{"uid":"90233a90-150"},{"uid":"90233a90-26"},{"uid":"90233a90-40"},{"uid":"90233a90-146"},{"uid":"90233a90-38"},{"uid":"90233a90-36"},{"uid":"90233a90-152"},{"uid":"90233a90-156"},{"uid":"90233a90-154"},{"uid":"90233a90-148"},{"uid":"90233a90-100"},{"uid":"90233a90-48"},{"uid":"90233a90-74"},{"uid":"90233a90-50"},{"uid":"90233a90-66"},{"uid":"90233a90-68"},{"uid":"90233a90-70"},{"uid":"90233a90-30"},{"uid":"90233a90-24"},{"uid":"90233a90-160"},{"uid":"90233a90-164"},{"uid":"90233a90-166"},{"uid":"90233a90-34"},{"uid":"90233a90-120"},{"uid":"90233a90-122"},{"uid":"90233a90-84"},{"uid":"90233a90-124"},{"uid":"90233a90-126"},{"uid":"90233a90-130"},{"uid":"90233a90-134"},{"uid":"90233a90-136"},{"uid":"90233a90-140"},{"uid":"90233a90-142"},{"uid":"90233a90-144"},{"uid":"90233a90-82"},{"uid":"90233a90-98"},{"uid":"90233a90-64"},{"uid":"90233a90-28"},{"uid":"90233a90-158"},{"uid":"90233a90-162"},{"uid":"90233a90-78"},{"uid":"90233a90-90"},{"uid":"90233a90-205"},{"uid":"90233a90-110"},{"uid":"90233a90-112"},{"uid":"90233a90-114"},{"uid":"90233a90-116"},{"uid":"90233a90-52"},{"uid":"90233a90-54"},{"uid":"90233a90-56"},{"uid":"90233a90-58"},{"uid":"90233a90-60"},{"uid":"90233a90-62"},{"uid":"90233a90-42"},{"uid":"90233a90-76"},{"uid":"90233a90-94"},{"uid":"90233a90-118"}],"isExternal":true},"90233a90-177":{"id":"class-variance-authority","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-32"},{"uid":"90233a90-38"}],"isExternal":true},"90233a90-178":{"id":"@radix-ui/react-collapsible","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-92"}],"isExternal":true},"90233a90-179":{"id":"@radix-ui/react-dropdown-menu","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-128"}],"isExternal":true},"90233a90-180":{"id":"@radix-ui/react-icons","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-128"},{"uid":"90233a90-156"},{"uid":"90233a90-154"}],"isExternal":true},"90233a90-181":{"id":"@radix-ui/react-switch","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-150"}],"isExternal":true},"90233a90-182":{"id":"@radix-ui/react-tooltip","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-26"}],"isExternal":true},"90233a90-183":{"id":"@radix-ui/react-scroll-area","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-146"}],"isExternal":true},"90233a90-184":{"id":"@radix-ui/react-label","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-38"}],"isExternal":true},"90233a90-185":{"id":"@radix-ui/react-popover","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-152"}],"isExternal":true},"90233a90-186":{"id":"cmdk","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-156"}],"isExternal":true},"90233a90-187":{"id":"@radix-ui/react-dialog","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-154"}],"isExternal":true},"90233a90-188":{"id":"framer-motion","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-148"},{"uid":"90233a90-70"},{"uid":"90233a90-122"},{"uid":"90233a90-84"},{"uid":"90233a90-124"},{"uid":"90233a90-130"},{"uid":"90233a90-134"},{"uid":"90233a90-136"},{"uid":"90233a90-140"},{"uid":"90233a90-94"}],"isExternal":true},"90233a90-189":{"id":"/src/components/chat-search/hooks/index.ts","moduleParts":{},"imported":[{"uid":"90233a90-102"},{"uid":"90233a90-104"},{"uid":"90233a90-205"},{"uid":"90233a90-110"},{"uid":"90233a90-112"},{"uid":"90233a90-114"},{"uid":"90233a90-116"}],"importedBy":[{"uid":"90233a90-148"},{"uid":"90233a90-118"}]},"90233a90-190":{"id":"@phosphor-icons/react","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-48"},{"uid":"90233a90-70"},{"uid":"90233a90-164"},{"uid":"90233a90-166"},{"uid":"90233a90-120"},{"uid":"90233a90-122"},{"uid":"90233a90-124"},{"uid":"90233a90-126"},{"uid":"90233a90-130"},{"uid":"90233a90-134"},{"uid":"90233a90-136"},{"uid":"90233a90-82"},{"uid":"90233a90-158"},{"uid":"90233a90-42"},{"uid":"90233a90-94"}],"isExternal":true},"90233a90-191":{"id":"react-syntax-highlighter","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-48"}],"isExternal":true},"90233a90-192":{"id":"react-syntax-highlighter/dist/esm/styles/prism","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-48"}],"isExternal":true},"90233a90-193":{"id":"rehype-raw","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-74"}],"isExternal":true},"90233a90-194":{"id":"remark-gfm","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-74"}],"isExternal":true},"90233a90-195":{"id":"path-to-regexp","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-74"}],"isExternal":true},"90233a90-196":{"id":"react-markdown","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-66"}],"isExternal":true},"90233a90-197":{"id":"mermaid","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-68"}],"isExternal":true},"90233a90-198":{"id":"react/jsx-runtime","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-30"}],"isExternal":true},"90233a90-199":{"id":"clsx","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-24"}],"isExternal":true},"90233a90-200":{"id":"tailwind-merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-24"}],"isExternal":true},"90233a90-201":{"id":"date-fns","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-164"}],"isExternal":true},"90233a90-202":{"id":"/src/components/ui/calendar.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-164"}]},"90233a90-203":{"id":"/src/components/feedback/index.ts","moduleParts":{},"imported":[{"uid":"90233a90-94"}],"importedBy":[{"uid":"90233a90-120"}]},"90233a90-204":{"id":"/src/components/generating-star/index.ts","moduleParts":{},"imported":[{"uid":"90233a90-118"}],"importedBy":[{"uid":"90233a90-120"}]},"90233a90-205":{"id":"/src/components/chat-search/hooks/useUrlManager.ts","moduleParts":{},"imported":[{"uid":"90233a90-176"},{"uid":"90233a90-100"}],"importedBy":[{"uid":"90233a90-189"}]},"90233a90-206":{"id":"@paralleldrive/cuid2","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-96"},{"uid":"90233a90-108"},{"uid":"90233a90-80"}],"isExternal":true},"90233a90-207":{"id":"use-immer","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-96"}],"isExternal":true},"90233a90-208":{"id":"react-use","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-98"},{"uid":"90233a90-110"}],"isExternal":true},"90233a90-209":{"id":"@radix-ui/react-select","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-158"}],"isExternal":true},"90233a90-210":{"id":"react-day-picker","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-162"}],"isExternal":true},"90233a90-211":{"id":"react-hook-form","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-42"}],"isExternal":true},"90233a90-212":{"id":"@hookform/resolvers/ajv","moduleParts":{},"imported":[],"importedBy":[{"uid":"90233a90-42"}],"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;
@@ -1,7 +1,8 @@
1
- const { BrainfishColors, customColor } = require('./src/colors');
2
1
  const { neutral, zinc } = require('tailwindcss/colors')
3
2
  const plugin = require('tailwindcss/plugin');
4
3
  const { fontFamily } = require('tailwindcss/defaultTheme');
4
+
5
+ const { BrainfishColors, customColor } = require('./src/colors');
5
6
  const { blue, dark, green, orange, pink, primary, purple, red, yellow } = BrainfishColors;
6
7
 
7
8
  /** @type {import('tailwindcss').Config} */
@@ -1,22 +0,0 @@
1
- {
2
- "folders": [
3
- {
4
- "path": "."
5
- },
6
- {
7
- "path": "../brainfish-platform"
8
- },
9
- {
10
- "path": "../brainfish-widgets"
11
- },
12
- {
13
- "path": "../brainfish-help-center"
14
- },
15
- {
16
- "path": "../brainfish-services"
17
- },
18
- {
19
- "path": "../rich-markdown-editor"
20
- }
21
- ]
22
- }
package/package.tgz DELETED
Binary file