@brainfish-ai/components 0.3.8 → 0.3.10
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/esm/index.css +1 -1
- package/dist/esm/index.css.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +23 -1
- package/package.json +8 -2
- package/stats.html +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -532,4 +532,26 @@ declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.Label
|
|
|
532
532
|
|
|
533
533
|
declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
534
534
|
|
|
535
|
-
|
|
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 SimpleSelect({ 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, 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.3.
|
|
3
|
+
"version": "0.3.10",
|
|
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.
|
|
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,22 +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",
|
|
133
136
|
"path-to-regexp": "^8.2.0",
|
|
137
|
+
"react-day-picker": "^9.6.1",
|
|
134
138
|
"react-hook-form": "^7.54.2",
|
|
135
139
|
"react-markdown": "^9.0.3",
|
|
136
140
|
"react-syntax-highlighter": "^15.6.1",
|
|
137
141
|
"react-use": "^17.6.0",
|
|
138
142
|
"rehype-raw": "^7.0.0",
|
|
139
143
|
"remark-gfm": "^4.0.0",
|
|
144
|
+
"select": "^1.1.2",
|
|
145
|
+
"shadcn": "latest",
|
|
140
146
|
"use-immer": "^0.11.0"
|
|
141
147
|
}
|
|
142
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":"03cd44be-1","name":"customColor.ts"},{"uid":"03cd44be-3","name":"dark.ts"},{"uid":"03cd44be-5","name":"primary.ts"},{"uid":"03cd44be-7","name":"orange.ts"},{"uid":"03cd44be-9","name":"yellow.ts"},{"uid":"03cd44be-11","name":"green.ts"},{"uid":"03cd44be-13","name":"blue.ts"},{"uid":"03cd44be-15","name":"purple.ts"},{"uid":"03cd44be-17","name":"pink.ts"},{"uid":"03cd44be-19","name":"red.ts"},{"uid":"03cd44be-21","name":"index.ts"}]},{"name":"lib","children":[{"uid":"03cd44be-25","name":"utils.ts"},{"uid":"03cd44be-95","name":"fetchClient.ts"},{"uid":"03cd44be-97","name":"api.ts"},{"uid":"03cd44be-135","name":"feature-flags.tsx"},{"uid":"03cd44be-137","name":"hooks.ts"}]},{"name":"components","children":[{"name":"ui","children":[{"uid":"03cd44be-27","name":"tooltip.tsx"},{"uid":"03cd44be-33","name":"button.tsx"},{"uid":"03cd44be-37","name":"input.tsx"},{"uid":"03cd44be-39","name":"label.tsx"},{"uid":"03cd44be-81","name":"collapsible.tsx"},{"uid":"03cd44be-113","name":"icon.tsx"},{"uid":"03cd44be-121","name":"dropdown-menu.tsx"},{"uid":"03cd44be-127","name":"textarea.tsx"},{"uid":"03cd44be-139","name":"scroll-area.tsx"},{"uid":"03cd44be-143","name":"switch.tsx"}]},{"name":"chat-search","children":[{"uid":"03cd44be-35","name":"Suggestions.tsx"},{"name":"blocks","children":[{"uid":"03cd44be-41","name":"ActionInputForm.tsx"},{"uid":"03cd44be-43","name":"ActionButtons.tsx"},{"uid":"03cd44be-75","name":"MarkdownText.tsx"},{"uid":"03cd44be-79","name":"utils.ts"}]},{"uid":"03cd44be-77","name":"AnswerBlock.tsx"},{"name":"hooks","children":[{"uid":"03cd44be-85","name":"useAnswerList.ts"},{"uid":"03cd44be-87","name":"useConversationId.ts"},{"uid":"03cd44be-91","name":"useIsChatSearchDirty.ts"},{"uid":"03cd44be-93","name":"useScrollManager.ts"},{"uid":"03cd44be-99","name":"useConversationLoader.ts"},{"uid":"03cd44be-101","name":"useSubscriptionManager.ts"},{"uid":"03cd44be-103","name":"useDarkMode.ts"},{"uid":"03cd44be-105","name":"useAccessibleColor.ts"}]},{"uid":"03cd44be-89","name":"ChatSearchContext.tsx"},{"uid":"03cd44be-109","name":"SearchResults.tsx"},{"uid":"03cd44be-111","name":"FollowUpQuestions.tsx"},{"uid":"03cd44be-115","name":"NextBestActions.tsx"},{"uid":"03cd44be-117","name":"TimelineNavigation.tsx"},{"uid":"03cd44be-119","name":"ScrollToBottomArrow.tsx"},{"uid":"03cd44be-123","name":"PrimarySearch.tsx"},{"uid":"03cd44be-125","name":"FollowUpSearchBar.module.css"},{"uid":"03cd44be-129","name":"FollowUpSearchBar.tsx"},{"uid":"03cd44be-131","name":"Header.tsx"},{"uid":"03cd44be-133","name":"text-config.ts"},{"uid":"03cd44be-141","name":"ChatSearch.tsx"}]},{"name":"markdown","children":[{"name":"utils","children":[{"uid":"03cd44be-45","name":"codeblock.ts"},{"uid":"03cd44be-71","name":"stripNewLines.ts"}]},{"uid":"03cd44be-47","name":"CodeBlock.tsx"},{"uid":"03cd44be-49","name":"Frame.tsx"},{"name":"embeds","children":[{"uid":"03cd44be-51","name":"Loom.tsx"},{"uid":"03cd44be-53","name":"Supademo.tsx"},{"uid":"03cd44be-55","name":"Typeform.tsx"},{"uid":"03cd44be-57","name":"Vimeo.tsx"},{"uid":"03cd44be-59","name":"Wistia.tsx"},{"uid":"03cd44be-61","name":"Youtube.tsx"},{"uid":"03cd44be-63","name":"index.tsx"}]},{"uid":"03cd44be-65","name":"MemoizedReactMarkdown.tsx"},{"uid":"03cd44be-67","name":"MermaidDiagram.tsx"},{"uid":"03cd44be-69","name":"ZoomableImage.tsx"},{"uid":"03cd44be-73","name":"FormattedMessage.tsx"}]},{"name":"feedback/feedback.tsx","uid":"03cd44be-83"},{"name":"generating-star/generating-star.tsx","uid":"03cd44be-107"}]},{"uid":"03cd44be-145","name":"index.ts"}]},{"name":"node_modules","children":[{"name":"tslib/tslib.es6.js","uid":"03cd44be-23"},{"name":"@radix-ui","children":[{"name":"react-compose-refs/dist/index.mjs","uid":"03cd44be-29"},{"name":"react-slot/dist/index.mjs","uid":"03cd44be-31"}]}]}]}],"isRoot":true},"nodeParts":{"03cd44be-1":{"renderedLength":354,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-0"},"03cd44be-3":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-2"},"03cd44be-5":{"renderedLength":344,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-4"},"03cd44be-7":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-6"},"03cd44be-9":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-8"},"03cd44be-11":{"renderedLength":248,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-10"},"03cd44be-13":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-12"},"03cd44be-15":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-14"},"03cd44be-17":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-16"},"03cd44be-19":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-18"},"03cd44be-21":{"renderedLength":127,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-20"},"03cd44be-23":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-22"},"03cd44be-25":{"renderedLength":2527,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-24"},"03cd44be-27":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-26"},"03cd44be-29":{"renderedLength":802,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-28"},"03cd44be-31":{"renderedLength":2966,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-30"},"03cd44be-33":{"renderedLength":1710,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-32"},"03cd44be-35":{"renderedLength":1526,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-34"},"03cd44be-37":{"renderedLength":626,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-36"},"03cd44be-39":{"renderedLength":407,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-38"},"03cd44be-41":{"renderedLength":3464,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-40"},"03cd44be-43":{"renderedLength":56,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-42"},"03cd44be-45":{"renderedLength":944,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-44"},"03cd44be-47":{"renderedLength":2826,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-46"},"03cd44be-49":{"renderedLength":1997,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-48"},"03cd44be-51":{"renderedLength":349,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-50"},"03cd44be-53":{"renderedLength":279,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-52"},"03cd44be-55":{"renderedLength":392,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-54"},"03cd44be-57":{"renderedLength":1011,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-56"},"03cd44be-59":{"renderedLength":1864,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-58"},"03cd44be-61":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-60"},"03cd44be-63":{"renderedLength":768,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-62"},"03cd44be-65":{"renderedLength":119,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-64"},"03cd44be-67":{"renderedLength":1855,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-66"},"03cd44be-69":{"renderedLength":4088,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-68"},"03cd44be-71":{"renderedLength":75,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-70"},"03cd44be-73":{"renderedLength":8796,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-72"},"03cd44be-75":{"renderedLength":1021,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-74"},"03cd44be-77":{"renderedLength":511,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-76"},"03cd44be-79":{"renderedLength":600,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-78"},"03cd44be-81":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-80"},"03cd44be-83":{"renderedLength":4585,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-82"},"03cd44be-85":{"renderedLength":8610,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-84"},"03cd44be-87":{"renderedLength":1664,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-86"},"03cd44be-89":{"renderedLength":2227,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-88"},"03cd44be-91":{"renderedLength":177,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-90"},"03cd44be-93":{"renderedLength":1409,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-92"},"03cd44be-95":{"renderedLength":3720,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-94"},"03cd44be-97":{"renderedLength":3860,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-96"},"03cd44be-99":{"renderedLength":2797,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-98"},"03cd44be-101":{"renderedLength":1130,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-100"},"03cd44be-103":{"renderedLength":521,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-102"},"03cd44be-105":{"renderedLength":921,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-104"},"03cd44be-107":{"renderedLength":2637,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-106"},"03cd44be-109":{"renderedLength":6454,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-108"},"03cd44be-111":{"renderedLength":1207,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-110"},"03cd44be-113":{"renderedLength":980,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-112"},"03cd44be-115":{"renderedLength":3759,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-114"},"03cd44be-117":{"renderedLength":4169,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-116"},"03cd44be-119":{"renderedLength":335,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-118"},"03cd44be-121":{"renderedLength":6222,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-120"},"03cd44be-123":{"renderedLength":12791,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-122"},"03cd44be-125":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-124"},"03cd44be-127":{"renderedLength":527,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-126"},"03cd44be-129":{"renderedLength":3631,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-128"},"03cd44be-131":{"renderedLength":2164,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-130"},"03cd44be-133":{"renderedLength":2318,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-132"},"03cd44be-135":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-134"},"03cd44be-137":{"renderedLength":1815,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-136"},"03cd44be-139":{"renderedLength":1348,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-138"},"03cd44be-141":{"renderedLength":27643,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-140"},"03cd44be-143":{"renderedLength":922,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-142"},"03cd44be-145":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"03cd44be-144"}},"nodeMetas":{"03cd44be-0":{"id":"/src/colors/customColor.ts","moduleParts":{"index.js":"03cd44be-1"},"imported":[],"importedBy":[{"uid":"03cd44be-20"},{"uid":"03cd44be-4"}]},"03cd44be-2":{"id":"/src/colors/dark.ts","moduleParts":{"index.js":"03cd44be-3"},"imported":[],"importedBy":[{"uid":"03cd44be-20"},{"uid":"03cd44be-4"}]},"03cd44be-4":{"id":"/src/colors/primary.ts","moduleParts":{"index.js":"03cd44be-5"},"imported":[{"uid":"03cd44be-0"},{"uid":"03cd44be-2"}],"importedBy":[{"uid":"03cd44be-20"}]},"03cd44be-6":{"id":"/src/colors/orange.ts","moduleParts":{"index.js":"03cd44be-7"},"imported":[],"importedBy":[{"uid":"03cd44be-20"}]},"03cd44be-8":{"id":"/src/colors/yellow.ts","moduleParts":{"index.js":"03cd44be-9"},"imported":[],"importedBy":[{"uid":"03cd44be-20"}]},"03cd44be-10":{"id":"/src/colors/green.ts","moduleParts":{"index.js":"03cd44be-11"},"imported":[],"importedBy":[{"uid":"03cd44be-20"}]},"03cd44be-12":{"id":"/src/colors/blue.ts","moduleParts":{"index.js":"03cd44be-13"},"imported":[],"importedBy":[{"uid":"03cd44be-20"}]},"03cd44be-14":{"id":"/src/colors/purple.ts","moduleParts":{"index.js":"03cd44be-15"},"imported":[],"importedBy":[{"uid":"03cd44be-20"}]},"03cd44be-16":{"id":"/src/colors/pink.ts","moduleParts":{"index.js":"03cd44be-17"},"imported":[],"importedBy":[{"uid":"03cd44be-20"}]},"03cd44be-18":{"id":"/src/colors/red.ts","moduleParts":{"index.js":"03cd44be-19"},"imported":[],"importedBy":[{"uid":"03cd44be-20"}]},"03cd44be-20":{"id":"/src/colors/index.ts","moduleParts":{"index.js":"03cd44be-21"},"imported":[{"uid":"03cd44be-4"},{"uid":"03cd44be-2"},{"uid":"03cd44be-6"},{"uid":"03cd44be-8"},{"uid":"03cd44be-10"},{"uid":"03cd44be-12"},{"uid":"03cd44be-14"},{"uid":"03cd44be-16"},{"uid":"03cd44be-18"},{"uid":"03cd44be-0"}],"importedBy":[{"uid":"03cd44be-144"}]},"03cd44be-22":{"id":"/node_modules/tslib/tslib.es6.js","moduleParts":{"index.js":"03cd44be-23"},"imported":[],"importedBy":[{"uid":"03cd44be-32"},{"uid":"03cd44be-80"},{"uid":"03cd44be-120"},{"uid":"03cd44be-142"},{"uid":"03cd44be-26"},{"uid":"03cd44be-126"},{"uid":"03cd44be-138"},{"uid":"03cd44be-38"},{"uid":"03cd44be-36"},{"uid":"03cd44be-140"},{"uid":"03cd44be-46"},{"uid":"03cd44be-72"},{"uid":"03cd44be-66"},{"uid":"03cd44be-108"},{"uid":"03cd44be-130"},{"uid":"03cd44be-136"},{"uid":"03cd44be-96"},{"uid":"03cd44be-112"},{"uid":"03cd44be-94"},{"uid":"03cd44be-106"}]},"03cd44be-24":{"id":"/src/lib/utils.ts","moduleParts":{"index.js":"03cd44be-25"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-169"},{"uid":"03cd44be-170"}],"importedBy":[{"uid":"03cd44be-32"},{"uid":"03cd44be-120"},{"uid":"03cd44be-142"},{"uid":"03cd44be-26"},{"uid":"03cd44be-126"},{"uid":"03cd44be-138"},{"uid":"03cd44be-38"},{"uid":"03cd44be-36"},{"uid":"03cd44be-140"},{"uid":"03cd44be-72"},{"uid":"03cd44be-116"},{"uid":"03cd44be-122"},{"uid":"03cd44be-128"},{"uid":"03cd44be-130"},{"uid":"03cd44be-98"},{"uid":"03cd44be-104"},{"uid":"03cd44be-40"},{"uid":"03cd44be-106"}]},"03cd44be-26":{"id":"/src/components/ui/tooltip.tsx","moduleParts":{"index.js":"03cd44be-27"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-155"},{"uid":"03cd44be-24"}],"importedBy":[{"uid":"03cd44be-144"},{"uid":"03cd44be-34"},{"uid":"03cd44be-108"},{"uid":"03cd44be-116"},{"uid":"03cd44be-82"}]},"03cd44be-28":{"id":"/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","moduleParts":{"index.js":"03cd44be-29"},"imported":[{"uid":"03cd44be-149"}],"importedBy":[{"uid":"03cd44be-30"}]},"03cd44be-30":{"id":"/node_modules/@radix-ui/react-slot/dist/index.mjs","moduleParts":{"index.js":"03cd44be-31"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-28"},{"uid":"03cd44be-168"}],"importedBy":[{"uid":"03cd44be-32"}]},"03cd44be-32":{"id":"/src/components/ui/button.tsx","moduleParts":{"index.js":"03cd44be-33"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-30"},{"uid":"03cd44be-150"},{"uid":"03cd44be-24"}],"importedBy":[{"uid":"03cd44be-144"},{"uid":"03cd44be-46"},{"uid":"03cd44be-34"},{"uid":"03cd44be-108"},{"uid":"03cd44be-110"},{"uid":"03cd44be-114"},{"uid":"03cd44be-118"},{"uid":"03cd44be-122"},{"uid":"03cd44be-128"},{"uid":"03cd44be-130"},{"uid":"03cd44be-40"},{"uid":"03cd44be-82"}]},"03cd44be-34":{"id":"/src/components/chat-search/Suggestions.tsx","moduleParts":{"index.js":"03cd44be-35"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-26"},{"uid":"03cd44be-32"}],"importedBy":[{"uid":"03cd44be-140"}]},"03cd44be-36":{"id":"/src/components/ui/input.tsx","moduleParts":{"index.js":"03cd44be-37"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-24"}],"importedBy":[{"uid":"03cd44be-144"},{"uid":"03cd44be-40"}]},"03cd44be-38":{"id":"/src/components/ui/label.tsx","moduleParts":{"index.js":"03cd44be-39"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-157"},{"uid":"03cd44be-150"},{"uid":"03cd44be-24"}],"importedBy":[{"uid":"03cd44be-144"},{"uid":"03cd44be-40"}]},"03cd44be-40":{"id":"/src/components/chat-search/blocks/ActionInputForm.tsx","moduleParts":{"index.js":"03cd44be-41"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-177"},{"uid":"03cd44be-178"},{"uid":"03cd44be-160"},{"uid":"03cd44be-32"},{"uid":"03cd44be-36"},{"uid":"03cd44be-38"},{"uid":"03cd44be-24"}],"importedBy":[{"uid":"03cd44be-76"}]},"03cd44be-42":{"id":"/src/components/chat-search/blocks/ActionButtons.tsx","moduleParts":{"index.js":"03cd44be-43"},"imported":[],"importedBy":[{"uid":"03cd44be-76"}]},"03cd44be-44":{"id":"/src/components/markdown/utils/codeblock.ts","moduleParts":{"index.js":"03cd44be-45"},"imported":[],"importedBy":[{"uid":"03cd44be-46"}]},"03cd44be-46":{"id":"/src/components/markdown/CodeBlock.tsx","moduleParts":{"index.js":"03cd44be-47"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-160"},{"uid":"03cd44be-161"},{"uid":"03cd44be-162"},{"uid":"03cd44be-32"},{"uid":"03cd44be-44"}],"importedBy":[{"uid":"03cd44be-148"},{"uid":"03cd44be-72"}]},"03cd44be-48":{"id":"/src/components/markdown/Frame.tsx","moduleParts":{"index.js":"03cd44be-49"},"imported":[{"uid":"03cd44be-149"}],"importedBy":[{"uid":"03cd44be-148"},{"uid":"03cd44be-50"},{"uid":"03cd44be-52"},{"uid":"03cd44be-54"},{"uid":"03cd44be-56"},{"uid":"03cd44be-58"},{"uid":"03cd44be-60"}]},"03cd44be-50":{"id":"/src/components/markdown/embeds/Loom.tsx","moduleParts":{"index.js":"03cd44be-51"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-48"}],"importedBy":[{"uid":"03cd44be-62"}]},"03cd44be-52":{"id":"/src/components/markdown/embeds/Supademo.tsx","moduleParts":{"index.js":"03cd44be-53"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-48"}],"importedBy":[{"uid":"03cd44be-62"}]},"03cd44be-54":{"id":"/src/components/markdown/embeds/Typeform.tsx","moduleParts":{"index.js":"03cd44be-55"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-48"}],"importedBy":[{"uid":"03cd44be-62"}]},"03cd44be-56":{"id":"/src/components/markdown/embeds/Vimeo.tsx","moduleParts":{"index.js":"03cd44be-57"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-48"}],"importedBy":[{"uid":"03cd44be-62"}]},"03cd44be-58":{"id":"/src/components/markdown/embeds/Wistia.tsx","moduleParts":{"index.js":"03cd44be-59"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-48"}],"importedBy":[{"uid":"03cd44be-62"}]},"03cd44be-60":{"id":"/src/components/markdown/embeds/Youtube.tsx","moduleParts":{"index.js":"03cd44be-61"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-48"}],"importedBy":[{"uid":"03cd44be-62"}]},"03cd44be-62":{"id":"/src/components/markdown/embeds/index.tsx","moduleParts":{"index.js":"03cd44be-63"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-50"},{"uid":"03cd44be-52"},{"uid":"03cd44be-54"},{"uid":"03cd44be-56"},{"uid":"03cd44be-58"},{"uid":"03cd44be-60"}],"importedBy":[{"uid":"03cd44be-72"}]},"03cd44be-64":{"id":"/src/components/markdown/MemoizedReactMarkdown.tsx","moduleParts":{"index.js":"03cd44be-65"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-166"}],"importedBy":[{"uid":"03cd44be-148"},{"uid":"03cd44be-72"}]},"03cd44be-66":{"id":"/src/components/markdown/MermaidDiagram.tsx","moduleParts":{"index.js":"03cd44be-67"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-167"}],"importedBy":[{"uid":"03cd44be-148"},{"uid":"03cd44be-72"}]},"03cd44be-68":{"id":"/src/components/markdown/ZoomableImage.tsx","moduleParts":{"index.js":"03cd44be-69"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-158"},{"uid":"03cd44be-160"}],"importedBy":[{"uid":"03cd44be-148"},{"uid":"03cd44be-72"}]},"03cd44be-70":{"id":"/src/components/markdown/utils/stripNewLines.ts","moduleParts":{"index.js":"03cd44be-71"},"imported":[],"importedBy":[{"uid":"03cd44be-72"}]},"03cd44be-72":{"id":"/src/components/markdown/FormattedMessage.tsx","moduleParts":{"index.js":"03cd44be-73"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-163"},{"uid":"03cd44be-164"},{"uid":"03cd44be-165"},{"uid":"03cd44be-46"},{"uid":"03cd44be-62"},{"uid":"03cd44be-64"},{"uid":"03cd44be-66"},{"uid":"03cd44be-68"},{"uid":"03cd44be-70"},{"uid":"03cd44be-24"}],"importedBy":[{"uid":"03cd44be-148"},{"uid":"03cd44be-74"}]},"03cd44be-74":{"id":"/src/components/chat-search/blocks/MarkdownText.tsx","moduleParts":{"index.js":"03cd44be-75"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-72"}],"importedBy":[{"uid":"03cd44be-76"}]},"03cd44be-76":{"id":"/src/components/chat-search/AnswerBlock.tsx","moduleParts":{"index.js":"03cd44be-77"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-40"},{"uid":"03cd44be-42"},{"uid":"03cd44be-74"}],"importedBy":[{"uid":"03cd44be-108"}]},"03cd44be-78":{"id":"/src/components/chat-search/blocks/utils.ts","moduleParts":{"index.js":"03cd44be-79"},"imported":[{"uid":"03cd44be-174"}],"importedBy":[{"uid":"03cd44be-140"},{"uid":"03cd44be-108"},{"uid":"03cd44be-84"},{"uid":"03cd44be-98"}]},"03cd44be-80":{"id":"/src/components/ui/collapsible.tsx","moduleParts":{"index.js":"03cd44be-81"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-151"}],"importedBy":[{"uid":"03cd44be-144"},{"uid":"03cd44be-108"}]},"03cd44be-82":{"id":"/src/components/feedback/feedback.tsx","moduleParts":{"index.js":"03cd44be-83"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-160"},{"uid":"03cd44be-158"},{"uid":"03cd44be-32"},{"uid":"03cd44be-26"}],"importedBy":[{"uid":"03cd44be-171"}]},"03cd44be-84":{"id":"/src/components/chat-search/hooks/useAnswerList.ts","moduleParts":{"index.js":"03cd44be-85"},"imported":[{"uid":"03cd44be-174"},{"uid":"03cd44be-175"},{"uid":"03cd44be-78"}],"importedBy":[{"uid":"03cd44be-140"},{"uid":"03cd44be-88"},{"uid":"03cd44be-98"}]},"03cd44be-86":{"id":"/src/components/chat-search/hooks/useConversationId.ts","moduleParts":{"index.js":"03cd44be-87"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-176"}],"importedBy":[{"uid":"03cd44be-88"}]},"03cd44be-88":{"id":"/src/components/chat-search/ChatSearchContext.tsx","moduleParts":{"index.js":"03cd44be-89"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-84"},{"uid":"03cd44be-86"}],"importedBy":[{"uid":"03cd44be-147"},{"uid":"03cd44be-140"},{"uid":"03cd44be-90"},{"uid":"03cd44be-130"},{"uid":"03cd44be-173"},{"uid":"03cd44be-98"},{"uid":"03cd44be-100"}]},"03cd44be-90":{"id":"/src/components/chat-search/hooks/useIsChatSearchDirty.ts","moduleParts":{"index.js":"03cd44be-91"},"imported":[{"uid":"03cd44be-88"}],"importedBy":[{"uid":"03cd44be-147"},{"uid":"03cd44be-130"},{"uid":"03cd44be-159"}]},"03cd44be-92":{"id":"/src/components/chat-search/hooks/useScrollManager.ts","moduleParts":{"index.js":"03cd44be-93"},"imported":[],"importedBy":[{"uid":"03cd44be-159"}]},"03cd44be-94":{"id":"/src/lib/fetchClient.ts","moduleParts":{"index.js":"03cd44be-95"},"imported":[{"uid":"03cd44be-22"}],"importedBy":[{"uid":"03cd44be-96"}]},"03cd44be-96":{"id":"/src/lib/api.ts","moduleParts":{"index.js":"03cd44be-97"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-174"},{"uid":"03cd44be-94"}],"importedBy":[{"uid":"03cd44be-140"},{"uid":"03cd44be-136"},{"uid":"03cd44be-98"}]},"03cd44be-98":{"id":"/src/components/chat-search/hooks/useConversationLoader.ts","moduleParts":{"index.js":"03cd44be-99"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-176"},{"uid":"03cd44be-88"},{"uid":"03cd44be-84"},{"uid":"03cd44be-78"},{"uid":"03cd44be-24"},{"uid":"03cd44be-96"}],"importedBy":[{"uid":"03cd44be-159"}]},"03cd44be-100":{"id":"/src/components/chat-search/hooks/useSubscriptionManager.ts","moduleParts":{"index.js":"03cd44be-101"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-88"}],"importedBy":[{"uid":"03cd44be-159"}]},"03cd44be-102":{"id":"/src/components/chat-search/hooks/useDarkMode.ts","moduleParts":{"index.js":"03cd44be-103"},"imported":[{"uid":"03cd44be-149"}],"importedBy":[{"uid":"03cd44be-159"},{"uid":"03cd44be-104"}]},"03cd44be-104":{"id":"/src/components/chat-search/hooks/useAccessibleColor.ts","moduleParts":{"index.js":"03cd44be-105"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-24"},{"uid":"03cd44be-102"}],"importedBy":[{"uid":"03cd44be-159"}]},"03cd44be-106":{"id":"/src/components/generating-star/generating-star.tsx","moduleParts":{"index.js":"03cd44be-107"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-24"},{"uid":"03cd44be-149"},{"uid":"03cd44be-159"}],"importedBy":[{"uid":"03cd44be-172"}]},"03cd44be-108":{"id":"/src/components/chat-search/SearchResults.tsx","moduleParts":{"index.js":"03cd44be-109"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-160"},{"uid":"03cd44be-32"},{"uid":"03cd44be-76"},{"uid":"03cd44be-78"},{"uid":"03cd44be-80"},{"uid":"03cd44be-171"},{"uid":"03cd44be-172"},{"uid":"03cd44be-26"}],"importedBy":[{"uid":"03cd44be-140"}]},"03cd44be-110":{"id":"/src/components/chat-search/FollowUpQuestions.tsx","moduleParts":{"index.js":"03cd44be-111"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-158"},{"uid":"03cd44be-160"},{"uid":"03cd44be-32"}],"importedBy":[{"uid":"03cd44be-140"}]},"03cd44be-112":{"id":"/src/components/ui/icon.tsx","moduleParts":{"index.js":"03cd44be-113"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-160","dynamic":true}],"importedBy":[{"uid":"03cd44be-140"},{"uid":"03cd44be-114"}]},"03cd44be-114":{"id":"/src/components/chat-search/NextBestActions.tsx","moduleParts":{"index.js":"03cd44be-115"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-158"},{"uid":"03cd44be-112"},{"uid":"03cd44be-32"}],"importedBy":[{"uid":"03cd44be-140"}]},"03cd44be-116":{"id":"/src/components/chat-search/TimelineNavigation.tsx","moduleParts":{"index.js":"03cd44be-117"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-160"},{"uid":"03cd44be-158"},{"uid":"03cd44be-26"},{"uid":"03cd44be-24"}],"importedBy":[{"uid":"03cd44be-140"}]},"03cd44be-118":{"id":"/src/components/chat-search/ScrollToBottomArrow.tsx","moduleParts":{"index.js":"03cd44be-119"},"imported":[{"uid":"03cd44be-160"},{"uid":"03cd44be-149"},{"uid":"03cd44be-32"}],"importedBy":[{"uid":"03cd44be-140"}]},"03cd44be-120":{"id":"/src/components/ui/dropdown-menu.tsx","moduleParts":{"index.js":"03cd44be-121"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-152"},{"uid":"03cd44be-24"},{"uid":"03cd44be-153"}],"importedBy":[{"uid":"03cd44be-144"},{"uid":"03cd44be-122"}]},"03cd44be-122":{"id":"/src/components/chat-search/PrimarySearch.tsx","moduleParts":{"index.js":"03cd44be-123"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-158"},{"uid":"03cd44be-160"},{"uid":"03cd44be-32"},{"uid":"03cd44be-120"},{"uid":"03cd44be-24"}],"importedBy":[{"uid":"03cd44be-140"}]},"03cd44be-124":{"id":"/src/components/chat-search/FollowUpSearchBar.module.css","moduleParts":{"index.js":"03cd44be-125"},"imported":[],"importedBy":[{"uid":"03cd44be-128"}]},"03cd44be-126":{"id":"/src/components/ui/textarea.tsx","moduleParts":{"index.js":"03cd44be-127"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-24"}],"importedBy":[{"uid":"03cd44be-144"},{"uid":"03cd44be-128"}]},"03cd44be-128":{"id":"/src/components/chat-search/FollowUpSearchBar.tsx","moduleParts":{"index.js":"03cd44be-129"},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-160"},{"uid":"03cd44be-158"},{"uid":"03cd44be-124"},{"uid":"03cd44be-32"},{"uid":"03cd44be-126"},{"uid":"03cd44be-24"}],"importedBy":[{"uid":"03cd44be-140"}]},"03cd44be-130":{"id":"/src/components/chat-search/Header.tsx","moduleParts":{"index.js":"03cd44be-131"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-158"},{"uid":"03cd44be-160"},{"uid":"03cd44be-32"},{"uid":"03cd44be-90"},{"uid":"03cd44be-88"},{"uid":"03cd44be-24"}],"importedBy":[{"uid":"03cd44be-140"}]},"03cd44be-132":{"id":"/src/components/chat-search/text-config.ts","moduleParts":{"index.js":"03cd44be-133"},"imported":[],"importedBy":[{"uid":"03cd44be-140"}]},"03cd44be-134":{"id":"/src/lib/feature-flags.tsx","moduleParts":{"index.js":"03cd44be-135"},"imported":[{"uid":"03cd44be-149"}],"importedBy":[{"uid":"03cd44be-140"}]},"03cd44be-136":{"id":"/src/lib/hooks.ts","moduleParts":{"index.js":"03cd44be-137"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-96"}],"importedBy":[{"uid":"03cd44be-140"}]},"03cd44be-138":{"id":"/src/components/ui/scroll-area.tsx","moduleParts":{"index.js":"03cd44be-139"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-156"},{"uid":"03cd44be-24"}],"importedBy":[{"uid":"03cd44be-144"},{"uid":"03cd44be-140"}]},"03cd44be-140":{"id":"/src/components/chat-search/ChatSearch.tsx","moduleParts":{"index.js":"03cd44be-141"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-158"},{"uid":"03cd44be-34"},{"uid":"03cd44be-108"},{"uid":"03cd44be-110"},{"uid":"03cd44be-114"},{"uid":"03cd44be-116"},{"uid":"03cd44be-118"},{"uid":"03cd44be-122"},{"uid":"03cd44be-128"},{"uid":"03cd44be-130"},{"uid":"03cd44be-132"},{"uid":"03cd44be-88"},{"uid":"03cd44be-159"},{"uid":"03cd44be-84"},{"uid":"03cd44be-78"},{"uid":"03cd44be-134"},{"uid":"03cd44be-24"},{"uid":"03cd44be-136"},{"uid":"03cd44be-96"},{"uid":"03cd44be-138"},{"uid":"03cd44be-112"}],"importedBy":[{"uid":"03cd44be-147"}]},"03cd44be-142":{"id":"/src/components/ui/switch.tsx","moduleParts":{"index.js":"03cd44be-143"},"imported":[{"uid":"03cd44be-22"},{"uid":"03cd44be-149"},{"uid":"03cd44be-154"},{"uid":"03cd44be-24"}],"importedBy":[{"uid":"03cd44be-144"}]},"03cd44be-144":{"id":"/src/index.ts","moduleParts":{"index.js":"03cd44be-145"},"imported":[{"uid":"03cd44be-146"},{"uid":"03cd44be-20"},{"uid":"03cd44be-147"},{"uid":"03cd44be-148"},{"uid":"03cd44be-32"},{"uid":"03cd44be-80"},{"uid":"03cd44be-120"},{"uid":"03cd44be-142"},{"uid":"03cd44be-26"},{"uid":"03cd44be-126"},{"uid":"03cd44be-138"},{"uid":"03cd44be-38"},{"uid":"03cd44be-36"}],"importedBy":[],"isEntry":true},"03cd44be-146":{"id":"/src/global.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-144"}]},"03cd44be-147":{"id":"/src/components/chat-search/index.ts","moduleParts":{},"imported":[{"uid":"03cd44be-140"},{"uid":"03cd44be-88"},{"uid":"03cd44be-90"}],"importedBy":[{"uid":"03cd44be-144"}]},"03cd44be-148":{"id":"/src/components/markdown/index.ts","moduleParts":{},"imported":[{"uid":"03cd44be-46"},{"uid":"03cd44be-72"},{"uid":"03cd44be-48"},{"uid":"03cd44be-64"},{"uid":"03cd44be-66"},{"uid":"03cd44be-68"}],"importedBy":[{"uid":"03cd44be-144"}]},"03cd44be-149":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-32"},{"uid":"03cd44be-80"},{"uid":"03cd44be-120"},{"uid":"03cd44be-142"},{"uid":"03cd44be-26"},{"uid":"03cd44be-126"},{"uid":"03cd44be-138"},{"uid":"03cd44be-38"},{"uid":"03cd44be-36"},{"uid":"03cd44be-140"},{"uid":"03cd44be-88"},{"uid":"03cd44be-46"},{"uid":"03cd44be-72"},{"uid":"03cd44be-48"},{"uid":"03cd44be-64"},{"uid":"03cd44be-66"},{"uid":"03cd44be-68"},{"uid":"03cd44be-30"},{"uid":"03cd44be-24"},{"uid":"03cd44be-34"},{"uid":"03cd44be-108"},{"uid":"03cd44be-110"},{"uid":"03cd44be-114"},{"uid":"03cd44be-116"},{"uid":"03cd44be-118"},{"uid":"03cd44be-122"},{"uid":"03cd44be-128"},{"uid":"03cd44be-130"},{"uid":"03cd44be-134"},{"uid":"03cd44be-136"},{"uid":"03cd44be-112"},{"uid":"03cd44be-86"},{"uid":"03cd44be-62"},{"uid":"03cd44be-28"},{"uid":"03cd44be-76"},{"uid":"03cd44be-173"},{"uid":"03cd44be-98"},{"uid":"03cd44be-100"},{"uid":"03cd44be-102"},{"uid":"03cd44be-104"},{"uid":"03cd44be-50"},{"uid":"03cd44be-52"},{"uid":"03cd44be-54"},{"uid":"03cd44be-56"},{"uid":"03cd44be-58"},{"uid":"03cd44be-60"},{"uid":"03cd44be-40"},{"uid":"03cd44be-74"},{"uid":"03cd44be-82"},{"uid":"03cd44be-106"}],"isExternal":true},"03cd44be-150":{"id":"class-variance-authority","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-32"},{"uid":"03cd44be-38"}],"isExternal":true},"03cd44be-151":{"id":"@radix-ui/react-collapsible","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-80"}],"isExternal":true},"03cd44be-152":{"id":"@radix-ui/react-dropdown-menu","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-120"}],"isExternal":true},"03cd44be-153":{"id":"@radix-ui/react-icons","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-120"}],"isExternal":true},"03cd44be-154":{"id":"@radix-ui/react-switch","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-142"}],"isExternal":true},"03cd44be-155":{"id":"@radix-ui/react-tooltip","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-26"}],"isExternal":true},"03cd44be-156":{"id":"@radix-ui/react-scroll-area","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-138"}],"isExternal":true},"03cd44be-157":{"id":"@radix-ui/react-label","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-38"}],"isExternal":true},"03cd44be-158":{"id":"framer-motion","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-140"},{"uid":"03cd44be-68"},{"uid":"03cd44be-110"},{"uid":"03cd44be-114"},{"uid":"03cd44be-116"},{"uid":"03cd44be-122"},{"uid":"03cd44be-128"},{"uid":"03cd44be-130"},{"uid":"03cd44be-82"}],"isExternal":true},"03cd44be-159":{"id":"/src/components/chat-search/hooks/index.ts","moduleParts":{},"imported":[{"uid":"03cd44be-90"},{"uid":"03cd44be-92"},{"uid":"03cd44be-173"},{"uid":"03cd44be-98"},{"uid":"03cd44be-100"},{"uid":"03cd44be-102"},{"uid":"03cd44be-104"}],"importedBy":[{"uid":"03cd44be-140"},{"uid":"03cd44be-106"}]},"03cd44be-160":{"id":"@phosphor-icons/react","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-46"},{"uid":"03cd44be-68"},{"uid":"03cd44be-108"},{"uid":"03cd44be-110"},{"uid":"03cd44be-116"},{"uid":"03cd44be-118"},{"uid":"03cd44be-122"},{"uid":"03cd44be-128"},{"uid":"03cd44be-130"},{"uid":"03cd44be-112"},{"uid":"03cd44be-40"},{"uid":"03cd44be-82"}],"isExternal":true},"03cd44be-161":{"id":"react-syntax-highlighter","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-46"}],"isExternal":true},"03cd44be-162":{"id":"react-syntax-highlighter/dist/esm/styles/prism","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-46"}],"isExternal":true},"03cd44be-163":{"id":"rehype-raw","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-72"}],"isExternal":true},"03cd44be-164":{"id":"remark-gfm","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-72"}],"isExternal":true},"03cd44be-165":{"id":"path-to-regexp","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-72"}],"isExternal":true},"03cd44be-166":{"id":"react-markdown","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-64"}],"isExternal":true},"03cd44be-167":{"id":"mermaid","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-66"}],"isExternal":true},"03cd44be-168":{"id":"react/jsx-runtime","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-30"}],"isExternal":true},"03cd44be-169":{"id":"clsx","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-24"}],"isExternal":true},"03cd44be-170":{"id":"tailwind-merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-24"}],"isExternal":true},"03cd44be-171":{"id":"/src/components/feedback/index.ts","moduleParts":{},"imported":[{"uid":"03cd44be-82"}],"importedBy":[{"uid":"03cd44be-108"}]},"03cd44be-172":{"id":"/src/components/generating-star/index.ts","moduleParts":{},"imported":[{"uid":"03cd44be-106"}],"importedBy":[{"uid":"03cd44be-108"}]},"03cd44be-173":{"id":"/src/components/chat-search/hooks/useUrlManager.ts","moduleParts":{},"imported":[{"uid":"03cd44be-149"},{"uid":"03cd44be-88"}],"importedBy":[{"uid":"03cd44be-159"}]},"03cd44be-174":{"id":"@paralleldrive/cuid2","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-84"},{"uid":"03cd44be-78"},{"uid":"03cd44be-96"}],"isExternal":true},"03cd44be-175":{"id":"use-immer","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-84"}],"isExternal":true},"03cd44be-176":{"id":"react-use","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-86"},{"uid":"03cd44be-98"}],"isExternal":true},"03cd44be-177":{"id":"react-hook-form","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-40"}],"isExternal":true},"03cd44be-178":{"id":"@hookform/resolvers/ajv","moduleParts":{},"imported":[],"importedBy":[{"uid":"03cd44be-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":"931c5147-1","name":"customColor.ts"},{"uid":"931c5147-3","name":"dark.ts"},{"uid":"931c5147-5","name":"primary.ts"},{"uid":"931c5147-7","name":"orange.ts"},{"uid":"931c5147-9","name":"yellow.ts"},{"uid":"931c5147-11","name":"green.ts"},{"uid":"931c5147-13","name":"blue.ts"},{"uid":"931c5147-15","name":"purple.ts"},{"uid":"931c5147-17","name":"pink.ts"},{"uid":"931c5147-19","name":"red.ts"},{"uid":"931c5147-21","name":"index.ts"}]},{"name":"lib","children":[{"uid":"931c5147-25","name":"utils.ts"},{"uid":"931c5147-95","name":"fetchClient.ts"},{"uid":"931c5147-97","name":"api.ts"},{"uid":"931c5147-135","name":"feature-flags.tsx"},{"uid":"931c5147-137","name":"hooks.ts"}]},{"name":"components","children":[{"name":"ui","children":[{"uid":"931c5147-27","name":"tooltip.tsx"},{"uid":"931c5147-33","name":"button.tsx"},{"uid":"931c5147-37","name":"input.tsx"},{"uid":"931c5147-39","name":"label.tsx"},{"uid":"931c5147-81","name":"collapsible.tsx"},{"uid":"931c5147-113","name":"icon.tsx"},{"uid":"931c5147-121","name":"dropdown-menu.tsx"},{"uid":"931c5147-127","name":"textarea.tsx"},{"uid":"931c5147-139","name":"scroll-area.tsx"},{"uid":"931c5147-143","name":"switch.tsx"},{"uid":"931c5147-145","name":"select.tsx"},{"uid":"931c5147-149","name":"calendar.tsx"},{"uid":"931c5147-151","name":"popover.tsx"}]},{"name":"chat-search","children":[{"uid":"931c5147-35","name":"Suggestions.tsx"},{"name":"blocks","children":[{"uid":"931c5147-41","name":"ActionInputForm.tsx"},{"uid":"931c5147-43","name":"ActionButtons.tsx"},{"uid":"931c5147-75","name":"MarkdownText.tsx"},{"uid":"931c5147-79","name":"utils.ts"}]},{"uid":"931c5147-77","name":"AnswerBlock.tsx"},{"name":"hooks","children":[{"uid":"931c5147-85","name":"useAnswerList.ts"},{"uid":"931c5147-87","name":"useConversationId.ts"},{"uid":"931c5147-91","name":"useIsChatSearchDirty.ts"},{"uid":"931c5147-93","name":"useScrollManager.ts"},{"uid":"931c5147-99","name":"useConversationLoader.ts"},{"uid":"931c5147-101","name":"useSubscriptionManager.ts"},{"uid":"931c5147-103","name":"useDarkMode.ts"},{"uid":"931c5147-105","name":"useAccessibleColor.ts"}]},{"uid":"931c5147-89","name":"ChatSearchContext.tsx"},{"uid":"931c5147-109","name":"SearchResults.tsx"},{"uid":"931c5147-111","name":"FollowUpQuestions.tsx"},{"uid":"931c5147-115","name":"NextBestActions.tsx"},{"uid":"931c5147-117","name":"TimelineNavigation.tsx"},{"uid":"931c5147-119","name":"ScrollToBottomArrow.tsx"},{"uid":"931c5147-123","name":"PrimarySearch.tsx"},{"uid":"931c5147-125","name":"FollowUpSearchBar.module.css"},{"uid":"931c5147-129","name":"FollowUpSearchBar.tsx"},{"uid":"931c5147-131","name":"Header.tsx"},{"uid":"931c5147-133","name":"text-config.ts"},{"uid":"931c5147-141","name":"ChatSearch.tsx"}]},{"name":"markdown","children":[{"name":"utils","children":[{"uid":"931c5147-45","name":"codeblock.ts"},{"uid":"931c5147-71","name":"stripNewLines.ts"}]},{"uid":"931c5147-47","name":"CodeBlock.tsx"},{"uid":"931c5147-49","name":"Frame.tsx"},{"name":"embeds","children":[{"uid":"931c5147-51","name":"Loom.tsx"},{"uid":"931c5147-53","name":"Supademo.tsx"},{"uid":"931c5147-55","name":"Typeform.tsx"},{"uid":"931c5147-57","name":"Vimeo.tsx"},{"uid":"931c5147-59","name":"Wistia.tsx"},{"uid":"931c5147-61","name":"Youtube.tsx"},{"uid":"931c5147-63","name":"index.tsx"}]},{"uid":"931c5147-65","name":"MemoizedReactMarkdown.tsx"},{"uid":"931c5147-67","name":"MermaidDiagram.tsx"},{"uid":"931c5147-69","name":"ZoomableImage.tsx"},{"uid":"931c5147-73","name":"FormattedMessage.tsx"}]},{"name":"feedback/feedback.tsx","uid":"931c5147-83"},{"name":"generating-star/generating-star.tsx","uid":"931c5147-107"},{"name":"select/simpleSelect.tsx","uid":"931c5147-147"},{"name":"date-picker/date-picker.tsx","uid":"931c5147-153"}]},{"uid":"931c5147-155","name":"index.ts"}]},{"name":"node_modules","children":[{"name":"tslib/tslib.es6.js","uid":"931c5147-23"},{"name":"@radix-ui","children":[{"name":"react-compose-refs/dist/index.mjs","uid":"931c5147-29"},{"name":"react-slot/dist/index.mjs","uid":"931c5147-31"}]}]}]}],"isRoot":true},"nodeParts":{"931c5147-1":{"renderedLength":354,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-0"},"931c5147-3":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-2"},"931c5147-5":{"renderedLength":344,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-4"},"931c5147-7":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-6"},"931c5147-9":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-8"},"931c5147-11":{"renderedLength":248,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-10"},"931c5147-13":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-12"},"931c5147-15":{"renderedLength":249,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-14"},"931c5147-17":{"renderedLength":247,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-16"},"931c5147-19":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-18"},"931c5147-21":{"renderedLength":127,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-20"},"931c5147-23":{"renderedLength":2228,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-22"},"931c5147-25":{"renderedLength":2527,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-24"},"931c5147-27":{"renderedLength":1416,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-26"},"931c5147-29":{"renderedLength":802,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-28"},"931c5147-31":{"renderedLength":3014,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-30"},"931c5147-33":{"renderedLength":1710,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-32"},"931c5147-35":{"renderedLength":1526,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-34"},"931c5147-37":{"renderedLength":626,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-36"},"931c5147-39":{"renderedLength":407,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-38"},"931c5147-41":{"renderedLength":3464,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-40"},"931c5147-43":{"renderedLength":56,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-42"},"931c5147-45":{"renderedLength":944,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-44"},"931c5147-47":{"renderedLength":2826,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-46"},"931c5147-49":{"renderedLength":1997,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-48"},"931c5147-51":{"renderedLength":349,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-50"},"931c5147-53":{"renderedLength":279,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-52"},"931c5147-55":{"renderedLength":392,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-54"},"931c5147-57":{"renderedLength":1011,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-56"},"931c5147-59":{"renderedLength":1864,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-58"},"931c5147-61":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-60"},"931c5147-63":{"renderedLength":768,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-62"},"931c5147-65":{"renderedLength":119,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-64"},"931c5147-67":{"renderedLength":1855,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-66"},"931c5147-69":{"renderedLength":4088,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-68"},"931c5147-71":{"renderedLength":75,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-70"},"931c5147-73":{"renderedLength":8796,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-72"},"931c5147-75":{"renderedLength":1021,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-74"},"931c5147-77":{"renderedLength":511,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-76"},"931c5147-79":{"renderedLength":600,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-78"},"931c5147-81":{"renderedLength":987,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-80"},"931c5147-83":{"renderedLength":4585,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-82"},"931c5147-85":{"renderedLength":8610,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-84"},"931c5147-87":{"renderedLength":1664,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-86"},"931c5147-89":{"renderedLength":2227,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-88"},"931c5147-91":{"renderedLength":177,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-90"},"931c5147-93":{"renderedLength":1409,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-92"},"931c5147-95":{"renderedLength":3720,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-94"},"931c5147-97":{"renderedLength":3860,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-96"},"931c5147-99":{"renderedLength":2797,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-98"},"931c5147-101":{"renderedLength":1130,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-100"},"931c5147-103":{"renderedLength":521,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-102"},"931c5147-105":{"renderedLength":921,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-104"},"931c5147-107":{"renderedLength":2637,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-106"},"931c5147-109":{"renderedLength":6454,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-108"},"931c5147-111":{"renderedLength":1207,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-110"},"931c5147-113":{"renderedLength":980,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-112"},"931c5147-115":{"renderedLength":3759,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-114"},"931c5147-117":{"renderedLength":4169,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-116"},"931c5147-119":{"renderedLength":335,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-118"},"931c5147-121":{"renderedLength":6222,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-120"},"931c5147-123":{"renderedLength":12791,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-122"},"931c5147-125":{"renderedLength":87,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-124"},"931c5147-127":{"renderedLength":527,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-126"},"931c5147-129":{"renderedLength":3631,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-128"},"931c5147-131":{"renderedLength":2164,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-130"},"931c5147-133":{"renderedLength":2318,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-132"},"931c5147-135":{"renderedLength":246,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-134"},"931c5147-137":{"renderedLength":1815,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-136"},"931c5147-139":{"renderedLength":1348,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-138"},"931c5147-141":{"renderedLength":27643,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-140"},"931c5147-143":{"renderedLength":922,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-142"},"931c5147-145":{"renderedLength":3678,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-144"},"931c5147-147":{"renderedLength":673,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-146"},"931c5147-149":{"renderedLength":373,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-148"},"931c5147-151":{"renderedLength":983,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-150"},"931c5147-153":{"renderedLength":711,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-152"},"931c5147-155":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"931c5147-154"}},"nodeMetas":{"931c5147-0":{"id":"/src/colors/customColor.ts","moduleParts":{"index.js":"931c5147-1"},"imported":[],"importedBy":[{"uid":"931c5147-20"},{"uid":"931c5147-4"}]},"931c5147-2":{"id":"/src/colors/dark.ts","moduleParts":{"index.js":"931c5147-3"},"imported":[],"importedBy":[{"uid":"931c5147-20"},{"uid":"931c5147-4"}]},"931c5147-4":{"id":"/src/colors/primary.ts","moduleParts":{"index.js":"931c5147-5"},"imported":[{"uid":"931c5147-0"},{"uid":"931c5147-2"}],"importedBy":[{"uid":"931c5147-20"}]},"931c5147-6":{"id":"/src/colors/orange.ts","moduleParts":{"index.js":"931c5147-7"},"imported":[],"importedBy":[{"uid":"931c5147-20"}]},"931c5147-8":{"id":"/src/colors/yellow.ts","moduleParts":{"index.js":"931c5147-9"},"imported":[],"importedBy":[{"uid":"931c5147-20"}]},"931c5147-10":{"id":"/src/colors/green.ts","moduleParts":{"index.js":"931c5147-11"},"imported":[],"importedBy":[{"uid":"931c5147-20"}]},"931c5147-12":{"id":"/src/colors/blue.ts","moduleParts":{"index.js":"931c5147-13"},"imported":[],"importedBy":[{"uid":"931c5147-20"}]},"931c5147-14":{"id":"/src/colors/purple.ts","moduleParts":{"index.js":"931c5147-15"},"imported":[],"importedBy":[{"uid":"931c5147-20"}]},"931c5147-16":{"id":"/src/colors/pink.ts","moduleParts":{"index.js":"931c5147-17"},"imported":[],"importedBy":[{"uid":"931c5147-20"}]},"931c5147-18":{"id":"/src/colors/red.ts","moduleParts":{"index.js":"931c5147-19"},"imported":[],"importedBy":[{"uid":"931c5147-20"}]},"931c5147-20":{"id":"/src/colors/index.ts","moduleParts":{"index.js":"931c5147-21"},"imported":[{"uid":"931c5147-4"},{"uid":"931c5147-2"},{"uid":"931c5147-6"},{"uid":"931c5147-8"},{"uid":"931c5147-10"},{"uid":"931c5147-12"},{"uid":"931c5147-14"},{"uid":"931c5147-16"},{"uid":"931c5147-18"},{"uid":"931c5147-0"}],"importedBy":[{"uid":"931c5147-154"}]},"931c5147-22":{"id":"/node_modules/tslib/tslib.es6.js","moduleParts":{"index.js":"931c5147-23"},"imported":[],"importedBy":[{"uid":"931c5147-32"},{"uid":"931c5147-80"},{"uid":"931c5147-120"},{"uid":"931c5147-142"},{"uid":"931c5147-26"},{"uid":"931c5147-126"},{"uid":"931c5147-138"},{"uid":"931c5147-38"},{"uid":"931c5147-36"},{"uid":"931c5147-140"},{"uid":"931c5147-46"},{"uid":"931c5147-72"},{"uid":"931c5147-66"},{"uid":"931c5147-108"},{"uid":"931c5147-130"},{"uid":"931c5147-136"},{"uid":"931c5147-96"},{"uid":"931c5147-112"},{"uid":"931c5147-144"},{"uid":"931c5147-148"},{"uid":"931c5147-150"},{"uid":"931c5147-94"},{"uid":"931c5147-106"}]},"931c5147-24":{"id":"/src/lib/utils.ts","moduleParts":{"index.js":"931c5147-25"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-181"},{"uid":"931c5147-182"}],"importedBy":[{"uid":"931c5147-32"},{"uid":"931c5147-120"},{"uid":"931c5147-142"},{"uid":"931c5147-26"},{"uid":"931c5147-126"},{"uid":"931c5147-138"},{"uid":"931c5147-38"},{"uid":"931c5147-36"},{"uid":"931c5147-140"},{"uid":"931c5147-72"},{"uid":"931c5147-146"},{"uid":"931c5147-152"},{"uid":"931c5147-116"},{"uid":"931c5147-122"},{"uid":"931c5147-128"},{"uid":"931c5147-130"},{"uid":"931c5147-144"},{"uid":"931c5147-148"},{"uid":"931c5147-150"},{"uid":"931c5147-98"},{"uid":"931c5147-104"},{"uid":"931c5147-40"},{"uid":"931c5147-106"}]},"931c5147-26":{"id":"/src/components/ui/tooltip.tsx","moduleParts":{"index.js":"931c5147-27"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-167"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-154"},{"uid":"931c5147-34"},{"uid":"931c5147-108"},{"uid":"931c5147-116"},{"uid":"931c5147-82"}]},"931c5147-28":{"id":"/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","moduleParts":{"index.js":"931c5147-29"},"imported":[{"uid":"931c5147-161"}],"importedBy":[{"uid":"931c5147-30"}]},"931c5147-30":{"id":"/node_modules/@radix-ui/react-slot/dist/index.mjs","moduleParts":{"index.js":"931c5147-31"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-28"},{"uid":"931c5147-180"}],"importedBy":[{"uid":"931c5147-32"}]},"931c5147-32":{"id":"/src/components/ui/button.tsx","moduleParts":{"index.js":"931c5147-33"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-30"},{"uid":"931c5147-162"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-154"},{"uid":"931c5147-46"},{"uid":"931c5147-152"},{"uid":"931c5147-34"},{"uid":"931c5147-108"},{"uid":"931c5147-110"},{"uid":"931c5147-114"},{"uid":"931c5147-118"},{"uid":"931c5147-122"},{"uid":"931c5147-128"},{"uid":"931c5147-130"},{"uid":"931c5147-40"},{"uid":"931c5147-82"}]},"931c5147-34":{"id":"/src/components/chat-search/Suggestions.tsx","moduleParts":{"index.js":"931c5147-35"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-26"},{"uid":"931c5147-32"}],"importedBy":[{"uid":"931c5147-140"}]},"931c5147-36":{"id":"/src/components/ui/input.tsx","moduleParts":{"index.js":"931c5147-37"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-154"},{"uid":"931c5147-40"}]},"931c5147-38":{"id":"/src/components/ui/label.tsx","moduleParts":{"index.js":"931c5147-39"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-169"},{"uid":"931c5147-162"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-154"},{"uid":"931c5147-40"}]},"931c5147-40":{"id":"/src/components/chat-search/blocks/ActionInputForm.tsx","moduleParts":{"index.js":"931c5147-41"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-195"},{"uid":"931c5147-196"},{"uid":"931c5147-172"},{"uid":"931c5147-32"},{"uid":"931c5147-36"},{"uid":"931c5147-38"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-76"}]},"931c5147-42":{"id":"/src/components/chat-search/blocks/ActionButtons.tsx","moduleParts":{"index.js":"931c5147-43"},"imported":[],"importedBy":[{"uid":"931c5147-76"}]},"931c5147-44":{"id":"/src/components/markdown/utils/codeblock.ts","moduleParts":{"index.js":"931c5147-45"},"imported":[],"importedBy":[{"uid":"931c5147-46"}]},"931c5147-46":{"id":"/src/components/markdown/CodeBlock.tsx","moduleParts":{"index.js":"931c5147-47"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-172"},{"uid":"931c5147-173"},{"uid":"931c5147-174"},{"uid":"931c5147-32"},{"uid":"931c5147-44"}],"importedBy":[{"uid":"931c5147-158"},{"uid":"931c5147-72"}]},"931c5147-48":{"id":"/src/components/markdown/Frame.tsx","moduleParts":{"index.js":"931c5147-49"},"imported":[{"uid":"931c5147-161"}],"importedBy":[{"uid":"931c5147-158"},{"uid":"931c5147-50"},{"uid":"931c5147-52"},{"uid":"931c5147-54"},{"uid":"931c5147-56"},{"uid":"931c5147-58"},{"uid":"931c5147-60"}]},"931c5147-50":{"id":"/src/components/markdown/embeds/Loom.tsx","moduleParts":{"index.js":"931c5147-51"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-48"}],"importedBy":[{"uid":"931c5147-62"}]},"931c5147-52":{"id":"/src/components/markdown/embeds/Supademo.tsx","moduleParts":{"index.js":"931c5147-53"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-48"}],"importedBy":[{"uid":"931c5147-62"}]},"931c5147-54":{"id":"/src/components/markdown/embeds/Typeform.tsx","moduleParts":{"index.js":"931c5147-55"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-48"}],"importedBy":[{"uid":"931c5147-62"}]},"931c5147-56":{"id":"/src/components/markdown/embeds/Vimeo.tsx","moduleParts":{"index.js":"931c5147-57"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-48"}],"importedBy":[{"uid":"931c5147-62"}]},"931c5147-58":{"id":"/src/components/markdown/embeds/Wistia.tsx","moduleParts":{"index.js":"931c5147-59"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-48"}],"importedBy":[{"uid":"931c5147-62"}]},"931c5147-60":{"id":"/src/components/markdown/embeds/Youtube.tsx","moduleParts":{"index.js":"931c5147-61"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-48"}],"importedBy":[{"uid":"931c5147-62"}]},"931c5147-62":{"id":"/src/components/markdown/embeds/index.tsx","moduleParts":{"index.js":"931c5147-63"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-50"},{"uid":"931c5147-52"},{"uid":"931c5147-54"},{"uid":"931c5147-56"},{"uid":"931c5147-58"},{"uid":"931c5147-60"}],"importedBy":[{"uid":"931c5147-72"}]},"931c5147-64":{"id":"/src/components/markdown/MemoizedReactMarkdown.tsx","moduleParts":{"index.js":"931c5147-65"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-178"}],"importedBy":[{"uid":"931c5147-158"},{"uid":"931c5147-72"}]},"931c5147-66":{"id":"/src/components/markdown/MermaidDiagram.tsx","moduleParts":{"index.js":"931c5147-67"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-179"}],"importedBy":[{"uid":"931c5147-158"},{"uid":"931c5147-72"}]},"931c5147-68":{"id":"/src/components/markdown/ZoomableImage.tsx","moduleParts":{"index.js":"931c5147-69"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-170"},{"uid":"931c5147-172"}],"importedBy":[{"uid":"931c5147-158"},{"uid":"931c5147-72"}]},"931c5147-70":{"id":"/src/components/markdown/utils/stripNewLines.ts","moduleParts":{"index.js":"931c5147-71"},"imported":[],"importedBy":[{"uid":"931c5147-72"}]},"931c5147-72":{"id":"/src/components/markdown/FormattedMessage.tsx","moduleParts":{"index.js":"931c5147-73"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-175"},{"uid":"931c5147-176"},{"uid":"931c5147-177"},{"uid":"931c5147-46"},{"uid":"931c5147-62"},{"uid":"931c5147-64"},{"uid":"931c5147-66"},{"uid":"931c5147-68"},{"uid":"931c5147-70"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-158"},{"uid":"931c5147-74"}]},"931c5147-74":{"id":"/src/components/chat-search/blocks/MarkdownText.tsx","moduleParts":{"index.js":"931c5147-75"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-72"}],"importedBy":[{"uid":"931c5147-76"}]},"931c5147-76":{"id":"/src/components/chat-search/AnswerBlock.tsx","moduleParts":{"index.js":"931c5147-77"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-40"},{"uid":"931c5147-42"},{"uid":"931c5147-74"}],"importedBy":[{"uid":"931c5147-108"}]},"931c5147-78":{"id":"/src/components/chat-search/blocks/utils.ts","moduleParts":{"index.js":"931c5147-79"},"imported":[{"uid":"931c5147-189"}],"importedBy":[{"uid":"931c5147-140"},{"uid":"931c5147-108"},{"uid":"931c5147-84"},{"uid":"931c5147-98"}]},"931c5147-80":{"id":"/src/components/ui/collapsible.tsx","moduleParts":{"index.js":"931c5147-81"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-163"}],"importedBy":[{"uid":"931c5147-154"},{"uid":"931c5147-108"}]},"931c5147-82":{"id":"/src/components/feedback/feedback.tsx","moduleParts":{"index.js":"931c5147-83"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-172"},{"uid":"931c5147-170"},{"uid":"931c5147-32"},{"uid":"931c5147-26"}],"importedBy":[{"uid":"931c5147-186"}]},"931c5147-84":{"id":"/src/components/chat-search/hooks/useAnswerList.ts","moduleParts":{"index.js":"931c5147-85"},"imported":[{"uid":"931c5147-189"},{"uid":"931c5147-190"},{"uid":"931c5147-78"}],"importedBy":[{"uid":"931c5147-140"},{"uid":"931c5147-88"},{"uid":"931c5147-98"}]},"931c5147-86":{"id":"/src/components/chat-search/hooks/useConversationId.ts","moduleParts":{"index.js":"931c5147-87"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-191"}],"importedBy":[{"uid":"931c5147-88"}]},"931c5147-88":{"id":"/src/components/chat-search/ChatSearchContext.tsx","moduleParts":{"index.js":"931c5147-89"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-84"},{"uid":"931c5147-86"}],"importedBy":[{"uid":"931c5147-157"},{"uid":"931c5147-140"},{"uid":"931c5147-90"},{"uid":"931c5147-130"},{"uid":"931c5147-188"},{"uid":"931c5147-98"},{"uid":"931c5147-100"}]},"931c5147-90":{"id":"/src/components/chat-search/hooks/useIsChatSearchDirty.ts","moduleParts":{"index.js":"931c5147-91"},"imported":[{"uid":"931c5147-88"}],"importedBy":[{"uid":"931c5147-157"},{"uid":"931c5147-130"},{"uid":"931c5147-171"}]},"931c5147-92":{"id":"/src/components/chat-search/hooks/useScrollManager.ts","moduleParts":{"index.js":"931c5147-93"},"imported":[],"importedBy":[{"uid":"931c5147-171"}]},"931c5147-94":{"id":"/src/lib/fetchClient.ts","moduleParts":{"index.js":"931c5147-95"},"imported":[{"uid":"931c5147-22"}],"importedBy":[{"uid":"931c5147-96"}]},"931c5147-96":{"id":"/src/lib/api.ts","moduleParts":{"index.js":"931c5147-97"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-189"},{"uid":"931c5147-94"}],"importedBy":[{"uid":"931c5147-140"},{"uid":"931c5147-136"},{"uid":"931c5147-98"}]},"931c5147-98":{"id":"/src/components/chat-search/hooks/useConversationLoader.ts","moduleParts":{"index.js":"931c5147-99"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-191"},{"uid":"931c5147-88"},{"uid":"931c5147-84"},{"uid":"931c5147-78"},{"uid":"931c5147-24"},{"uid":"931c5147-96"}],"importedBy":[{"uid":"931c5147-171"}]},"931c5147-100":{"id":"/src/components/chat-search/hooks/useSubscriptionManager.ts","moduleParts":{"index.js":"931c5147-101"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-88"}],"importedBy":[{"uid":"931c5147-171"}]},"931c5147-102":{"id":"/src/components/chat-search/hooks/useDarkMode.ts","moduleParts":{"index.js":"931c5147-103"},"imported":[{"uid":"931c5147-161"}],"importedBy":[{"uid":"931c5147-171"},{"uid":"931c5147-104"}]},"931c5147-104":{"id":"/src/components/chat-search/hooks/useAccessibleColor.ts","moduleParts":{"index.js":"931c5147-105"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-24"},{"uid":"931c5147-102"}],"importedBy":[{"uid":"931c5147-171"}]},"931c5147-106":{"id":"/src/components/generating-star/generating-star.tsx","moduleParts":{"index.js":"931c5147-107"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-24"},{"uid":"931c5147-161"},{"uid":"931c5147-171"}],"importedBy":[{"uid":"931c5147-187"}]},"931c5147-108":{"id":"/src/components/chat-search/SearchResults.tsx","moduleParts":{"index.js":"931c5147-109"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-172"},{"uid":"931c5147-32"},{"uid":"931c5147-76"},{"uid":"931c5147-78"},{"uid":"931c5147-80"},{"uid":"931c5147-186"},{"uid":"931c5147-187"},{"uid":"931c5147-26"}],"importedBy":[{"uid":"931c5147-140"}]},"931c5147-110":{"id":"/src/components/chat-search/FollowUpQuestions.tsx","moduleParts":{"index.js":"931c5147-111"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-170"},{"uid":"931c5147-172"},{"uid":"931c5147-32"}],"importedBy":[{"uid":"931c5147-140"}]},"931c5147-112":{"id":"/src/components/ui/icon.tsx","moduleParts":{"index.js":"931c5147-113"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-172","dynamic":true}],"importedBy":[{"uid":"931c5147-140"},{"uid":"931c5147-114"}]},"931c5147-114":{"id":"/src/components/chat-search/NextBestActions.tsx","moduleParts":{"index.js":"931c5147-115"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-170"},{"uid":"931c5147-112"},{"uid":"931c5147-32"}],"importedBy":[{"uid":"931c5147-140"}]},"931c5147-116":{"id":"/src/components/chat-search/TimelineNavigation.tsx","moduleParts":{"index.js":"931c5147-117"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-172"},{"uid":"931c5147-170"},{"uid":"931c5147-26"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-140"}]},"931c5147-118":{"id":"/src/components/chat-search/ScrollToBottomArrow.tsx","moduleParts":{"index.js":"931c5147-119"},"imported":[{"uid":"931c5147-172"},{"uid":"931c5147-161"},{"uid":"931c5147-32"}],"importedBy":[{"uid":"931c5147-140"}]},"931c5147-120":{"id":"/src/components/ui/dropdown-menu.tsx","moduleParts":{"index.js":"931c5147-121"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-164"},{"uid":"931c5147-24"},{"uid":"931c5147-165"}],"importedBy":[{"uid":"931c5147-154"},{"uid":"931c5147-122"}]},"931c5147-122":{"id":"/src/components/chat-search/PrimarySearch.tsx","moduleParts":{"index.js":"931c5147-123"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-170"},{"uid":"931c5147-172"},{"uid":"931c5147-32"},{"uid":"931c5147-120"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-140"}]},"931c5147-124":{"id":"/src/components/chat-search/FollowUpSearchBar.module.css","moduleParts":{"index.js":"931c5147-125"},"imported":[],"importedBy":[{"uid":"931c5147-128"}]},"931c5147-126":{"id":"/src/components/ui/textarea.tsx","moduleParts":{"index.js":"931c5147-127"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-154"},{"uid":"931c5147-128"}]},"931c5147-128":{"id":"/src/components/chat-search/FollowUpSearchBar.tsx","moduleParts":{"index.js":"931c5147-129"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-172"},{"uid":"931c5147-170"},{"uid":"931c5147-124"},{"uid":"931c5147-32"},{"uid":"931c5147-126"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-140"}]},"931c5147-130":{"id":"/src/components/chat-search/Header.tsx","moduleParts":{"index.js":"931c5147-131"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-170"},{"uid":"931c5147-172"},{"uid":"931c5147-32"},{"uid":"931c5147-90"},{"uid":"931c5147-88"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-140"}]},"931c5147-132":{"id":"/src/components/chat-search/text-config.ts","moduleParts":{"index.js":"931c5147-133"},"imported":[],"importedBy":[{"uid":"931c5147-140"}]},"931c5147-134":{"id":"/src/lib/feature-flags.tsx","moduleParts":{"index.js":"931c5147-135"},"imported":[{"uid":"931c5147-161"}],"importedBy":[{"uid":"931c5147-140"}]},"931c5147-136":{"id":"/src/lib/hooks.ts","moduleParts":{"index.js":"931c5147-137"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-96"}],"importedBy":[{"uid":"931c5147-140"}]},"931c5147-138":{"id":"/src/components/ui/scroll-area.tsx","moduleParts":{"index.js":"931c5147-139"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-168"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-154"},{"uid":"931c5147-140"}]},"931c5147-140":{"id":"/src/components/chat-search/ChatSearch.tsx","moduleParts":{"index.js":"931c5147-141"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-170"},{"uid":"931c5147-34"},{"uid":"931c5147-108"},{"uid":"931c5147-110"},{"uid":"931c5147-114"},{"uid":"931c5147-116"},{"uid":"931c5147-118"},{"uid":"931c5147-122"},{"uid":"931c5147-128"},{"uid":"931c5147-130"},{"uid":"931c5147-132"},{"uid":"931c5147-88"},{"uid":"931c5147-171"},{"uid":"931c5147-84"},{"uid":"931c5147-78"},{"uid":"931c5147-134"},{"uid":"931c5147-24"},{"uid":"931c5147-136"},{"uid":"931c5147-96"},{"uid":"931c5147-138"},{"uid":"931c5147-112"}],"importedBy":[{"uid":"931c5147-157"}]},"931c5147-142":{"id":"/src/components/ui/switch.tsx","moduleParts":{"index.js":"931c5147-143"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-166"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-154"}]},"931c5147-144":{"id":"/src/components/ui/select.tsx","moduleParts":{"index.js":"931c5147-145"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-192"},{"uid":"931c5147-172"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-146"}]},"931c5147-146":{"id":"/src/components/select/simpleSelect.tsx","moduleParts":{"index.js":"931c5147-147"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-24"},{"uid":"931c5147-144"}],"importedBy":[{"uid":"931c5147-159"}]},"931c5147-148":{"id":"/src/components/ui/calendar.tsx","moduleParts":{"index.js":"931c5147-149"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-193"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-152"}]},"931c5147-150":{"id":"/src/components/ui/popover.tsx","moduleParts":{"index.js":"931c5147-151"},"imported":[{"uid":"931c5147-22"},{"uid":"931c5147-161"},{"uid":"931c5147-194"},{"uid":"931c5147-24"}],"importedBy":[{"uid":"931c5147-152"}]},"931c5147-152":{"id":"/src/components/date-picker/date-picker.tsx","moduleParts":{"index.js":"931c5147-153"},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-183"},{"uid":"931c5147-172"},{"uid":"931c5147-24"},{"uid":"931c5147-32"},{"uid":"931c5147-148"},{"uid":"931c5147-150"},{"uid":"931c5147-184"},{"uid":"931c5147-185"}],"importedBy":[{"uid":"931c5147-160"}]},"931c5147-154":{"id":"/src/index.ts","moduleParts":{"index.js":"931c5147-155"},"imported":[{"uid":"931c5147-156"},{"uid":"931c5147-20"},{"uid":"931c5147-157"},{"uid":"931c5147-158"},{"uid":"931c5147-32"},{"uid":"931c5147-80"},{"uid":"931c5147-120"},{"uid":"931c5147-142"},{"uid":"931c5147-26"},{"uid":"931c5147-126"},{"uid":"931c5147-138"},{"uid":"931c5147-38"},{"uid":"931c5147-36"},{"uid":"931c5147-159"},{"uid":"931c5147-160"}],"importedBy":[],"isEntry":true},"931c5147-156":{"id":"/src/global.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-154"}]},"931c5147-157":{"id":"/src/components/chat-search/index.ts","moduleParts":{},"imported":[{"uid":"931c5147-140"},{"uid":"931c5147-88"},{"uid":"931c5147-90"}],"importedBy":[{"uid":"931c5147-154"}]},"931c5147-158":{"id":"/src/components/markdown/index.ts","moduleParts":{},"imported":[{"uid":"931c5147-46"},{"uid":"931c5147-72"},{"uid":"931c5147-48"},{"uid":"931c5147-64"},{"uid":"931c5147-66"},{"uid":"931c5147-68"}],"importedBy":[{"uid":"931c5147-154"}]},"931c5147-159":{"id":"/src/components/select/index.ts","moduleParts":{},"imported":[{"uid":"931c5147-146"}],"importedBy":[{"uid":"931c5147-154"}]},"931c5147-160":{"id":"/src/components/date-picker/index.tsx","moduleParts":{},"imported":[{"uid":"931c5147-152"}],"importedBy":[{"uid":"931c5147-154"}]},"931c5147-161":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-32"},{"uid":"931c5147-80"},{"uid":"931c5147-120"},{"uid":"931c5147-142"},{"uid":"931c5147-26"},{"uid":"931c5147-126"},{"uid":"931c5147-138"},{"uid":"931c5147-38"},{"uid":"931c5147-36"},{"uid":"931c5147-140"},{"uid":"931c5147-88"},{"uid":"931c5147-46"},{"uid":"931c5147-72"},{"uid":"931c5147-48"},{"uid":"931c5147-64"},{"uid":"931c5147-66"},{"uid":"931c5147-68"},{"uid":"931c5147-30"},{"uid":"931c5147-24"},{"uid":"931c5147-146"},{"uid":"931c5147-152"},{"uid":"931c5147-34"},{"uid":"931c5147-108"},{"uid":"931c5147-110"},{"uid":"931c5147-114"},{"uid":"931c5147-116"},{"uid":"931c5147-118"},{"uid":"931c5147-122"},{"uid":"931c5147-128"},{"uid":"931c5147-130"},{"uid":"931c5147-134"},{"uid":"931c5147-136"},{"uid":"931c5147-112"},{"uid":"931c5147-86"},{"uid":"931c5147-62"},{"uid":"931c5147-28"},{"uid":"931c5147-144"},{"uid":"931c5147-148"},{"uid":"931c5147-150"},{"uid":"931c5147-76"},{"uid":"931c5147-188"},{"uid":"931c5147-98"},{"uid":"931c5147-100"},{"uid":"931c5147-102"},{"uid":"931c5147-104"},{"uid":"931c5147-50"},{"uid":"931c5147-52"},{"uid":"931c5147-54"},{"uid":"931c5147-56"},{"uid":"931c5147-58"},{"uid":"931c5147-60"},{"uid":"931c5147-40"},{"uid":"931c5147-74"},{"uid":"931c5147-82"},{"uid":"931c5147-106"}],"isExternal":true},"931c5147-162":{"id":"class-variance-authority","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-32"},{"uid":"931c5147-38"}],"isExternal":true},"931c5147-163":{"id":"@radix-ui/react-collapsible","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-80"}],"isExternal":true},"931c5147-164":{"id":"@radix-ui/react-dropdown-menu","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-120"}],"isExternal":true},"931c5147-165":{"id":"@radix-ui/react-icons","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-120"}],"isExternal":true},"931c5147-166":{"id":"@radix-ui/react-switch","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-142"}],"isExternal":true},"931c5147-167":{"id":"@radix-ui/react-tooltip","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-26"}],"isExternal":true},"931c5147-168":{"id":"@radix-ui/react-scroll-area","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-138"}],"isExternal":true},"931c5147-169":{"id":"@radix-ui/react-label","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-38"}],"isExternal":true},"931c5147-170":{"id":"framer-motion","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-140"},{"uid":"931c5147-68"},{"uid":"931c5147-110"},{"uid":"931c5147-114"},{"uid":"931c5147-116"},{"uid":"931c5147-122"},{"uid":"931c5147-128"},{"uid":"931c5147-130"},{"uid":"931c5147-82"}],"isExternal":true},"931c5147-171":{"id":"/src/components/chat-search/hooks/index.ts","moduleParts":{},"imported":[{"uid":"931c5147-90"},{"uid":"931c5147-92"},{"uid":"931c5147-188"},{"uid":"931c5147-98"},{"uid":"931c5147-100"},{"uid":"931c5147-102"},{"uid":"931c5147-104"}],"importedBy":[{"uid":"931c5147-140"},{"uid":"931c5147-106"}]},"931c5147-172":{"id":"@phosphor-icons/react","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-46"},{"uid":"931c5147-68"},{"uid":"931c5147-152"},{"uid":"931c5147-108"},{"uid":"931c5147-110"},{"uid":"931c5147-116"},{"uid":"931c5147-118"},{"uid":"931c5147-122"},{"uid":"931c5147-128"},{"uid":"931c5147-130"},{"uid":"931c5147-112"},{"uid":"931c5147-144"},{"uid":"931c5147-40"},{"uid":"931c5147-82"}],"isExternal":true},"931c5147-173":{"id":"react-syntax-highlighter","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-46"}],"isExternal":true},"931c5147-174":{"id":"react-syntax-highlighter/dist/esm/styles/prism","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-46"}],"isExternal":true},"931c5147-175":{"id":"rehype-raw","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-72"}],"isExternal":true},"931c5147-176":{"id":"remark-gfm","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-72"}],"isExternal":true},"931c5147-177":{"id":"path-to-regexp","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-72"}],"isExternal":true},"931c5147-178":{"id":"react-markdown","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-64"}],"isExternal":true},"931c5147-179":{"id":"mermaid","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-66"}],"isExternal":true},"931c5147-180":{"id":"react/jsx-runtime","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-30"}],"isExternal":true},"931c5147-181":{"id":"clsx","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-24"}],"isExternal":true},"931c5147-182":{"id":"tailwind-merge","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-24"}],"isExternal":true},"931c5147-183":{"id":"date-fns","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-152"}],"isExternal":true},"931c5147-184":{"id":"react-day-picker/style.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-152"}],"isExternal":true},"931c5147-185":{"id":"/src/components/ui/calendar.css","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-152"}]},"931c5147-186":{"id":"/src/components/feedback/index.ts","moduleParts":{},"imported":[{"uid":"931c5147-82"}],"importedBy":[{"uid":"931c5147-108"}]},"931c5147-187":{"id":"/src/components/generating-star/index.ts","moduleParts":{},"imported":[{"uid":"931c5147-106"}],"importedBy":[{"uid":"931c5147-108"}]},"931c5147-188":{"id":"/src/components/chat-search/hooks/useUrlManager.ts","moduleParts":{},"imported":[{"uid":"931c5147-161"},{"uid":"931c5147-88"}],"importedBy":[{"uid":"931c5147-171"}]},"931c5147-189":{"id":"@paralleldrive/cuid2","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-84"},{"uid":"931c5147-78"},{"uid":"931c5147-96"}],"isExternal":true},"931c5147-190":{"id":"use-immer","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-84"}],"isExternal":true},"931c5147-191":{"id":"react-use","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-86"},{"uid":"931c5147-98"}],"isExternal":true},"931c5147-192":{"id":"@radix-ui/react-select","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-144"}],"isExternal":true},"931c5147-193":{"id":"react-day-picker","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-148"}],"isExternal":true},"931c5147-194":{"id":"@radix-ui/react-popover","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-150"}],"isExternal":true},"931c5147-195":{"id":"react-hook-form","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-40"}],"isExternal":true},"931c5147-196":{"id":"@hookform/resolvers/ajv","moduleParts":{},"imported":[],"importedBy":[{"uid":"931c5147-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;
|