@brainfish-ai/components 0.3.7 → 0.3.9

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
@@ -161,6 +161,14 @@ interface TextConfig {
161
161
  uncertaintyFallbackText?: Record<string, string>;
162
162
  }
163
163
  type FeedbackResponse = 'accept' | 'reject';
164
+ /**
165
+ * Defines a URL redirect rule with pattern matching
166
+ * @example { source: '/knowledge/:id/:path', destination: '/knowledge/test/:path' }
167
+ */
168
+ type RedirectRule = {
169
+ source: string;
170
+ destination: string;
171
+ };
164
172
  type MarkdownTextBlock = {
165
173
  id: string;
166
174
  type: 'markdown-text';
@@ -252,6 +260,7 @@ interface ChatSearchProps {
252
260
  answer: string;
253
261
  }) => void;
254
262
  userData?: Record<string, unknown> | null;
263
+ redirectRules?: RedirectRule[];
255
264
  }
256
265
  interface ChatSearchState {
257
266
  showResults: boolean;
@@ -447,6 +456,7 @@ type Message = {
447
456
  interface Props {
448
457
  message: Message;
449
458
  isStreaming?: boolean;
459
+ redirectRules?: RedirectRule[];
450
460
  }
451
461
  declare const FormattedMessage: FC<Props>;
452
462
 
@@ -522,4 +532,26 @@ declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.Label
522
532
 
523
533
  declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
524
534
 
525
- export { type Answer, BrainfishColors, Button, type ButtonProps, ChatSearch, type ChatSearchHandle, type ChatSearchProps, ChatSearchProvider, type ChatSearchState, CodeBlock, Collapsible, CollapsibleContent, CollapsibleTrigger, type Collection, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FormattedMessage, Input, Label, MemoizedReactMarkdown, MermaidDiagram, type Props, ScrollArea, ScrollBar, Switch, Textarea, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, ZoomableImage, buttonVariants, customColor, useChatSearch, useIsChatSearchDirty };
535
+ type SelectOption = {
536
+ label: string;
537
+ value: string;
538
+ };
539
+ interface SimpleSelectProps {
540
+ options: SelectOption[];
541
+ value?: string;
542
+ onChange?: (value: string) => void;
543
+ placeholder?: string;
544
+ disabled?: boolean;
545
+ className?: string;
546
+ }
547
+ declare function Select({ options, value, onChange, placeholder, disabled, className, }: SimpleSelectProps): React$1.JSX.Element;
548
+
549
+ interface DatePickerProps {
550
+ date: Date | undefined;
551
+ setDate: (date: Date | undefined) => void;
552
+ className?: string;
553
+ placeholder?: string;
554
+ }
555
+ declare function DatePicker({ date, setDate, className, placeholder }: DatePickerProps): React$1.JSX.Element;
556
+
557
+ 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, MermaidDiagram, type Props, ScrollArea, ScrollBar, Select, type SelectOption, 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.3.7",
3
+ "version": "0.3.9",
4
4
  "description": "Brainfish Components",
5
5
  "license": "MIT",
6
6
  "module": "./dist/esm/index.js",
@@ -46,7 +46,7 @@
46
46
  "tailwindcss-animate": "^1.0.7"
47
47
  },
48
48
  "devDependencies": {
49
- "@radix-ui/react-slot": "^1.1.1",
49
+ "@radix-ui/react-slot": "^1.1.2",
50
50
  "@rollup/plugin-commonjs": "^25.0.7",
51
51
  "@rollup/plugin-node-resolve": "^15.2.3",
52
52
  "@rollup/plugin-typescript": "^11.1.5",
@@ -121,21 +121,28 @@
121
121
  "@radix-ui/react-dropdown-menu": "^2.1.4",
122
122
  "@radix-ui/react-icons": "^1.3.2",
123
123
  "@radix-ui/react-label": "^2.1.2",
124
+ "@radix-ui/react-popover": "^1.1.6",
124
125
  "@radix-ui/react-scroll-area": "^1.2.2",
126
+ "@radix-ui/react-select": "^2.1.6",
125
127
  "@radix-ui/react-switch": "^1.1.2",
126
128
  "@radix-ui/react-tooltip": "^1.1.6",
127
129
  "ajv": "^8.17.1",
128
130
  "ajv-errors": "^3.0.0",
129
131
  "ajv-formats": "^3.0.1",
132
+ "date-fns": "^4.1.0",
130
133
  "framer-motion": "^11.15.0",
131
134
  "immer": "^10.1.1",
132
135
  "mermaid": "^11.4.0",
136
+ "path-to-regexp": "^8.2.0",
137
+ "react-day-picker": "^9.6.1",
133
138
  "react-hook-form": "^7.54.2",
134
139
  "react-markdown": "^9.0.3",
135
140
  "react-syntax-highlighter": "^15.6.1",
136
141
  "react-use": "^17.6.0",
137
142
  "rehype-raw": "^7.0.0",
138
143
  "remark-gfm": "^4.0.0",
144
+ "select": "^1.1.2",
145
+ "shadcn": "latest",
139
146
  "use-immer": "^0.11.0"
140
147
  }
141
148
  }
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":"eac6dcf4-1","name":"customColor.ts"},{"uid":"eac6dcf4-3","name":"dark.ts"},{"uid":"eac6dcf4-5","name":"primary.ts"},{"uid":"eac6dcf4-7","name":"orange.ts"},{"uid":"eac6dcf4-9","name":"yellow.ts"},{"uid":"eac6dcf4-11","name":"green.ts"},{"uid":"eac6dcf4-13","name":"blue.ts"},{"uid":"eac6dcf4-15","name":"purple.ts"},{"uid":"eac6dcf4-17","name":"pink.ts"},{"uid":"eac6dcf4-19","name":"red.ts"},{"uid":"eac6dcf4-21","name":"index.ts"}]},{"name":"lib","children":[{"uid":"eac6dcf4-25","name":"utils.ts"},{"uid":"eac6dcf4-95","name":"fetchClient.ts"},{"uid":"eac6dcf4-97","name":"api.ts"},{"uid":"eac6dcf4-135","name":"feature-flags.tsx"},{"uid":"eac6dcf4-137","name":"hooks.ts"}]},{"name":"components","children":[{"name":"ui","children":[{"uid":"eac6dcf4-27","name":"tooltip.tsx"},{"uid":"eac6dcf4-33","name":"button.tsx"},{"uid":"eac6dcf4-37","name":"input.tsx"},{"uid":"eac6dcf4-39","name":"label.tsx"},{"uid":"eac6dcf4-81","name":"collapsible.tsx"},{"uid":"eac6dcf4-113","name":"icon.tsx"},{"uid":"eac6dcf4-121","name":"dropdown-menu.tsx"},{"uid":"eac6dcf4-127","name":"textarea.tsx"},{"uid":"eac6dcf4-139","name":"scroll-area.tsx"},{"uid":"eac6dcf4-143","name":"switch.tsx"}]},{"name":"chat-search","children":[{"uid":"eac6dcf4-35","name":"Suggestions.tsx"},{"name":"blocks","children":[{"uid":"eac6dcf4-41","name":"ActionInputForm.tsx"},{"uid":"eac6dcf4-43","name":"ActionButtons.tsx"},{"uid":"eac6dcf4-75","name":"MarkdownText.tsx"},{"uid":"eac6dcf4-79","name":"utils.ts"}]},{"uid":"eac6dcf4-77","name":"AnswerBlock.tsx"},{"name":"hooks","children":[{"uid":"eac6dcf4-85","name":"useAnswerList.ts"},{"uid":"eac6dcf4-87","name":"useConversationId.ts"},{"uid":"eac6dcf4-91","name":"useIsChatSearchDirty.ts"},{"uid":"eac6dcf4-93","name":"useScrollManager.ts"},{"uid":"eac6dcf4-99","name":"useConversationLoader.ts"},{"uid":"eac6dcf4-101","name":"useSubscriptionManager.ts"},{"uid":"eac6dcf4-103","name":"useDarkMode.ts"},{"uid":"eac6dcf4-105","name":"useAccessibleColor.ts"}]},{"uid":"eac6dcf4-89","name":"ChatSearchContext.tsx"},{"uid":"eac6dcf4-109","name":"SearchResults.tsx"},{"uid":"eac6dcf4-111","name":"FollowUpQuestions.tsx"},{"uid":"eac6dcf4-115","name":"NextBestActions.tsx"},{"uid":"eac6dcf4-117","name":"TimelineNavigation.tsx"},{"uid":"eac6dcf4-119","name":"ScrollToBottomArrow.tsx"},{"uid":"eac6dcf4-123","name":"PrimarySearch.tsx"},{"uid":"eac6dcf4-125","name":"FollowUpSearchBar.module.css"},{"uid":"eac6dcf4-129","name":"FollowUpSearchBar.tsx"},{"uid":"eac6dcf4-131","name":"Header.tsx"},{"uid":"eac6dcf4-133","name":"text-config.ts"},{"uid":"eac6dcf4-141","name":"ChatSearch.tsx"}]},{"name":"markdown","children":[{"name":"utils","children":[{"uid":"eac6dcf4-45","name":"codeblock.ts"},{"uid":"eac6dcf4-71","name":"stripNewLines.ts"}]},{"uid":"eac6dcf4-47","name":"CodeBlock.tsx"},{"uid":"eac6dcf4-49","name":"Frame.tsx"},{"name":"embeds","children":[{"uid":"eac6dcf4-51","name":"Loom.tsx"},{"uid":"eac6dcf4-53","name":"Supademo.tsx"},{"uid":"eac6dcf4-55","name":"Typeform.tsx"},{"uid":"eac6dcf4-57","name":"Vimeo.tsx"},{"uid":"eac6dcf4-59","name":"Wistia.tsx"},{"uid":"eac6dcf4-61","name":"Youtube.tsx"},{"uid":"eac6dcf4-63","name":"index.tsx"}]},{"uid":"eac6dcf4-65","name":"MemoizedReactMarkdown.tsx"},{"uid":"eac6dcf4-67","name":"MermaidDiagram.tsx"},{"uid":"eac6dcf4-69","name":"ZoomableImage.tsx"},{"uid":"eac6dcf4-73","name":"FormattedMessage.tsx"}]},{"name":"feedback/feedback.tsx","uid":"eac6dcf4-83"},{"name":"generating-star/generating-star.tsx","uid":"eac6dcf4-107"}]},{"uid":"eac6dcf4-145","name":"index.ts"}]},{"name":"node_modules","children":[{"name":"tslib/tslib.es6.js","uid":"eac6dcf4-23"},{"name":"@radix-ui","children":[{"name":"react-compose-refs/dist/index.mjs","uid":"eac6dcf4-29"},{"name":"react-slot/dist/index.mjs","uid":"eac6dcf4-31"}]}]}]}],"isRoot":true},"nodeParts":{"eac6dcf4-1":{"renderedLength":354,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-0"},"eac6dcf4-3":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-2"},"eac6dcf4-5":{"renderedLength":344,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-4"},"eac6dcf4-7":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-6"},"eac6dcf4-9":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-8"},"eac6dcf4-11":{"renderedLength":248,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-10"},"eac6dcf4-13":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-12"},"eac6dcf4-15":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-14"},"eac6dcf4-17":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-16"},"eac6dcf4-19":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-18"},"eac6dcf4-21":{"renderedLength":127,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-20"},"eac6dcf4-23":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-22"},"eac6dcf4-25":{"renderedLength":2527,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-24"},"eac6dcf4-27":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-26"},"eac6dcf4-29":{"renderedLength":802,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-28"},"eac6dcf4-31":{"renderedLength":2966,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-30"},"eac6dcf4-33":{"renderedLength":1710,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-32"},"eac6dcf4-35":{"renderedLength":1526,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-34"},"eac6dcf4-37":{"renderedLength":626,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-36"},"eac6dcf4-39":{"renderedLength":407,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-38"},"eac6dcf4-41":{"renderedLength":3464,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-40"},"eac6dcf4-43":{"renderedLength":56,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-42"},"eac6dcf4-45":{"renderedLength":944,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-44"},"eac6dcf4-47":{"renderedLength":2826,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-46"},"eac6dcf4-49":{"renderedLength":1997,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-48"},"eac6dcf4-51":{"renderedLength":349,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-50"},"eac6dcf4-53":{"renderedLength":279,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-52"},"eac6dcf4-55":{"renderedLength":392,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-54"},"eac6dcf4-57":{"renderedLength":1011,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-56"},"eac6dcf4-59":{"renderedLength":1864,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-58"},"eac6dcf4-61":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-60"},"eac6dcf4-63":{"renderedLength":768,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-62"},"eac6dcf4-65":{"renderedLength":119,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-64"},"eac6dcf4-67":{"renderedLength":1855,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-66"},"eac6dcf4-69":{"renderedLength":4088,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-68"},"eac6dcf4-71":{"renderedLength":75,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-70"},"eac6dcf4-73":{"renderedLength":6231,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-72"},"eac6dcf4-75":{"renderedLength":976,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-74"},"eac6dcf4-77":{"renderedLength":466,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-76"},"eac6dcf4-79":{"renderedLength":600,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-78"},"eac6dcf4-81":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-80"},"eac6dcf4-83":{"renderedLength":4585,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-82"},"eac6dcf4-85":{"renderedLength":8610,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-84"},"eac6dcf4-87":{"renderedLength":1664,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-86"},"eac6dcf4-89":{"renderedLength":2227,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-88"},"eac6dcf4-91":{"renderedLength":177,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-90"},"eac6dcf4-93":{"renderedLength":1409,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-92"},"eac6dcf4-95":{"renderedLength":3720,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-94"},"eac6dcf4-97":{"renderedLength":3860,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-96"},"eac6dcf4-99":{"renderedLength":2797,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-98"},"eac6dcf4-101":{"renderedLength":1130,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-100"},"eac6dcf4-103":{"renderedLength":521,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-102"},"eac6dcf4-105":{"renderedLength":921,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-104"},"eac6dcf4-107":{"renderedLength":2637,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-106"},"eac6dcf4-109":{"renderedLength":6409,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-108"},"eac6dcf4-111":{"renderedLength":1207,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-110"},"eac6dcf4-113":{"renderedLength":980,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-112"},"eac6dcf4-115":{"renderedLength":3759,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-114"},"eac6dcf4-117":{"renderedLength":4169,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-116"},"eac6dcf4-119":{"renderedLength":335,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-118"},"eac6dcf4-121":{"renderedLength":6222,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-120"},"eac6dcf4-123":{"renderedLength":12791,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-122"},"eac6dcf4-125":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-124"},"eac6dcf4-127":{"renderedLength":527,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-126"},"eac6dcf4-129":{"renderedLength":3631,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-128"},"eac6dcf4-131":{"renderedLength":2164,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-130"},"eac6dcf4-133":{"renderedLength":2318,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-132"},"eac6dcf4-135":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-134"},"eac6dcf4-137":{"renderedLength":1815,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-136"},"eac6dcf4-139":{"renderedLength":1348,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-138"},"eac6dcf4-141":{"renderedLength":27598,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-140"},"eac6dcf4-143":{"renderedLength":922,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-142"},"eac6dcf4-145":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"eac6dcf4-144"}},"nodeMetas":{"eac6dcf4-0":{"id":"/src/colors/customColor.ts","moduleParts":{"index.js":"eac6dcf4-1"},"imported":[],"importedBy":[{"uid":"eac6dcf4-20"},{"uid":"eac6dcf4-4"}]},"eac6dcf4-2":{"id":"/src/colors/dark.ts","moduleParts":{"index.js":"eac6dcf4-3"},"imported":[],"importedBy":[{"uid":"eac6dcf4-20"},{"uid":"eac6dcf4-4"}]},"eac6dcf4-4":{"id":"/src/colors/primary.ts","moduleParts":{"index.js":"eac6dcf4-5"},"imported":[{"uid":"eac6dcf4-0"},{"uid":"eac6dcf4-2"}],"importedBy":[{"uid":"eac6dcf4-20"}]},"eac6dcf4-6":{"id":"/src/colors/orange.ts","moduleParts":{"index.js":"eac6dcf4-7"},"imported":[],"importedBy":[{"uid":"eac6dcf4-20"}]},"eac6dcf4-8":{"id":"/src/colors/yellow.ts","moduleParts":{"index.js":"eac6dcf4-9"},"imported":[],"importedBy":[{"uid":"eac6dcf4-20"}]},"eac6dcf4-10":{"id":"/src/colors/green.ts","moduleParts":{"index.js":"eac6dcf4-11"},"imported":[],"importedBy":[{"uid":"eac6dcf4-20"}]},"eac6dcf4-12":{"id":"/src/colors/blue.ts","moduleParts":{"index.js":"eac6dcf4-13"},"imported":[],"importedBy":[{"uid":"eac6dcf4-20"}]},"eac6dcf4-14":{"id":"/src/colors/purple.ts","moduleParts":{"index.js":"eac6dcf4-15"},"imported":[],"importedBy":[{"uid":"eac6dcf4-20"}]},"eac6dcf4-16":{"id":"/src/colors/pink.ts","moduleParts":{"index.js":"eac6dcf4-17"},"imported":[],"importedBy":[{"uid":"eac6dcf4-20"}]},"eac6dcf4-18":{"id":"/src/colors/red.ts","moduleParts":{"index.js":"eac6dcf4-19"},"imported":[],"importedBy":[{"uid":"eac6dcf4-20"}]},"eac6dcf4-20":{"id":"/src/colors/index.ts","moduleParts":{"index.js":"eac6dcf4-21"},"imported":[{"uid":"eac6dcf4-4"},{"uid":"eac6dcf4-2"},{"uid":"eac6dcf4-6"},{"uid":"eac6dcf4-8"},{"uid":"eac6dcf4-10"},{"uid":"eac6dcf4-12"},{"uid":"eac6dcf4-14"},{"uid":"eac6dcf4-16"},{"uid":"eac6dcf4-18"},{"uid":"eac6dcf4-0"}],"importedBy":[{"uid":"eac6dcf4-144"}]},"eac6dcf4-22":{"id":"/node_modules/tslib/tslib.es6.js","moduleParts":{"index.js":"eac6dcf4-23"},"imported":[],"importedBy":[{"uid":"eac6dcf4-32"},{"uid":"eac6dcf4-80"},{"uid":"eac6dcf4-120"},{"uid":"eac6dcf4-142"},{"uid":"eac6dcf4-26"},{"uid":"eac6dcf4-126"},{"uid":"eac6dcf4-138"},{"uid":"eac6dcf4-38"},{"uid":"eac6dcf4-36"},{"uid":"eac6dcf4-140"},{"uid":"eac6dcf4-46"},{"uid":"eac6dcf4-72"},{"uid":"eac6dcf4-66"},{"uid":"eac6dcf4-108"},{"uid":"eac6dcf4-130"},{"uid":"eac6dcf4-136"},{"uid":"eac6dcf4-96"},{"uid":"eac6dcf4-112"},{"uid":"eac6dcf4-94"},{"uid":"eac6dcf4-106"}]},"eac6dcf4-24":{"id":"/src/lib/utils.ts","moduleParts":{"index.js":"eac6dcf4-25"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-168"},{"uid":"eac6dcf4-169"}],"importedBy":[{"uid":"eac6dcf4-32"},{"uid":"eac6dcf4-120"},{"uid":"eac6dcf4-142"},{"uid":"eac6dcf4-26"},{"uid":"eac6dcf4-126"},{"uid":"eac6dcf4-138"},{"uid":"eac6dcf4-38"},{"uid":"eac6dcf4-36"},{"uid":"eac6dcf4-140"},{"uid":"eac6dcf4-72"},{"uid":"eac6dcf4-116"},{"uid":"eac6dcf4-122"},{"uid":"eac6dcf4-128"},{"uid":"eac6dcf4-130"},{"uid":"eac6dcf4-98"},{"uid":"eac6dcf4-104"},{"uid":"eac6dcf4-40"},{"uid":"eac6dcf4-106"}]},"eac6dcf4-26":{"id":"/src/components/ui/tooltip.tsx","moduleParts":{"index.js":"eac6dcf4-27"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-155"},{"uid":"eac6dcf4-24"}],"importedBy":[{"uid":"eac6dcf4-144"},{"uid":"eac6dcf4-34"},{"uid":"eac6dcf4-108"},{"uid":"eac6dcf4-116"},{"uid":"eac6dcf4-82"}]},"eac6dcf4-28":{"id":"/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","moduleParts":{"index.js":"eac6dcf4-29"},"imported":[{"uid":"eac6dcf4-149"}],"importedBy":[{"uid":"eac6dcf4-30"}]},"eac6dcf4-30":{"id":"/node_modules/@radix-ui/react-slot/dist/index.mjs","moduleParts":{"index.js":"eac6dcf4-31"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-28"},{"uid":"eac6dcf4-167"}],"importedBy":[{"uid":"eac6dcf4-32"}]},"eac6dcf4-32":{"id":"/src/components/ui/button.tsx","moduleParts":{"index.js":"eac6dcf4-33"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-30"},{"uid":"eac6dcf4-150"},{"uid":"eac6dcf4-24"}],"importedBy":[{"uid":"eac6dcf4-144"},{"uid":"eac6dcf4-46"},{"uid":"eac6dcf4-34"},{"uid":"eac6dcf4-108"},{"uid":"eac6dcf4-110"},{"uid":"eac6dcf4-114"},{"uid":"eac6dcf4-118"},{"uid":"eac6dcf4-122"},{"uid":"eac6dcf4-128"},{"uid":"eac6dcf4-130"},{"uid":"eac6dcf4-40"},{"uid":"eac6dcf4-82"}]},"eac6dcf4-34":{"id":"/src/components/chat-search/Suggestions.tsx","moduleParts":{"index.js":"eac6dcf4-35"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-26"},{"uid":"eac6dcf4-32"}],"importedBy":[{"uid":"eac6dcf4-140"}]},"eac6dcf4-36":{"id":"/src/components/ui/input.tsx","moduleParts":{"index.js":"eac6dcf4-37"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-24"}],"importedBy":[{"uid":"eac6dcf4-144"},{"uid":"eac6dcf4-40"}]},"eac6dcf4-38":{"id":"/src/components/ui/label.tsx","moduleParts":{"index.js":"eac6dcf4-39"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-157"},{"uid":"eac6dcf4-150"},{"uid":"eac6dcf4-24"}],"importedBy":[{"uid":"eac6dcf4-144"},{"uid":"eac6dcf4-40"}]},"eac6dcf4-40":{"id":"/src/components/chat-search/blocks/ActionInputForm.tsx","moduleParts":{"index.js":"eac6dcf4-41"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-176"},{"uid":"eac6dcf4-177"},{"uid":"eac6dcf4-160"},{"uid":"eac6dcf4-32"},{"uid":"eac6dcf4-36"},{"uid":"eac6dcf4-38"},{"uid":"eac6dcf4-24"}],"importedBy":[{"uid":"eac6dcf4-76"}]},"eac6dcf4-42":{"id":"/src/components/chat-search/blocks/ActionButtons.tsx","moduleParts":{"index.js":"eac6dcf4-43"},"imported":[],"importedBy":[{"uid":"eac6dcf4-76"}]},"eac6dcf4-44":{"id":"/src/components/markdown/utils/codeblock.ts","moduleParts":{"index.js":"eac6dcf4-45"},"imported":[],"importedBy":[{"uid":"eac6dcf4-46"}]},"eac6dcf4-46":{"id":"/src/components/markdown/CodeBlock.tsx","moduleParts":{"index.js":"eac6dcf4-47"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-160"},{"uid":"eac6dcf4-161"},{"uid":"eac6dcf4-162"},{"uid":"eac6dcf4-32"},{"uid":"eac6dcf4-44"}],"importedBy":[{"uid":"eac6dcf4-148"},{"uid":"eac6dcf4-72"}]},"eac6dcf4-48":{"id":"/src/components/markdown/Frame.tsx","moduleParts":{"index.js":"eac6dcf4-49"},"imported":[{"uid":"eac6dcf4-149"}],"importedBy":[{"uid":"eac6dcf4-148"},{"uid":"eac6dcf4-50"},{"uid":"eac6dcf4-52"},{"uid":"eac6dcf4-54"},{"uid":"eac6dcf4-56"},{"uid":"eac6dcf4-58"},{"uid":"eac6dcf4-60"}]},"eac6dcf4-50":{"id":"/src/components/markdown/embeds/Loom.tsx","moduleParts":{"index.js":"eac6dcf4-51"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-48"}],"importedBy":[{"uid":"eac6dcf4-62"}]},"eac6dcf4-52":{"id":"/src/components/markdown/embeds/Supademo.tsx","moduleParts":{"index.js":"eac6dcf4-53"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-48"}],"importedBy":[{"uid":"eac6dcf4-62"}]},"eac6dcf4-54":{"id":"/src/components/markdown/embeds/Typeform.tsx","moduleParts":{"index.js":"eac6dcf4-55"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-48"}],"importedBy":[{"uid":"eac6dcf4-62"}]},"eac6dcf4-56":{"id":"/src/components/markdown/embeds/Vimeo.tsx","moduleParts":{"index.js":"eac6dcf4-57"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-48"}],"importedBy":[{"uid":"eac6dcf4-62"}]},"eac6dcf4-58":{"id":"/src/components/markdown/embeds/Wistia.tsx","moduleParts":{"index.js":"eac6dcf4-59"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-48"}],"importedBy":[{"uid":"eac6dcf4-62"}]},"eac6dcf4-60":{"id":"/src/components/markdown/embeds/Youtube.tsx","moduleParts":{"index.js":"eac6dcf4-61"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-48"}],"importedBy":[{"uid":"eac6dcf4-62"}]},"eac6dcf4-62":{"id":"/src/components/markdown/embeds/index.tsx","moduleParts":{"index.js":"eac6dcf4-63"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-50"},{"uid":"eac6dcf4-52"},{"uid":"eac6dcf4-54"},{"uid":"eac6dcf4-56"},{"uid":"eac6dcf4-58"},{"uid":"eac6dcf4-60"}],"importedBy":[{"uid":"eac6dcf4-72"}]},"eac6dcf4-64":{"id":"/src/components/markdown/MemoizedReactMarkdown.tsx","moduleParts":{"index.js":"eac6dcf4-65"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-165"}],"importedBy":[{"uid":"eac6dcf4-148"},{"uid":"eac6dcf4-72"}]},"eac6dcf4-66":{"id":"/src/components/markdown/MermaidDiagram.tsx","moduleParts":{"index.js":"eac6dcf4-67"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-166"}],"importedBy":[{"uid":"eac6dcf4-148"},{"uid":"eac6dcf4-72"}]},"eac6dcf4-68":{"id":"/src/components/markdown/ZoomableImage.tsx","moduleParts":{"index.js":"eac6dcf4-69"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-158"},{"uid":"eac6dcf4-160"}],"importedBy":[{"uid":"eac6dcf4-148"},{"uid":"eac6dcf4-72"}]},"eac6dcf4-70":{"id":"/src/components/markdown/utils/stripNewLines.ts","moduleParts":{"index.js":"eac6dcf4-71"},"imported":[],"importedBy":[{"uid":"eac6dcf4-72"}]},"eac6dcf4-72":{"id":"/src/components/markdown/FormattedMessage.tsx","moduleParts":{"index.js":"eac6dcf4-73"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-163"},{"uid":"eac6dcf4-164"},{"uid":"eac6dcf4-46"},{"uid":"eac6dcf4-62"},{"uid":"eac6dcf4-64"},{"uid":"eac6dcf4-66"},{"uid":"eac6dcf4-68"},{"uid":"eac6dcf4-70"},{"uid":"eac6dcf4-24"}],"importedBy":[{"uid":"eac6dcf4-148"},{"uid":"eac6dcf4-74"}]},"eac6dcf4-74":{"id":"/src/components/chat-search/blocks/MarkdownText.tsx","moduleParts":{"index.js":"eac6dcf4-75"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-72"}],"importedBy":[{"uid":"eac6dcf4-76"}]},"eac6dcf4-76":{"id":"/src/components/chat-search/AnswerBlock.tsx","moduleParts":{"index.js":"eac6dcf4-77"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-40"},{"uid":"eac6dcf4-42"},{"uid":"eac6dcf4-74"}],"importedBy":[{"uid":"eac6dcf4-108"}]},"eac6dcf4-78":{"id":"/src/components/chat-search/blocks/utils.ts","moduleParts":{"index.js":"eac6dcf4-79"},"imported":[{"uid":"eac6dcf4-173"}],"importedBy":[{"uid":"eac6dcf4-140"},{"uid":"eac6dcf4-108"},{"uid":"eac6dcf4-84"},{"uid":"eac6dcf4-98"}]},"eac6dcf4-80":{"id":"/src/components/ui/collapsible.tsx","moduleParts":{"index.js":"eac6dcf4-81"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-151"}],"importedBy":[{"uid":"eac6dcf4-144"},{"uid":"eac6dcf4-108"}]},"eac6dcf4-82":{"id":"/src/components/feedback/feedback.tsx","moduleParts":{"index.js":"eac6dcf4-83"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-160"},{"uid":"eac6dcf4-158"},{"uid":"eac6dcf4-32"},{"uid":"eac6dcf4-26"}],"importedBy":[{"uid":"eac6dcf4-170"}]},"eac6dcf4-84":{"id":"/src/components/chat-search/hooks/useAnswerList.ts","moduleParts":{"index.js":"eac6dcf4-85"},"imported":[{"uid":"eac6dcf4-173"},{"uid":"eac6dcf4-174"},{"uid":"eac6dcf4-78"}],"importedBy":[{"uid":"eac6dcf4-140"},{"uid":"eac6dcf4-88"},{"uid":"eac6dcf4-98"}]},"eac6dcf4-86":{"id":"/src/components/chat-search/hooks/useConversationId.ts","moduleParts":{"index.js":"eac6dcf4-87"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-175"}],"importedBy":[{"uid":"eac6dcf4-88"}]},"eac6dcf4-88":{"id":"/src/components/chat-search/ChatSearchContext.tsx","moduleParts":{"index.js":"eac6dcf4-89"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-84"},{"uid":"eac6dcf4-86"}],"importedBy":[{"uid":"eac6dcf4-147"},{"uid":"eac6dcf4-140"},{"uid":"eac6dcf4-90"},{"uid":"eac6dcf4-130"},{"uid":"eac6dcf4-172"},{"uid":"eac6dcf4-98"},{"uid":"eac6dcf4-100"}]},"eac6dcf4-90":{"id":"/src/components/chat-search/hooks/useIsChatSearchDirty.ts","moduleParts":{"index.js":"eac6dcf4-91"},"imported":[{"uid":"eac6dcf4-88"}],"importedBy":[{"uid":"eac6dcf4-147"},{"uid":"eac6dcf4-130"},{"uid":"eac6dcf4-159"}]},"eac6dcf4-92":{"id":"/src/components/chat-search/hooks/useScrollManager.ts","moduleParts":{"index.js":"eac6dcf4-93"},"imported":[],"importedBy":[{"uid":"eac6dcf4-159"}]},"eac6dcf4-94":{"id":"/src/lib/fetchClient.ts","moduleParts":{"index.js":"eac6dcf4-95"},"imported":[{"uid":"eac6dcf4-22"}],"importedBy":[{"uid":"eac6dcf4-96"}]},"eac6dcf4-96":{"id":"/src/lib/api.ts","moduleParts":{"index.js":"eac6dcf4-97"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-173"},{"uid":"eac6dcf4-94"}],"importedBy":[{"uid":"eac6dcf4-140"},{"uid":"eac6dcf4-136"},{"uid":"eac6dcf4-98"}]},"eac6dcf4-98":{"id":"/src/components/chat-search/hooks/useConversationLoader.ts","moduleParts":{"index.js":"eac6dcf4-99"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-175"},{"uid":"eac6dcf4-88"},{"uid":"eac6dcf4-84"},{"uid":"eac6dcf4-78"},{"uid":"eac6dcf4-24"},{"uid":"eac6dcf4-96"}],"importedBy":[{"uid":"eac6dcf4-159"}]},"eac6dcf4-100":{"id":"/src/components/chat-search/hooks/useSubscriptionManager.ts","moduleParts":{"index.js":"eac6dcf4-101"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-88"}],"importedBy":[{"uid":"eac6dcf4-159"}]},"eac6dcf4-102":{"id":"/src/components/chat-search/hooks/useDarkMode.ts","moduleParts":{"index.js":"eac6dcf4-103"},"imported":[{"uid":"eac6dcf4-149"}],"importedBy":[{"uid":"eac6dcf4-159"},{"uid":"eac6dcf4-104"}]},"eac6dcf4-104":{"id":"/src/components/chat-search/hooks/useAccessibleColor.ts","moduleParts":{"index.js":"eac6dcf4-105"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-24"},{"uid":"eac6dcf4-102"}],"importedBy":[{"uid":"eac6dcf4-159"}]},"eac6dcf4-106":{"id":"/src/components/generating-star/generating-star.tsx","moduleParts":{"index.js":"eac6dcf4-107"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-24"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-159"}],"importedBy":[{"uid":"eac6dcf4-171"}]},"eac6dcf4-108":{"id":"/src/components/chat-search/SearchResults.tsx","moduleParts":{"index.js":"eac6dcf4-109"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-160"},{"uid":"eac6dcf4-32"},{"uid":"eac6dcf4-76"},{"uid":"eac6dcf4-78"},{"uid":"eac6dcf4-80"},{"uid":"eac6dcf4-170"},{"uid":"eac6dcf4-171"},{"uid":"eac6dcf4-26"}],"importedBy":[{"uid":"eac6dcf4-140"}]},"eac6dcf4-110":{"id":"/src/components/chat-search/FollowUpQuestions.tsx","moduleParts":{"index.js":"eac6dcf4-111"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-158"},{"uid":"eac6dcf4-160"},{"uid":"eac6dcf4-32"}],"importedBy":[{"uid":"eac6dcf4-140"}]},"eac6dcf4-112":{"id":"/src/components/ui/icon.tsx","moduleParts":{"index.js":"eac6dcf4-113"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-160","dynamic":true}],"importedBy":[{"uid":"eac6dcf4-140"},{"uid":"eac6dcf4-114"}]},"eac6dcf4-114":{"id":"/src/components/chat-search/NextBestActions.tsx","moduleParts":{"index.js":"eac6dcf4-115"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-158"},{"uid":"eac6dcf4-112"},{"uid":"eac6dcf4-32"}],"importedBy":[{"uid":"eac6dcf4-140"}]},"eac6dcf4-116":{"id":"/src/components/chat-search/TimelineNavigation.tsx","moduleParts":{"index.js":"eac6dcf4-117"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-160"},{"uid":"eac6dcf4-158"},{"uid":"eac6dcf4-26"},{"uid":"eac6dcf4-24"}],"importedBy":[{"uid":"eac6dcf4-140"}]},"eac6dcf4-118":{"id":"/src/components/chat-search/ScrollToBottomArrow.tsx","moduleParts":{"index.js":"eac6dcf4-119"},"imported":[{"uid":"eac6dcf4-160"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-32"}],"importedBy":[{"uid":"eac6dcf4-140"}]},"eac6dcf4-120":{"id":"/src/components/ui/dropdown-menu.tsx","moduleParts":{"index.js":"eac6dcf4-121"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-152"},{"uid":"eac6dcf4-24"},{"uid":"eac6dcf4-153"}],"importedBy":[{"uid":"eac6dcf4-144"},{"uid":"eac6dcf4-122"}]},"eac6dcf4-122":{"id":"/src/components/chat-search/PrimarySearch.tsx","moduleParts":{"index.js":"eac6dcf4-123"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-158"},{"uid":"eac6dcf4-160"},{"uid":"eac6dcf4-32"},{"uid":"eac6dcf4-120"},{"uid":"eac6dcf4-24"}],"importedBy":[{"uid":"eac6dcf4-140"}]},"eac6dcf4-124":{"id":"/src/components/chat-search/FollowUpSearchBar.module.css","moduleParts":{"index.js":"eac6dcf4-125"},"imported":[],"importedBy":[{"uid":"eac6dcf4-128"}]},"eac6dcf4-126":{"id":"/src/components/ui/textarea.tsx","moduleParts":{"index.js":"eac6dcf4-127"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-24"}],"importedBy":[{"uid":"eac6dcf4-144"},{"uid":"eac6dcf4-128"}]},"eac6dcf4-128":{"id":"/src/components/chat-search/FollowUpSearchBar.tsx","moduleParts":{"index.js":"eac6dcf4-129"},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-160"},{"uid":"eac6dcf4-158"},{"uid":"eac6dcf4-124"},{"uid":"eac6dcf4-32"},{"uid":"eac6dcf4-126"},{"uid":"eac6dcf4-24"}],"importedBy":[{"uid":"eac6dcf4-140"}]},"eac6dcf4-130":{"id":"/src/components/chat-search/Header.tsx","moduleParts":{"index.js":"eac6dcf4-131"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-158"},{"uid":"eac6dcf4-160"},{"uid":"eac6dcf4-32"},{"uid":"eac6dcf4-90"},{"uid":"eac6dcf4-88"},{"uid":"eac6dcf4-24"}],"importedBy":[{"uid":"eac6dcf4-140"}]},"eac6dcf4-132":{"id":"/src/components/chat-search/text-config.ts","moduleParts":{"index.js":"eac6dcf4-133"},"imported":[],"importedBy":[{"uid":"eac6dcf4-140"}]},"eac6dcf4-134":{"id":"/src/lib/feature-flags.tsx","moduleParts":{"index.js":"eac6dcf4-135"},"imported":[{"uid":"eac6dcf4-149"}],"importedBy":[{"uid":"eac6dcf4-140"}]},"eac6dcf4-136":{"id":"/src/lib/hooks.ts","moduleParts":{"index.js":"eac6dcf4-137"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-96"}],"importedBy":[{"uid":"eac6dcf4-140"}]},"eac6dcf4-138":{"id":"/src/components/ui/scroll-area.tsx","moduleParts":{"index.js":"eac6dcf4-139"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-156"},{"uid":"eac6dcf4-24"}],"importedBy":[{"uid":"eac6dcf4-144"},{"uid":"eac6dcf4-140"}]},"eac6dcf4-140":{"id":"/src/components/chat-search/ChatSearch.tsx","moduleParts":{"index.js":"eac6dcf4-141"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-158"},{"uid":"eac6dcf4-34"},{"uid":"eac6dcf4-108"},{"uid":"eac6dcf4-110"},{"uid":"eac6dcf4-114"},{"uid":"eac6dcf4-116"},{"uid":"eac6dcf4-118"},{"uid":"eac6dcf4-122"},{"uid":"eac6dcf4-128"},{"uid":"eac6dcf4-130"},{"uid":"eac6dcf4-132"},{"uid":"eac6dcf4-88"},{"uid":"eac6dcf4-159"},{"uid":"eac6dcf4-84"},{"uid":"eac6dcf4-78"},{"uid":"eac6dcf4-134"},{"uid":"eac6dcf4-24"},{"uid":"eac6dcf4-136"},{"uid":"eac6dcf4-96"},{"uid":"eac6dcf4-138"},{"uid":"eac6dcf4-112"}],"importedBy":[{"uid":"eac6dcf4-147"}]},"eac6dcf4-142":{"id":"/src/components/ui/switch.tsx","moduleParts":{"index.js":"eac6dcf4-143"},"imported":[{"uid":"eac6dcf4-22"},{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-154"},{"uid":"eac6dcf4-24"}],"importedBy":[{"uid":"eac6dcf4-144"}]},"eac6dcf4-144":{"id":"/src/index.ts","moduleParts":{"index.js":"eac6dcf4-145"},"imported":[{"uid":"eac6dcf4-146"},{"uid":"eac6dcf4-20"},{"uid":"eac6dcf4-147"},{"uid":"eac6dcf4-148"},{"uid":"eac6dcf4-32"},{"uid":"eac6dcf4-80"},{"uid":"eac6dcf4-120"},{"uid":"eac6dcf4-142"},{"uid":"eac6dcf4-26"},{"uid":"eac6dcf4-126"},{"uid":"eac6dcf4-138"},{"uid":"eac6dcf4-38"},{"uid":"eac6dcf4-36"}],"importedBy":[],"isEntry":true},"eac6dcf4-146":{"id":"/src/global.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-144"}]},"eac6dcf4-147":{"id":"/src/components/chat-search/index.ts","moduleParts":{},"imported":[{"uid":"eac6dcf4-140"},{"uid":"eac6dcf4-88"},{"uid":"eac6dcf4-90"}],"importedBy":[{"uid":"eac6dcf4-144"}]},"eac6dcf4-148":{"id":"/src/components/markdown/index.ts","moduleParts":{},"imported":[{"uid":"eac6dcf4-46"},{"uid":"eac6dcf4-72"},{"uid":"eac6dcf4-48"},{"uid":"eac6dcf4-64"},{"uid":"eac6dcf4-66"},{"uid":"eac6dcf4-68"}],"importedBy":[{"uid":"eac6dcf4-144"}]},"eac6dcf4-149":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-32"},{"uid":"eac6dcf4-80"},{"uid":"eac6dcf4-120"},{"uid":"eac6dcf4-142"},{"uid":"eac6dcf4-26"},{"uid":"eac6dcf4-126"},{"uid":"eac6dcf4-138"},{"uid":"eac6dcf4-38"},{"uid":"eac6dcf4-36"},{"uid":"eac6dcf4-140"},{"uid":"eac6dcf4-88"},{"uid":"eac6dcf4-46"},{"uid":"eac6dcf4-72"},{"uid":"eac6dcf4-48"},{"uid":"eac6dcf4-64"},{"uid":"eac6dcf4-66"},{"uid":"eac6dcf4-68"},{"uid":"eac6dcf4-30"},{"uid":"eac6dcf4-24"},{"uid":"eac6dcf4-34"},{"uid":"eac6dcf4-108"},{"uid":"eac6dcf4-110"},{"uid":"eac6dcf4-114"},{"uid":"eac6dcf4-116"},{"uid":"eac6dcf4-118"},{"uid":"eac6dcf4-122"},{"uid":"eac6dcf4-128"},{"uid":"eac6dcf4-130"},{"uid":"eac6dcf4-134"},{"uid":"eac6dcf4-136"},{"uid":"eac6dcf4-112"},{"uid":"eac6dcf4-86"},{"uid":"eac6dcf4-62"},{"uid":"eac6dcf4-28"},{"uid":"eac6dcf4-76"},{"uid":"eac6dcf4-172"},{"uid":"eac6dcf4-98"},{"uid":"eac6dcf4-100"},{"uid":"eac6dcf4-102"},{"uid":"eac6dcf4-104"},{"uid":"eac6dcf4-50"},{"uid":"eac6dcf4-52"},{"uid":"eac6dcf4-54"},{"uid":"eac6dcf4-56"},{"uid":"eac6dcf4-58"},{"uid":"eac6dcf4-60"},{"uid":"eac6dcf4-40"},{"uid":"eac6dcf4-74"},{"uid":"eac6dcf4-82"},{"uid":"eac6dcf4-106"}],"isExternal":true},"eac6dcf4-150":{"id":"class-variance-authority","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-32"},{"uid":"eac6dcf4-38"}],"isExternal":true},"eac6dcf4-151":{"id":"@radix-ui/react-collapsible","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-80"}],"isExternal":true},"eac6dcf4-152":{"id":"@radix-ui/react-dropdown-menu","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-120"}],"isExternal":true},"eac6dcf4-153":{"id":"@radix-ui/react-icons","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-120"}],"isExternal":true},"eac6dcf4-154":{"id":"@radix-ui/react-switch","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-142"}],"isExternal":true},"eac6dcf4-155":{"id":"@radix-ui/react-tooltip","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-26"}],"isExternal":true},"eac6dcf4-156":{"id":"@radix-ui/react-scroll-area","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-138"}],"isExternal":true},"eac6dcf4-157":{"id":"@radix-ui/react-label","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-38"}],"isExternal":true},"eac6dcf4-158":{"id":"framer-motion","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-140"},{"uid":"eac6dcf4-68"},{"uid":"eac6dcf4-110"},{"uid":"eac6dcf4-114"},{"uid":"eac6dcf4-116"},{"uid":"eac6dcf4-122"},{"uid":"eac6dcf4-128"},{"uid":"eac6dcf4-130"},{"uid":"eac6dcf4-82"}],"isExternal":true},"eac6dcf4-159":{"id":"/src/components/chat-search/hooks/index.ts","moduleParts":{},"imported":[{"uid":"eac6dcf4-90"},{"uid":"eac6dcf4-92"},{"uid":"eac6dcf4-172"},{"uid":"eac6dcf4-98"},{"uid":"eac6dcf4-100"},{"uid":"eac6dcf4-102"},{"uid":"eac6dcf4-104"}],"importedBy":[{"uid":"eac6dcf4-140"},{"uid":"eac6dcf4-106"}]},"eac6dcf4-160":{"id":"@phosphor-icons/react","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-46"},{"uid":"eac6dcf4-68"},{"uid":"eac6dcf4-108"},{"uid":"eac6dcf4-110"},{"uid":"eac6dcf4-116"},{"uid":"eac6dcf4-118"},{"uid":"eac6dcf4-122"},{"uid":"eac6dcf4-128"},{"uid":"eac6dcf4-130"},{"uid":"eac6dcf4-112"},{"uid":"eac6dcf4-40"},{"uid":"eac6dcf4-82"}],"isExternal":true},"eac6dcf4-161":{"id":"react-syntax-highlighter","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-46"}],"isExternal":true},"eac6dcf4-162":{"id":"react-syntax-highlighter/dist/esm/styles/prism","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-46"}],"isExternal":true},"eac6dcf4-163":{"id":"rehype-raw","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-72"}],"isExternal":true},"eac6dcf4-164":{"id":"remark-gfm","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-72"}],"isExternal":true},"eac6dcf4-165":{"id":"react-markdown","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-64"}],"isExternal":true},"eac6dcf4-166":{"id":"mermaid","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-66"}],"isExternal":true},"eac6dcf4-167":{"id":"react/jsx-runtime","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-30"}],"isExternal":true},"eac6dcf4-168":{"id":"clsx","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-24"}],"isExternal":true},"eac6dcf4-169":{"id":"tailwind-merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-24"}],"isExternal":true},"eac6dcf4-170":{"id":"/src/components/feedback/index.ts","moduleParts":{},"imported":[{"uid":"eac6dcf4-82"}],"importedBy":[{"uid":"eac6dcf4-108"}]},"eac6dcf4-171":{"id":"/src/components/generating-star/index.ts","moduleParts":{},"imported":[{"uid":"eac6dcf4-106"}],"importedBy":[{"uid":"eac6dcf4-108"}]},"eac6dcf4-172":{"id":"/src/components/chat-search/hooks/useUrlManager.ts","moduleParts":{},"imported":[{"uid":"eac6dcf4-149"},{"uid":"eac6dcf4-88"}],"importedBy":[{"uid":"eac6dcf4-159"}]},"eac6dcf4-173":{"id":"@paralleldrive/cuid2","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-84"},{"uid":"eac6dcf4-78"},{"uid":"eac6dcf4-96"}],"isExternal":true},"eac6dcf4-174":{"id":"use-immer","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-84"}],"isExternal":true},"eac6dcf4-175":{"id":"react-use","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-86"},{"uid":"eac6dcf4-98"}],"isExternal":true},"eac6dcf4-176":{"id":"react-hook-form","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-40"}],"isExternal":true},"eac6dcf4-177":{"id":"@hookform/resolvers/ajv","moduleParts":{},"imported":[],"importedBy":[{"uid":"eac6dcf4-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":"edab9a59-1","name":"customColor.ts"},{"uid":"edab9a59-3","name":"dark.ts"},{"uid":"edab9a59-5","name":"primary.ts"},{"uid":"edab9a59-7","name":"orange.ts"},{"uid":"edab9a59-9","name":"yellow.ts"},{"uid":"edab9a59-11","name":"green.ts"},{"uid":"edab9a59-13","name":"blue.ts"},{"uid":"edab9a59-15","name":"purple.ts"},{"uid":"edab9a59-17","name":"pink.ts"},{"uid":"edab9a59-19","name":"red.ts"},{"uid":"edab9a59-21","name":"index.ts"}]},{"name":"lib","children":[{"uid":"edab9a59-25","name":"utils.ts"},{"uid":"edab9a59-95","name":"fetchClient.ts"},{"uid":"edab9a59-97","name":"api.ts"},{"uid":"edab9a59-135","name":"feature-flags.tsx"},{"uid":"edab9a59-137","name":"hooks.ts"}]},{"name":"components","children":[{"name":"ui","children":[{"uid":"edab9a59-27","name":"tooltip.tsx"},{"uid":"edab9a59-33","name":"button.tsx"},{"uid":"edab9a59-37","name":"input.tsx"},{"uid":"edab9a59-39","name":"label.tsx"},{"uid":"edab9a59-81","name":"collapsible.tsx"},{"uid":"edab9a59-113","name":"icon.tsx"},{"uid":"edab9a59-121","name":"dropdown-menu.tsx"},{"uid":"edab9a59-127","name":"textarea.tsx"},{"uid":"edab9a59-139","name":"scroll-area.tsx"},{"uid":"edab9a59-143","name":"switch.tsx"},{"uid":"edab9a59-145","name":"select.tsx"},{"uid":"edab9a59-149","name":"calendar.tsx"},{"uid":"edab9a59-151","name":"popover.tsx"}]},{"name":"chat-search","children":[{"uid":"edab9a59-35","name":"Suggestions.tsx"},{"name":"blocks","children":[{"uid":"edab9a59-41","name":"ActionInputForm.tsx"},{"uid":"edab9a59-43","name":"ActionButtons.tsx"},{"uid":"edab9a59-75","name":"MarkdownText.tsx"},{"uid":"edab9a59-79","name":"utils.ts"}]},{"uid":"edab9a59-77","name":"AnswerBlock.tsx"},{"name":"hooks","children":[{"uid":"edab9a59-85","name":"useAnswerList.ts"},{"uid":"edab9a59-87","name":"useConversationId.ts"},{"uid":"edab9a59-91","name":"useIsChatSearchDirty.ts"},{"uid":"edab9a59-93","name":"useScrollManager.ts"},{"uid":"edab9a59-99","name":"useConversationLoader.ts"},{"uid":"edab9a59-101","name":"useSubscriptionManager.ts"},{"uid":"edab9a59-103","name":"useDarkMode.ts"},{"uid":"edab9a59-105","name":"useAccessibleColor.ts"}]},{"uid":"edab9a59-89","name":"ChatSearchContext.tsx"},{"uid":"edab9a59-109","name":"SearchResults.tsx"},{"uid":"edab9a59-111","name":"FollowUpQuestions.tsx"},{"uid":"edab9a59-115","name":"NextBestActions.tsx"},{"uid":"edab9a59-117","name":"TimelineNavigation.tsx"},{"uid":"edab9a59-119","name":"ScrollToBottomArrow.tsx"},{"uid":"edab9a59-123","name":"PrimarySearch.tsx"},{"uid":"edab9a59-125","name":"FollowUpSearchBar.module.css"},{"uid":"edab9a59-129","name":"FollowUpSearchBar.tsx"},{"uid":"edab9a59-131","name":"Header.tsx"},{"uid":"edab9a59-133","name":"text-config.ts"},{"uid":"edab9a59-141","name":"ChatSearch.tsx"}]},{"name":"markdown","children":[{"name":"utils","children":[{"uid":"edab9a59-45","name":"codeblock.ts"},{"uid":"edab9a59-71","name":"stripNewLines.ts"}]},{"uid":"edab9a59-47","name":"CodeBlock.tsx"},{"uid":"edab9a59-49","name":"Frame.tsx"},{"name":"embeds","children":[{"uid":"edab9a59-51","name":"Loom.tsx"},{"uid":"edab9a59-53","name":"Supademo.tsx"},{"uid":"edab9a59-55","name":"Typeform.tsx"},{"uid":"edab9a59-57","name":"Vimeo.tsx"},{"uid":"edab9a59-59","name":"Wistia.tsx"},{"uid":"edab9a59-61","name":"Youtube.tsx"},{"uid":"edab9a59-63","name":"index.tsx"}]},{"uid":"edab9a59-65","name":"MemoizedReactMarkdown.tsx"},{"uid":"edab9a59-67","name":"MermaidDiagram.tsx"},{"uid":"edab9a59-69","name":"ZoomableImage.tsx"},{"uid":"edab9a59-73","name":"FormattedMessage.tsx"}]},{"name":"feedback/feedback.tsx","uid":"edab9a59-83"},{"name":"generating-star/generating-star.tsx","uid":"edab9a59-107"},{"name":"select/select.tsx","uid":"edab9a59-147"},{"name":"date-picker/date-picker.tsx","uid":"edab9a59-153"}]},{"uid":"edab9a59-155","name":"index.ts"}]},{"name":"node_modules","children":[{"name":"tslib/tslib.es6.js","uid":"edab9a59-23"},{"name":"@radix-ui","children":[{"name":"react-compose-refs/dist/index.mjs","uid":"edab9a59-29"},{"name":"react-slot/dist/index.mjs","uid":"edab9a59-31"}]}]}]}],"isRoot":true},"nodeParts":{"edab9a59-1":{"renderedLength":354,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-0"},"edab9a59-3":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-2"},"edab9a59-5":{"renderedLength":344,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-4"},"edab9a59-7":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-6"},"edab9a59-9":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-8"},"edab9a59-11":{"renderedLength":248,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-10"},"edab9a59-13":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-12"},"edab9a59-15":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-14"},"edab9a59-17":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-16"},"edab9a59-19":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-18"},"edab9a59-21":{"renderedLength":127,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-20"},"edab9a59-23":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-22"},"edab9a59-25":{"renderedLength":2527,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-24"},"edab9a59-27":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-26"},"edab9a59-29":{"renderedLength":802,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-28"},"edab9a59-31":{"renderedLength":3014,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-30"},"edab9a59-33":{"renderedLength":1710,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-32"},"edab9a59-35":{"renderedLength":1526,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-34"},"edab9a59-37":{"renderedLength":626,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-36"},"edab9a59-39":{"renderedLength":407,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-38"},"edab9a59-41":{"renderedLength":3464,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-40"},"edab9a59-43":{"renderedLength":56,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-42"},"edab9a59-45":{"renderedLength":944,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-44"},"edab9a59-47":{"renderedLength":2826,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-46"},"edab9a59-49":{"renderedLength":1997,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-48"},"edab9a59-51":{"renderedLength":349,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-50"},"edab9a59-53":{"renderedLength":279,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-52"},"edab9a59-55":{"renderedLength":392,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-54"},"edab9a59-57":{"renderedLength":1011,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-56"},"edab9a59-59":{"renderedLength":1864,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-58"},"edab9a59-61":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-60"},"edab9a59-63":{"renderedLength":768,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-62"},"edab9a59-65":{"renderedLength":119,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-64"},"edab9a59-67":{"renderedLength":1855,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-66"},"edab9a59-69":{"renderedLength":4088,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-68"},"edab9a59-71":{"renderedLength":75,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-70"},"edab9a59-73":{"renderedLength":8796,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-72"},"edab9a59-75":{"renderedLength":1021,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-74"},"edab9a59-77":{"renderedLength":511,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-76"},"edab9a59-79":{"renderedLength":600,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-78"},"edab9a59-81":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-80"},"edab9a59-83":{"renderedLength":4585,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-82"},"edab9a59-85":{"renderedLength":8610,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-84"},"edab9a59-87":{"renderedLength":1664,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-86"},"edab9a59-89":{"renderedLength":2227,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-88"},"edab9a59-91":{"renderedLength":177,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-90"},"edab9a59-93":{"renderedLength":1409,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-92"},"edab9a59-95":{"renderedLength":3720,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-94"},"edab9a59-97":{"renderedLength":3860,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-96"},"edab9a59-99":{"renderedLength":2797,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-98"},"edab9a59-101":{"renderedLength":1130,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-100"},"edab9a59-103":{"renderedLength":521,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-102"},"edab9a59-105":{"renderedLength":921,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-104"},"edab9a59-107":{"renderedLength":2637,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-106"},"edab9a59-109":{"renderedLength":6454,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-108"},"edab9a59-111":{"renderedLength":1207,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-110"},"edab9a59-113":{"renderedLength":980,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-112"},"edab9a59-115":{"renderedLength":3759,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-114"},"edab9a59-117":{"renderedLength":4169,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-116"},"edab9a59-119":{"renderedLength":335,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-118"},"edab9a59-121":{"renderedLength":6222,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-120"},"edab9a59-123":{"renderedLength":12791,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-122"},"edab9a59-125":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-124"},"edab9a59-127":{"renderedLength":527,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-126"},"edab9a59-129":{"renderedLength":3631,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-128"},"edab9a59-131":{"renderedLength":2164,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-130"},"edab9a59-133":{"renderedLength":2318,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-132"},"edab9a59-135":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-134"},"edab9a59-137":{"renderedLength":1815,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-136"},"edab9a59-139":{"renderedLength":1348,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-138"},"edab9a59-141":{"renderedLength":27643,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-140"},"edab9a59-143":{"renderedLength":922,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-142"},"edab9a59-145":{"renderedLength":3680,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-144"},"edab9a59-147":{"renderedLength":669,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-146"},"edab9a59-149":{"renderedLength":373,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-148"},"edab9a59-151":{"renderedLength":983,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-150"},"edab9a59-153":{"renderedLength":711,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-152"},"edab9a59-155":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"edab9a59-154"}},"nodeMetas":{"edab9a59-0":{"id":"/src/colors/customColor.ts","moduleParts":{"index.js":"edab9a59-1"},"imported":[],"importedBy":[{"uid":"edab9a59-20"},{"uid":"edab9a59-4"}]},"edab9a59-2":{"id":"/src/colors/dark.ts","moduleParts":{"index.js":"edab9a59-3"},"imported":[],"importedBy":[{"uid":"edab9a59-20"},{"uid":"edab9a59-4"}]},"edab9a59-4":{"id":"/src/colors/primary.ts","moduleParts":{"index.js":"edab9a59-5"},"imported":[{"uid":"edab9a59-0"},{"uid":"edab9a59-2"}],"importedBy":[{"uid":"edab9a59-20"}]},"edab9a59-6":{"id":"/src/colors/orange.ts","moduleParts":{"index.js":"edab9a59-7"},"imported":[],"importedBy":[{"uid":"edab9a59-20"}]},"edab9a59-8":{"id":"/src/colors/yellow.ts","moduleParts":{"index.js":"edab9a59-9"},"imported":[],"importedBy":[{"uid":"edab9a59-20"}]},"edab9a59-10":{"id":"/src/colors/green.ts","moduleParts":{"index.js":"edab9a59-11"},"imported":[],"importedBy":[{"uid":"edab9a59-20"}]},"edab9a59-12":{"id":"/src/colors/blue.ts","moduleParts":{"index.js":"edab9a59-13"},"imported":[],"importedBy":[{"uid":"edab9a59-20"}]},"edab9a59-14":{"id":"/src/colors/purple.ts","moduleParts":{"index.js":"edab9a59-15"},"imported":[],"importedBy":[{"uid":"edab9a59-20"}]},"edab9a59-16":{"id":"/src/colors/pink.ts","moduleParts":{"index.js":"edab9a59-17"},"imported":[],"importedBy":[{"uid":"edab9a59-20"}]},"edab9a59-18":{"id":"/src/colors/red.ts","moduleParts":{"index.js":"edab9a59-19"},"imported":[],"importedBy":[{"uid":"edab9a59-20"}]},"edab9a59-20":{"id":"/src/colors/index.ts","moduleParts":{"index.js":"edab9a59-21"},"imported":[{"uid":"edab9a59-4"},{"uid":"edab9a59-2"},{"uid":"edab9a59-6"},{"uid":"edab9a59-8"},{"uid":"edab9a59-10"},{"uid":"edab9a59-12"},{"uid":"edab9a59-14"},{"uid":"edab9a59-16"},{"uid":"edab9a59-18"},{"uid":"edab9a59-0"}],"importedBy":[{"uid":"edab9a59-154"}]},"edab9a59-22":{"id":"/node_modules/tslib/tslib.es6.js","moduleParts":{"index.js":"edab9a59-23"},"imported":[],"importedBy":[{"uid":"edab9a59-32"},{"uid":"edab9a59-80"},{"uid":"edab9a59-120"},{"uid":"edab9a59-142"},{"uid":"edab9a59-26"},{"uid":"edab9a59-126"},{"uid":"edab9a59-138"},{"uid":"edab9a59-38"},{"uid":"edab9a59-36"},{"uid":"edab9a59-140"},{"uid":"edab9a59-46"},{"uid":"edab9a59-72"},{"uid":"edab9a59-66"},{"uid":"edab9a59-108"},{"uid":"edab9a59-130"},{"uid":"edab9a59-136"},{"uid":"edab9a59-96"},{"uid":"edab9a59-112"},{"uid":"edab9a59-144"},{"uid":"edab9a59-148"},{"uid":"edab9a59-150"},{"uid":"edab9a59-94"},{"uid":"edab9a59-106"}]},"edab9a59-24":{"id":"/src/lib/utils.ts","moduleParts":{"index.js":"edab9a59-25"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-181"},{"uid":"edab9a59-182"}],"importedBy":[{"uid":"edab9a59-32"},{"uid":"edab9a59-120"},{"uid":"edab9a59-142"},{"uid":"edab9a59-26"},{"uid":"edab9a59-126"},{"uid":"edab9a59-138"},{"uid":"edab9a59-38"},{"uid":"edab9a59-36"},{"uid":"edab9a59-140"},{"uid":"edab9a59-72"},{"uid":"edab9a59-146"},{"uid":"edab9a59-152"},{"uid":"edab9a59-116"},{"uid":"edab9a59-122"},{"uid":"edab9a59-128"},{"uid":"edab9a59-130"},{"uid":"edab9a59-144"},{"uid":"edab9a59-148"},{"uid":"edab9a59-150"},{"uid":"edab9a59-98"},{"uid":"edab9a59-104"},{"uid":"edab9a59-40"},{"uid":"edab9a59-106"}]},"edab9a59-26":{"id":"/src/components/ui/tooltip.tsx","moduleParts":{"index.js":"edab9a59-27"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-167"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-154"},{"uid":"edab9a59-34"},{"uid":"edab9a59-108"},{"uid":"edab9a59-116"},{"uid":"edab9a59-82"}]},"edab9a59-28":{"id":"/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","moduleParts":{"index.js":"edab9a59-29"},"imported":[{"uid":"edab9a59-161"}],"importedBy":[{"uid":"edab9a59-30"}]},"edab9a59-30":{"id":"/node_modules/@radix-ui/react-slot/dist/index.mjs","moduleParts":{"index.js":"edab9a59-31"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-28"},{"uid":"edab9a59-180"}],"importedBy":[{"uid":"edab9a59-32"}]},"edab9a59-32":{"id":"/src/components/ui/button.tsx","moduleParts":{"index.js":"edab9a59-33"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-30"},{"uid":"edab9a59-162"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-154"},{"uid":"edab9a59-46"},{"uid":"edab9a59-152"},{"uid":"edab9a59-34"},{"uid":"edab9a59-108"},{"uid":"edab9a59-110"},{"uid":"edab9a59-114"},{"uid":"edab9a59-118"},{"uid":"edab9a59-122"},{"uid":"edab9a59-128"},{"uid":"edab9a59-130"},{"uid":"edab9a59-40"},{"uid":"edab9a59-82"}]},"edab9a59-34":{"id":"/src/components/chat-search/Suggestions.tsx","moduleParts":{"index.js":"edab9a59-35"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-26"},{"uid":"edab9a59-32"}],"importedBy":[{"uid":"edab9a59-140"}]},"edab9a59-36":{"id":"/src/components/ui/input.tsx","moduleParts":{"index.js":"edab9a59-37"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-154"},{"uid":"edab9a59-40"}]},"edab9a59-38":{"id":"/src/components/ui/label.tsx","moduleParts":{"index.js":"edab9a59-39"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-169"},{"uid":"edab9a59-162"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-154"},{"uid":"edab9a59-40"}]},"edab9a59-40":{"id":"/src/components/chat-search/blocks/ActionInputForm.tsx","moduleParts":{"index.js":"edab9a59-41"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-195"},{"uid":"edab9a59-196"},{"uid":"edab9a59-172"},{"uid":"edab9a59-32"},{"uid":"edab9a59-36"},{"uid":"edab9a59-38"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-76"}]},"edab9a59-42":{"id":"/src/components/chat-search/blocks/ActionButtons.tsx","moduleParts":{"index.js":"edab9a59-43"},"imported":[],"importedBy":[{"uid":"edab9a59-76"}]},"edab9a59-44":{"id":"/src/components/markdown/utils/codeblock.ts","moduleParts":{"index.js":"edab9a59-45"},"imported":[],"importedBy":[{"uid":"edab9a59-46"}]},"edab9a59-46":{"id":"/src/components/markdown/CodeBlock.tsx","moduleParts":{"index.js":"edab9a59-47"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-172"},{"uid":"edab9a59-173"},{"uid":"edab9a59-174"},{"uid":"edab9a59-32"},{"uid":"edab9a59-44"}],"importedBy":[{"uid":"edab9a59-158"},{"uid":"edab9a59-72"}]},"edab9a59-48":{"id":"/src/components/markdown/Frame.tsx","moduleParts":{"index.js":"edab9a59-49"},"imported":[{"uid":"edab9a59-161"}],"importedBy":[{"uid":"edab9a59-158"},{"uid":"edab9a59-50"},{"uid":"edab9a59-52"},{"uid":"edab9a59-54"},{"uid":"edab9a59-56"},{"uid":"edab9a59-58"},{"uid":"edab9a59-60"}]},"edab9a59-50":{"id":"/src/components/markdown/embeds/Loom.tsx","moduleParts":{"index.js":"edab9a59-51"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-48"}],"importedBy":[{"uid":"edab9a59-62"}]},"edab9a59-52":{"id":"/src/components/markdown/embeds/Supademo.tsx","moduleParts":{"index.js":"edab9a59-53"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-48"}],"importedBy":[{"uid":"edab9a59-62"}]},"edab9a59-54":{"id":"/src/components/markdown/embeds/Typeform.tsx","moduleParts":{"index.js":"edab9a59-55"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-48"}],"importedBy":[{"uid":"edab9a59-62"}]},"edab9a59-56":{"id":"/src/components/markdown/embeds/Vimeo.tsx","moduleParts":{"index.js":"edab9a59-57"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-48"}],"importedBy":[{"uid":"edab9a59-62"}]},"edab9a59-58":{"id":"/src/components/markdown/embeds/Wistia.tsx","moduleParts":{"index.js":"edab9a59-59"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-48"}],"importedBy":[{"uid":"edab9a59-62"}]},"edab9a59-60":{"id":"/src/components/markdown/embeds/Youtube.tsx","moduleParts":{"index.js":"edab9a59-61"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-48"}],"importedBy":[{"uid":"edab9a59-62"}]},"edab9a59-62":{"id":"/src/components/markdown/embeds/index.tsx","moduleParts":{"index.js":"edab9a59-63"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-50"},{"uid":"edab9a59-52"},{"uid":"edab9a59-54"},{"uid":"edab9a59-56"},{"uid":"edab9a59-58"},{"uid":"edab9a59-60"}],"importedBy":[{"uid":"edab9a59-72"}]},"edab9a59-64":{"id":"/src/components/markdown/MemoizedReactMarkdown.tsx","moduleParts":{"index.js":"edab9a59-65"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-178"}],"importedBy":[{"uid":"edab9a59-158"},{"uid":"edab9a59-72"}]},"edab9a59-66":{"id":"/src/components/markdown/MermaidDiagram.tsx","moduleParts":{"index.js":"edab9a59-67"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-179"}],"importedBy":[{"uid":"edab9a59-158"},{"uid":"edab9a59-72"}]},"edab9a59-68":{"id":"/src/components/markdown/ZoomableImage.tsx","moduleParts":{"index.js":"edab9a59-69"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-170"},{"uid":"edab9a59-172"}],"importedBy":[{"uid":"edab9a59-158"},{"uid":"edab9a59-72"}]},"edab9a59-70":{"id":"/src/components/markdown/utils/stripNewLines.ts","moduleParts":{"index.js":"edab9a59-71"},"imported":[],"importedBy":[{"uid":"edab9a59-72"}]},"edab9a59-72":{"id":"/src/components/markdown/FormattedMessage.tsx","moduleParts":{"index.js":"edab9a59-73"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-175"},{"uid":"edab9a59-176"},{"uid":"edab9a59-177"},{"uid":"edab9a59-46"},{"uid":"edab9a59-62"},{"uid":"edab9a59-64"},{"uid":"edab9a59-66"},{"uid":"edab9a59-68"},{"uid":"edab9a59-70"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-158"},{"uid":"edab9a59-74"}]},"edab9a59-74":{"id":"/src/components/chat-search/blocks/MarkdownText.tsx","moduleParts":{"index.js":"edab9a59-75"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-72"}],"importedBy":[{"uid":"edab9a59-76"}]},"edab9a59-76":{"id":"/src/components/chat-search/AnswerBlock.tsx","moduleParts":{"index.js":"edab9a59-77"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-40"},{"uid":"edab9a59-42"},{"uid":"edab9a59-74"}],"importedBy":[{"uid":"edab9a59-108"}]},"edab9a59-78":{"id":"/src/components/chat-search/blocks/utils.ts","moduleParts":{"index.js":"edab9a59-79"},"imported":[{"uid":"edab9a59-189"}],"importedBy":[{"uid":"edab9a59-140"},{"uid":"edab9a59-108"},{"uid":"edab9a59-84"},{"uid":"edab9a59-98"}]},"edab9a59-80":{"id":"/src/components/ui/collapsible.tsx","moduleParts":{"index.js":"edab9a59-81"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-163"}],"importedBy":[{"uid":"edab9a59-154"},{"uid":"edab9a59-108"}]},"edab9a59-82":{"id":"/src/components/feedback/feedback.tsx","moduleParts":{"index.js":"edab9a59-83"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-172"},{"uid":"edab9a59-170"},{"uid":"edab9a59-32"},{"uid":"edab9a59-26"}],"importedBy":[{"uid":"edab9a59-186"}]},"edab9a59-84":{"id":"/src/components/chat-search/hooks/useAnswerList.ts","moduleParts":{"index.js":"edab9a59-85"},"imported":[{"uid":"edab9a59-189"},{"uid":"edab9a59-190"},{"uid":"edab9a59-78"}],"importedBy":[{"uid":"edab9a59-140"},{"uid":"edab9a59-88"},{"uid":"edab9a59-98"}]},"edab9a59-86":{"id":"/src/components/chat-search/hooks/useConversationId.ts","moduleParts":{"index.js":"edab9a59-87"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-191"}],"importedBy":[{"uid":"edab9a59-88"}]},"edab9a59-88":{"id":"/src/components/chat-search/ChatSearchContext.tsx","moduleParts":{"index.js":"edab9a59-89"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-84"},{"uid":"edab9a59-86"}],"importedBy":[{"uid":"edab9a59-157"},{"uid":"edab9a59-140"},{"uid":"edab9a59-90"},{"uid":"edab9a59-130"},{"uid":"edab9a59-188"},{"uid":"edab9a59-98"},{"uid":"edab9a59-100"}]},"edab9a59-90":{"id":"/src/components/chat-search/hooks/useIsChatSearchDirty.ts","moduleParts":{"index.js":"edab9a59-91"},"imported":[{"uid":"edab9a59-88"}],"importedBy":[{"uid":"edab9a59-157"},{"uid":"edab9a59-130"},{"uid":"edab9a59-171"}]},"edab9a59-92":{"id":"/src/components/chat-search/hooks/useScrollManager.ts","moduleParts":{"index.js":"edab9a59-93"},"imported":[],"importedBy":[{"uid":"edab9a59-171"}]},"edab9a59-94":{"id":"/src/lib/fetchClient.ts","moduleParts":{"index.js":"edab9a59-95"},"imported":[{"uid":"edab9a59-22"}],"importedBy":[{"uid":"edab9a59-96"}]},"edab9a59-96":{"id":"/src/lib/api.ts","moduleParts":{"index.js":"edab9a59-97"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-189"},{"uid":"edab9a59-94"}],"importedBy":[{"uid":"edab9a59-140"},{"uid":"edab9a59-136"},{"uid":"edab9a59-98"}]},"edab9a59-98":{"id":"/src/components/chat-search/hooks/useConversationLoader.ts","moduleParts":{"index.js":"edab9a59-99"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-191"},{"uid":"edab9a59-88"},{"uid":"edab9a59-84"},{"uid":"edab9a59-78"},{"uid":"edab9a59-24"},{"uid":"edab9a59-96"}],"importedBy":[{"uid":"edab9a59-171"}]},"edab9a59-100":{"id":"/src/components/chat-search/hooks/useSubscriptionManager.ts","moduleParts":{"index.js":"edab9a59-101"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-88"}],"importedBy":[{"uid":"edab9a59-171"}]},"edab9a59-102":{"id":"/src/components/chat-search/hooks/useDarkMode.ts","moduleParts":{"index.js":"edab9a59-103"},"imported":[{"uid":"edab9a59-161"}],"importedBy":[{"uid":"edab9a59-171"},{"uid":"edab9a59-104"}]},"edab9a59-104":{"id":"/src/components/chat-search/hooks/useAccessibleColor.ts","moduleParts":{"index.js":"edab9a59-105"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-24"},{"uid":"edab9a59-102"}],"importedBy":[{"uid":"edab9a59-171"}]},"edab9a59-106":{"id":"/src/components/generating-star/generating-star.tsx","moduleParts":{"index.js":"edab9a59-107"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-24"},{"uid":"edab9a59-161"},{"uid":"edab9a59-171"}],"importedBy":[{"uid":"edab9a59-187"}]},"edab9a59-108":{"id":"/src/components/chat-search/SearchResults.tsx","moduleParts":{"index.js":"edab9a59-109"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-172"},{"uid":"edab9a59-32"},{"uid":"edab9a59-76"},{"uid":"edab9a59-78"},{"uid":"edab9a59-80"},{"uid":"edab9a59-186"},{"uid":"edab9a59-187"},{"uid":"edab9a59-26"}],"importedBy":[{"uid":"edab9a59-140"}]},"edab9a59-110":{"id":"/src/components/chat-search/FollowUpQuestions.tsx","moduleParts":{"index.js":"edab9a59-111"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-170"},{"uid":"edab9a59-172"},{"uid":"edab9a59-32"}],"importedBy":[{"uid":"edab9a59-140"}]},"edab9a59-112":{"id":"/src/components/ui/icon.tsx","moduleParts":{"index.js":"edab9a59-113"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-172","dynamic":true}],"importedBy":[{"uid":"edab9a59-140"},{"uid":"edab9a59-114"}]},"edab9a59-114":{"id":"/src/components/chat-search/NextBestActions.tsx","moduleParts":{"index.js":"edab9a59-115"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-170"},{"uid":"edab9a59-112"},{"uid":"edab9a59-32"}],"importedBy":[{"uid":"edab9a59-140"}]},"edab9a59-116":{"id":"/src/components/chat-search/TimelineNavigation.tsx","moduleParts":{"index.js":"edab9a59-117"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-172"},{"uid":"edab9a59-170"},{"uid":"edab9a59-26"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-140"}]},"edab9a59-118":{"id":"/src/components/chat-search/ScrollToBottomArrow.tsx","moduleParts":{"index.js":"edab9a59-119"},"imported":[{"uid":"edab9a59-172"},{"uid":"edab9a59-161"},{"uid":"edab9a59-32"}],"importedBy":[{"uid":"edab9a59-140"}]},"edab9a59-120":{"id":"/src/components/ui/dropdown-menu.tsx","moduleParts":{"index.js":"edab9a59-121"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-164"},{"uid":"edab9a59-24"},{"uid":"edab9a59-165"}],"importedBy":[{"uid":"edab9a59-154"},{"uid":"edab9a59-122"}]},"edab9a59-122":{"id":"/src/components/chat-search/PrimarySearch.tsx","moduleParts":{"index.js":"edab9a59-123"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-170"},{"uid":"edab9a59-172"},{"uid":"edab9a59-32"},{"uid":"edab9a59-120"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-140"}]},"edab9a59-124":{"id":"/src/components/chat-search/FollowUpSearchBar.module.css","moduleParts":{"index.js":"edab9a59-125"},"imported":[],"importedBy":[{"uid":"edab9a59-128"}]},"edab9a59-126":{"id":"/src/components/ui/textarea.tsx","moduleParts":{"index.js":"edab9a59-127"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-154"},{"uid":"edab9a59-128"}]},"edab9a59-128":{"id":"/src/components/chat-search/FollowUpSearchBar.tsx","moduleParts":{"index.js":"edab9a59-129"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-172"},{"uid":"edab9a59-170"},{"uid":"edab9a59-124"},{"uid":"edab9a59-32"},{"uid":"edab9a59-126"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-140"}]},"edab9a59-130":{"id":"/src/components/chat-search/Header.tsx","moduleParts":{"index.js":"edab9a59-131"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-170"},{"uid":"edab9a59-172"},{"uid":"edab9a59-32"},{"uid":"edab9a59-90"},{"uid":"edab9a59-88"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-140"}]},"edab9a59-132":{"id":"/src/components/chat-search/text-config.ts","moduleParts":{"index.js":"edab9a59-133"},"imported":[],"importedBy":[{"uid":"edab9a59-140"}]},"edab9a59-134":{"id":"/src/lib/feature-flags.tsx","moduleParts":{"index.js":"edab9a59-135"},"imported":[{"uid":"edab9a59-161"}],"importedBy":[{"uid":"edab9a59-140"}]},"edab9a59-136":{"id":"/src/lib/hooks.ts","moduleParts":{"index.js":"edab9a59-137"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-96"}],"importedBy":[{"uid":"edab9a59-140"}]},"edab9a59-138":{"id":"/src/components/ui/scroll-area.tsx","moduleParts":{"index.js":"edab9a59-139"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-168"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-154"},{"uid":"edab9a59-140"}]},"edab9a59-140":{"id":"/src/components/chat-search/ChatSearch.tsx","moduleParts":{"index.js":"edab9a59-141"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-170"},{"uid":"edab9a59-34"},{"uid":"edab9a59-108"},{"uid":"edab9a59-110"},{"uid":"edab9a59-114"},{"uid":"edab9a59-116"},{"uid":"edab9a59-118"},{"uid":"edab9a59-122"},{"uid":"edab9a59-128"},{"uid":"edab9a59-130"},{"uid":"edab9a59-132"},{"uid":"edab9a59-88"},{"uid":"edab9a59-171"},{"uid":"edab9a59-84"},{"uid":"edab9a59-78"},{"uid":"edab9a59-134"},{"uid":"edab9a59-24"},{"uid":"edab9a59-136"},{"uid":"edab9a59-96"},{"uid":"edab9a59-138"},{"uid":"edab9a59-112"}],"importedBy":[{"uid":"edab9a59-157"}]},"edab9a59-142":{"id":"/src/components/ui/switch.tsx","moduleParts":{"index.js":"edab9a59-143"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-166"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-154"}]},"edab9a59-144":{"id":"/src/components/ui/select.tsx","moduleParts":{"index.js":"edab9a59-145"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-192"},{"uid":"edab9a59-172"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-146"}]},"edab9a59-146":{"id":"/src/components/select/select.tsx","moduleParts":{"index.js":"edab9a59-147"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-24"},{"uid":"edab9a59-144"}],"importedBy":[{"uid":"edab9a59-159"}]},"edab9a59-148":{"id":"/src/components/ui/calendar.tsx","moduleParts":{"index.js":"edab9a59-149"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-193"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-152"}]},"edab9a59-150":{"id":"/src/components/ui/popover.tsx","moduleParts":{"index.js":"edab9a59-151"},"imported":[{"uid":"edab9a59-22"},{"uid":"edab9a59-161"},{"uid":"edab9a59-194"},{"uid":"edab9a59-24"}],"importedBy":[{"uid":"edab9a59-152"}]},"edab9a59-152":{"id":"/src/components/date-picker/date-picker.tsx","moduleParts":{"index.js":"edab9a59-153"},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-183"},{"uid":"edab9a59-172"},{"uid":"edab9a59-24"},{"uid":"edab9a59-32"},{"uid":"edab9a59-148"},{"uid":"edab9a59-150"},{"uid":"edab9a59-184"},{"uid":"edab9a59-185"}],"importedBy":[{"uid":"edab9a59-160"}]},"edab9a59-154":{"id":"/src/index.ts","moduleParts":{"index.js":"edab9a59-155"},"imported":[{"uid":"edab9a59-156"},{"uid":"edab9a59-20"},{"uid":"edab9a59-157"},{"uid":"edab9a59-158"},{"uid":"edab9a59-32"},{"uid":"edab9a59-80"},{"uid":"edab9a59-120"},{"uid":"edab9a59-142"},{"uid":"edab9a59-26"},{"uid":"edab9a59-126"},{"uid":"edab9a59-138"},{"uid":"edab9a59-38"},{"uid":"edab9a59-36"},{"uid":"edab9a59-159"},{"uid":"edab9a59-160"}],"importedBy":[],"isEntry":true},"edab9a59-156":{"id":"/src/global.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-154"}]},"edab9a59-157":{"id":"/src/components/chat-search/index.ts","moduleParts":{},"imported":[{"uid":"edab9a59-140"},{"uid":"edab9a59-88"},{"uid":"edab9a59-90"}],"importedBy":[{"uid":"edab9a59-154"}]},"edab9a59-158":{"id":"/src/components/markdown/index.ts","moduleParts":{},"imported":[{"uid":"edab9a59-46"},{"uid":"edab9a59-72"},{"uid":"edab9a59-48"},{"uid":"edab9a59-64"},{"uid":"edab9a59-66"},{"uid":"edab9a59-68"}],"importedBy":[{"uid":"edab9a59-154"}]},"edab9a59-159":{"id":"/src/components/select/index.ts","moduleParts":{},"imported":[{"uid":"edab9a59-146"}],"importedBy":[{"uid":"edab9a59-154"}]},"edab9a59-160":{"id":"/src/components/date-picker/index.tsx","moduleParts":{},"imported":[{"uid":"edab9a59-152"}],"importedBy":[{"uid":"edab9a59-154"}]},"edab9a59-161":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-32"},{"uid":"edab9a59-80"},{"uid":"edab9a59-120"},{"uid":"edab9a59-142"},{"uid":"edab9a59-26"},{"uid":"edab9a59-126"},{"uid":"edab9a59-138"},{"uid":"edab9a59-38"},{"uid":"edab9a59-36"},{"uid":"edab9a59-140"},{"uid":"edab9a59-88"},{"uid":"edab9a59-46"},{"uid":"edab9a59-72"},{"uid":"edab9a59-48"},{"uid":"edab9a59-64"},{"uid":"edab9a59-66"},{"uid":"edab9a59-68"},{"uid":"edab9a59-30"},{"uid":"edab9a59-24"},{"uid":"edab9a59-146"},{"uid":"edab9a59-152"},{"uid":"edab9a59-34"},{"uid":"edab9a59-108"},{"uid":"edab9a59-110"},{"uid":"edab9a59-114"},{"uid":"edab9a59-116"},{"uid":"edab9a59-118"},{"uid":"edab9a59-122"},{"uid":"edab9a59-128"},{"uid":"edab9a59-130"},{"uid":"edab9a59-134"},{"uid":"edab9a59-136"},{"uid":"edab9a59-112"},{"uid":"edab9a59-86"},{"uid":"edab9a59-62"},{"uid":"edab9a59-28"},{"uid":"edab9a59-144"},{"uid":"edab9a59-148"},{"uid":"edab9a59-150"},{"uid":"edab9a59-76"},{"uid":"edab9a59-188"},{"uid":"edab9a59-98"},{"uid":"edab9a59-100"},{"uid":"edab9a59-102"},{"uid":"edab9a59-104"},{"uid":"edab9a59-50"},{"uid":"edab9a59-52"},{"uid":"edab9a59-54"},{"uid":"edab9a59-56"},{"uid":"edab9a59-58"},{"uid":"edab9a59-60"},{"uid":"edab9a59-40"},{"uid":"edab9a59-74"},{"uid":"edab9a59-82"},{"uid":"edab9a59-106"}],"isExternal":true},"edab9a59-162":{"id":"class-variance-authority","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-32"},{"uid":"edab9a59-38"}],"isExternal":true},"edab9a59-163":{"id":"@radix-ui/react-collapsible","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-80"}],"isExternal":true},"edab9a59-164":{"id":"@radix-ui/react-dropdown-menu","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-120"}],"isExternal":true},"edab9a59-165":{"id":"@radix-ui/react-icons","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-120"}],"isExternal":true},"edab9a59-166":{"id":"@radix-ui/react-switch","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-142"}],"isExternal":true},"edab9a59-167":{"id":"@radix-ui/react-tooltip","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-26"}],"isExternal":true},"edab9a59-168":{"id":"@radix-ui/react-scroll-area","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-138"}],"isExternal":true},"edab9a59-169":{"id":"@radix-ui/react-label","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-38"}],"isExternal":true},"edab9a59-170":{"id":"framer-motion","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-140"},{"uid":"edab9a59-68"},{"uid":"edab9a59-110"},{"uid":"edab9a59-114"},{"uid":"edab9a59-116"},{"uid":"edab9a59-122"},{"uid":"edab9a59-128"},{"uid":"edab9a59-130"},{"uid":"edab9a59-82"}],"isExternal":true},"edab9a59-171":{"id":"/src/components/chat-search/hooks/index.ts","moduleParts":{},"imported":[{"uid":"edab9a59-90"},{"uid":"edab9a59-92"},{"uid":"edab9a59-188"},{"uid":"edab9a59-98"},{"uid":"edab9a59-100"},{"uid":"edab9a59-102"},{"uid":"edab9a59-104"}],"importedBy":[{"uid":"edab9a59-140"},{"uid":"edab9a59-106"}]},"edab9a59-172":{"id":"@phosphor-icons/react","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-46"},{"uid":"edab9a59-68"},{"uid":"edab9a59-152"},{"uid":"edab9a59-108"},{"uid":"edab9a59-110"},{"uid":"edab9a59-116"},{"uid":"edab9a59-118"},{"uid":"edab9a59-122"},{"uid":"edab9a59-128"},{"uid":"edab9a59-130"},{"uid":"edab9a59-112"},{"uid":"edab9a59-144"},{"uid":"edab9a59-40"},{"uid":"edab9a59-82"}],"isExternal":true},"edab9a59-173":{"id":"react-syntax-highlighter","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-46"}],"isExternal":true},"edab9a59-174":{"id":"react-syntax-highlighter/dist/esm/styles/prism","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-46"}],"isExternal":true},"edab9a59-175":{"id":"rehype-raw","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-72"}],"isExternal":true},"edab9a59-176":{"id":"remark-gfm","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-72"}],"isExternal":true},"edab9a59-177":{"id":"path-to-regexp","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-72"}],"isExternal":true},"edab9a59-178":{"id":"react-markdown","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-64"}],"isExternal":true},"edab9a59-179":{"id":"mermaid","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-66"}],"isExternal":true},"edab9a59-180":{"id":"react/jsx-runtime","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-30"}],"isExternal":true},"edab9a59-181":{"id":"clsx","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-24"}],"isExternal":true},"edab9a59-182":{"id":"tailwind-merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-24"}],"isExternal":true},"edab9a59-183":{"id":"date-fns","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-152"}],"isExternal":true},"edab9a59-184":{"id":"react-day-picker/style.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-152"}],"isExternal":true},"edab9a59-185":{"id":"/src/components/ui/calendar.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-152"}]},"edab9a59-186":{"id":"/src/components/feedback/index.ts","moduleParts":{},"imported":[{"uid":"edab9a59-82"}],"importedBy":[{"uid":"edab9a59-108"}]},"edab9a59-187":{"id":"/src/components/generating-star/index.ts","moduleParts":{},"imported":[{"uid":"edab9a59-106"}],"importedBy":[{"uid":"edab9a59-108"}]},"edab9a59-188":{"id":"/src/components/chat-search/hooks/useUrlManager.ts","moduleParts":{},"imported":[{"uid":"edab9a59-161"},{"uid":"edab9a59-88"}],"importedBy":[{"uid":"edab9a59-171"}]},"edab9a59-189":{"id":"@paralleldrive/cuid2","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-84"},{"uid":"edab9a59-78"},{"uid":"edab9a59-96"}],"isExternal":true},"edab9a59-190":{"id":"use-immer","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-84"}],"isExternal":true},"edab9a59-191":{"id":"react-use","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-86"},{"uid":"edab9a59-98"}],"isExternal":true},"edab9a59-192":{"id":"@radix-ui/react-select","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-144"}],"isExternal":true},"edab9a59-193":{"id":"react-day-picker","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-148"}],"isExternal":true},"edab9a59-194":{"id":"@radix-ui/react-popover","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-150"}],"isExternal":true},"edab9a59-195":{"id":"react-hook-form","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-40"}],"isExternal":true},"edab9a59-196":{"id":"@hookform/resolvers/ajv","moduleParts":{},"imported":[],"importedBy":[{"uid":"edab9a59-40"}],"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;