@autoai-ui/autoui 0.1.9 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist/index.cjs +18 -9
  2. package/dist/index.mjs +2509 -1988
  3. package/dist/lib/components/chat/hooks/useAutoUiChat.d.ts +1 -1
  4. package/dist/lib/components/chat/hooks/useChat.d.ts +1 -1
  5. package/dist/lib/components/chat/hooks/useSpeechToText.d.ts +9 -0
  6. package/dist/lib/components/chat/hooks/useTheme.d.ts +6 -0
  7. package/dist/lib/components/chat/types/index.d.ts +7 -0
  8. package/dist/lib/components/chat/ui/ChatMenu.d.ts +1 -0
  9. package/dist/lib/components/chat/ui/ChatTextBox.d.ts +5 -0
  10. package/dist/lib/components/chat/ui/MicButton.d.ts +4 -0
  11. package/dist/lib/components/chat/ui/ScrollToBottomButton.d.ts +7 -0
  12. package/dist/lib/components/chat/ui/SendButton.d.ts +1 -0
  13. package/dist/lib/components/menu/index.d.ts +1 -0
  14. package/dist/lib/components/menu/ui/Menu.d.ts +6 -0
  15. package/dist/lib/components/menu/ui/MenuItem.d.ts +16 -0
  16. package/dist/lib/components/menu/ui/MenuSelectedIcon.d.ts +4 -0
  17. package/dist/lib/components/popover/index.d.ts +2 -0
  18. package/dist/lib/components/popover/ui/Popover.d.ts +10 -0
  19. package/dist/lib/components/popover/ui/PopoverMenu.d.ts +10 -0
  20. package/dist/lib/components/spinner/ui/Spinner.d.ts +1 -0
  21. package/dist/lib/components/switch/index.d.ts +1 -0
  22. package/dist/lib/components/switch/ui/Switch.d.ts +30 -0
  23. package/dist/lib/core/buildDataAnalyzingPrompt.d.ts +3 -0
  24. package/dist/lib/core/extraDataAnalyzingWithLLM.d.ts +3 -0
  25. package/dist/lib/core/llmClient.d.ts +1 -1
  26. package/dist/lib/core/sseParser.d.ts +1 -0
  27. package/dist/lib/index.d.ts +4 -0
  28. package/dist/lib/runtime/runtimeEngine.d.ts +1 -1
  29. package/dist/lib/runtime/stepExecutor.d.ts +1 -1
  30. package/dist/lib/types/index.d.ts +10 -13
  31. package/dist/lib/types/llmTypes.d.ts +1 -0
  32. package/dist/stats.html +1 -1
  33. package/package.json +3 -2
@@ -1,4 +1,4 @@
1
1
  import { AutoUIConfig } from '../../../types';
2
2
  export declare function useAutoUiChat(config: AutoUIConfig): {
3
- processMessage: (text: string) => Promise<import('../../../types/llmTypes').InstructionPlan>;
3
+ processMessage: (text: string) => Promise<import('../../..').InstructionPlan>;
4
4
  };
@@ -1,3 +1,3 @@
1
1
  import { ChatContextType, ChatProps } from '../types';
2
- export declare function useChat({ config, onError, onClose, storageKey, title, classNames, isOpen, }: ChatProps): ChatContextType;
2
+ export declare function useChat({ config, theme, mode, setTheme, onError, onClose, storageKey, title, classNames, isOpen, }: ChatProps): ChatContextType;
3
3
  export type UseChatReturn = ReturnType<typeof useChat>;
@@ -0,0 +1,9 @@
1
+ export declare const useSpeechToText: ({ lang }?: {
2
+ lang?: string | undefined;
3
+ }) => {
4
+ start: () => void;
5
+ stop: () => void;
6
+ text: string;
7
+ listening: boolean;
8
+ isSupported: boolean;
9
+ };
@@ -0,0 +1,6 @@
1
+ export type ThemeMode = 'light' | 'dark' | 'auto';
2
+ export declare const useTheme: () => {
3
+ mode: ThemeMode;
4
+ theme: "light" | "dark";
5
+ setTheme: (newMode: ThemeMode) => void;
6
+ };
@@ -1,5 +1,6 @@
1
1
  import { AutoUIConfig } from '../../../types';
2
2
  import { ComponentType, ReactNode, default as React } from 'react';
3
+ import { ThemeMode } from '../hooks/useTheme';
3
4
  export type BtnOpenChatProps = {
4
5
  isOpen?: boolean;
5
6
  onOpenChange?: () => void;
@@ -44,6 +45,9 @@ export interface ChatContextType {
44
45
  messages: ChatMessage[] | undefined;
45
46
  isLoading: boolean;
46
47
  closeIcon?: any;
48
+ mode?: ThemeMode;
49
+ theme?: 'light' | 'dark';
50
+ setTheme?: (newMode: ThemeMode) => void;
47
51
  handleSend: (text: string) => Promise<void>;
48
52
  handleClear: () => void;
49
53
  getChatInputProps: () => {
@@ -62,12 +66,15 @@ export interface ChatContextType {
62
66
  export interface ChatMessageListProps {
63
67
  }
64
68
  export interface ChatProps {
69
+ mode?: ThemeMode;
70
+ theme?: 'light' | 'dark';
65
71
  config: AutoUIConfig;
66
72
  title?: string;
67
73
  isOpen?: boolean;
68
74
  storageKey?: string;
69
75
  closeIcon?: any;
70
76
  classNames?: ChatClassNames;
77
+ setTheme?: (newMode: ThemeMode) => void;
71
78
  onError?: (err: Error) => void;
72
79
  onClose?: () => void;
73
80
  }
@@ -0,0 +1 @@
1
+ export declare const ChatMenu: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+ export declare const ChatTextBox: ({ value, setValue, }: {
3
+ value: string;
4
+ setValue: React.Dispatch<React.SetStateAction<string>>;
5
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
1
+ export declare const MicButton: ({ active, onClick }: {
2
+ active: boolean;
3
+ onClick: () => void;
4
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ type ScrollToBottomButtonProps = {
3
+ visible: boolean;
4
+ onClick: () => void;
5
+ };
6
+ export declare const ScrollToBottomButton: React.FC<ScrollToBottomButtonProps>;
7
+ export {};
@@ -0,0 +1 @@
1
+ export declare const SendButton: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export { Menu } from './ui/Menu';
@@ -0,0 +1,6 @@
1
+ import { MenuItemType } from './MenuItem';
2
+ export declare const Menu: ({ items, defaultSelectedKey, onSelectionChange, }: {
3
+ items: MenuItemType[];
4
+ defaultSelectedKey?: string;
5
+ onSelectionChange?: (key: string) => void;
6
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,16 @@
1
+ import { FC } from 'react';
2
+ export interface MenuItemType {
3
+ key: string;
4
+ label: any;
5
+ description?: string;
6
+ shortcut?: string;
7
+ startContent?: React.ReactNode;
8
+ endContent?: React.ReactNode;
9
+ isSelected?: boolean;
10
+ isDisabled?: boolean;
11
+ onSelect?: () => void;
12
+ disableAnimation?: boolean;
13
+ hideSelectedIcon?: boolean;
14
+ selectedIcon?: React.ReactNode | ((args: any) => React.ReactNode);
15
+ }
16
+ export declare const MenuItem: FC<MenuItemType>;
@@ -0,0 +1,4 @@
1
+ export declare function MenuSelectedIcon({ isSelected, disableAnimation, ...otherProps }: {
2
+ isSelected: boolean;
3
+ disableAnimation?: boolean;
4
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ export { PopoverMenu } from './ui/PopoverMenu';
2
+ export { Popover } from './ui/Popover';
@@ -0,0 +1,10 @@
1
+ type PopoverPosition = 'top-center' | 'bottom-left' | 'bottom-right';
2
+ export declare const Popover: ({ isOpen, onClose, triggerRef, children, styles, position, }: {
3
+ isOpen: boolean;
4
+ styles?: React.CSSProperties;
5
+ onClose: () => void;
6
+ triggerRef: React.RefObject<HTMLElement | null>;
7
+ children: React.ReactNode;
8
+ position?: PopoverPosition;
9
+ }) => import("react/jsx-runtime").JSX.Element | null;
10
+ export {};
@@ -0,0 +1,10 @@
1
+ import { default as React } from 'react';
2
+ import { MenuItemType } from '../../menu/ui/MenuItem';
3
+ export declare const PopoverMenu: ({ items, button, popoverStyles, defaultSelectedKey, closeAfterSelect, onSelectionChange, }: {
4
+ popoverStyles?: React.CSSProperties;
5
+ items: MenuItemType[];
6
+ closeAfterSelect?: (key: string) => boolean;
7
+ button: React.ReactElement<any>;
8
+ defaultSelectedKey?: string;
9
+ onSelectionChange?: (key: string) => void;
10
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -2,6 +2,7 @@ import { default as React } from 'react';
2
2
  export interface SpinnerProps extends React.HTMLAttributes<HTMLDivElement> {
3
3
  variant?: 'default' | 'simple' | 'wave' | 'dots' | 'spinner';
4
4
  label?: string;
5
+ color?: string;
5
6
  classNames?: {
6
7
  base?: string;
7
8
  wrapper?: string;
@@ -0,0 +1 @@
1
+ export { Switch } from './ui/Switch';
@@ -0,0 +1,30 @@
1
+ import * as React from 'react';
2
+ type SwitchSize = 'sm' | 'md' | 'lg';
3
+ export type SwitchProps = {
4
+ 'checked'?: boolean;
5
+ 'defaultChecked'?: boolean;
6
+ 'onCheckedChange'?: (checked: boolean, e: React.ChangeEvent<HTMLInputElement>) => void;
7
+ 'disabled'?: boolean;
8
+ 'required'?: boolean;
9
+ 'name'?: string;
10
+ 'value'?: string;
11
+ 'id'?: string;
12
+ 'label'?: React.ReactNode;
13
+ 'description'?: React.ReactNode;
14
+ 'size'?: SwitchSize;
15
+ 'className'?: string;
16
+ 'trackClassName'?: string;
17
+ 'thumbClassName'?: string;
18
+ 'labelClassName'?: string;
19
+ 'startContent'?: React.ReactNode;
20
+ 'endContent'?: React.ReactNode;
21
+ 'thumb'?: (ctx: {
22
+ checked: boolean;
23
+ disabled: boolean;
24
+ size: SwitchSize;
25
+ }) => React.ReactNode;
26
+ 'aria-label'?: string;
27
+ 'aria-labelledby'?: string;
28
+ };
29
+ export declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLInputElement>>;
30
+ export {};
@@ -0,0 +1,3 @@
1
+ import { AutoUIConfig } from '../types';
2
+ import { InstructionPlan } from '../types/llmTypes';
3
+ export declare const buildDataAnalyzingPrompt: (data: any, config: AutoUIConfig, userMessage: string, plan: InstructionPlan, currentStepName: string) => string;
@@ -0,0 +1,3 @@
1
+ import { AutoUIConfig } from '../types';
2
+ import { InstructionPlan } from '../types/llmTypes';
3
+ export declare const extraAnalysisWithLLM: (data: any, config: AutoUIConfig, userMessage: string, plan: InstructionPlan, currentStepName: string) => Promise<any>;
@@ -1,3 +1,3 @@
1
1
  import { AutoUIConfig } from '../types';
2
2
  import { InstructionPlan } from '../types/llmTypes';
3
- export declare const getInstructionPlan: (userMessage: string, config: AutoUIConfig) => Promise<InstructionPlan>;
3
+ export declare function getInstructionPlan(userMessage: string, config: AutoUIConfig): Promise<InstructionPlan>;
@@ -0,0 +1 @@
1
+ export declare function parseInstructionPlanFromSSE(stream: ReadableStream<Uint8Array>): Promise<any>;
@@ -1 +1,5 @@
1
1
  export { Chat, ModalChat } from './components';
2
+ export type { ChatContextType, ChatMessage, ChatMessageListProps, ChatProps, ChatProviderPropsType, ModalChatContext, ModalChatContextValue, ModalChatProps, BtnOpenChatProps, ActionRef, SerializedMessage, } from './components/chat/types';
3
+ export type { AutoUIComponent, AutoUIConfig, AutoUIFunction, AutoUIMetadata, LLMConfig, RuntimeConfig, } from './types/index';
4
+ export type { InstructionPlan, InstructionStep, ComponentStep, FunctionStep, TextStep } from './types/llmTypes';
5
+ export type { SpinnerProps } from './components/spinner/ui/Spinner';
@@ -6,4 +6,4 @@ import { Dispatch, SetStateAction } from 'react';
6
6
  export type RunOptions = {
7
7
  validate?: boolean;
8
8
  };
9
- export declare function runInstructionPlan(plan: InstructionPlan, config: AutoUIConfig, resolveComponent: ResolveComponent, setUI: SetUI, setSerializedMessages: Dispatch<SetStateAction<SerializedMessage[]>>, opts?: RunOptions): Promise<Record<string, any>>;
9
+ export declare function runInstructionPlan(plan: InstructionPlan, config: AutoUIConfig, resolveComponent: ResolveComponent, setUI: SetUI, setSerializedMessages: Dispatch<SetStateAction<SerializedMessage[]>>, userMessage: string, opts?: RunOptions): Promise<Record<string, any>>;
@@ -4,4 +4,4 @@ import { SerializedMessage } from '../components/chat/types';
4
4
  import { Dispatch, SetStateAction, default as React } from 'react';
5
5
  export type ResolveComponent = (name: string, props: any) => React.ReactNode;
6
6
  export type SetUI = (ui: React.ReactNode | string) => void;
7
- export declare function executePlanSteps(plan: InstructionPlan, config: AutoUIConfig, resolveComponent: ResolveComponent, setUI: SetUI, setSerializedMessages: Dispatch<SetStateAction<SerializedMessage[]>>): Promise<Record<string, any>>;
7
+ export declare function executePlanSteps(plan: InstructionPlan, config: AutoUIConfig, resolveComponent: ResolveComponent, setUI: SetUI, setSerializedMessages: Dispatch<SetStateAction<SerializedMessage[]>>, userMessage: string): Promise<Record<string, any>>;
@@ -1,5 +1,6 @@
1
1
  import { ComponentType } from 'react';
2
2
  export interface AutoUIConfig {
3
+ appId: string;
3
4
  llm: LLMConfig;
4
5
  runtime: RuntimeConfig;
5
6
  functions: Record<string, AutoUIFunction>;
@@ -7,22 +8,17 @@ export interface AutoUIConfig {
7
8
  metadata?: AutoUIMetadata;
8
9
  }
9
10
  export interface LLMConfig {
10
- /** Provider name (e.g., openai, openrouter, anthropic, azure) */
11
- provider: string;
12
- /** Direct API key (client-side) */
13
- apiKey?: string;
14
- baseUrl?: string;
15
- /** Backend proxy endpoint (safer for production) */
16
- apiProxyUrl?: string;
17
- /** Model identifier (e.g., openai/gpt-5-chat) */
18
- model: string;
19
- /** Sampling temperature */
11
+ /** 🔐 Backend proxy URL */
12
+ proxyUrl: string;
13
+ /** Shared secret for proxy auth */
14
+ sharedSecret?: string;
15
+ /** Sampling temperature (hint only) */
20
16
  temperature?: number;
21
- /** Max tokens per request */
17
+ /** Max tokens (hint only) */
22
18
  maxTokens?: number;
23
- /** App description for context (“this app is about…”) */
19
+ /** App description context */
24
20
  appDescriptionPrompt?: string;
25
- /** Optional request headers (forwarded to provider) */
21
+ /** Optional headers forwarded to proxy */
26
22
  requestHeaders?: Record<string, string>;
27
23
  }
28
24
  export interface RuntimeConfig {
@@ -55,6 +51,7 @@ export interface AutoUIFunction {
55
51
  exampleUsage?: string;
56
52
  /** Optional tags for organization */
57
53
  tags?: string[];
54
+ canShareDataWithLLM?: boolean;
58
55
  }
59
56
  export interface AutoUIComponent {
60
57
  /** Prompt describing what the component does (for LLM) */
@@ -3,6 +3,7 @@ export type FunctionStep = {
3
3
  name: string;
4
4
  params?: Record<string, any>;
5
5
  assign?: string;
6
+ hasToShareDataWithLLM?: boolean;
6
7
  };
7
8
  export type ComponentStep = {
8
9
  type: 'component';
package/dist/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.cjs","children":[{"name":"\u0000/node_modules/react","children":[{"uid":"75b3f856-1","name":"jsx-runtime.js?commonjs-module"},{"name":"cjs","children":[{"uid":"75b3f856-3","name":"react-jsx-runtime.production.js?commonjs-exports"},{"uid":"75b3f856-7","name":"react-jsx-runtime.development.js?commonjs-exports"}]},{"uid":"75b3f856-13","name":"jsx-runtime.js?commonjs-es-import"}]},{"name":"node_modules","children":[{"name":"react","children":[{"name":"cjs","children":[{"uid":"75b3f856-5","name":"react-jsx-runtime.production.js"},{"uid":"75b3f856-9","name":"react-jsx-runtime.development.js"}]},{"uid":"75b3f856-11","name":"jsx-runtime.js"}]},{"name":"clsx/dist/clsx.mjs","uid":"75b3f856-15"},{"name":"react-virtuoso/dist/index.mjs","uid":"75b3f856-33"}]},{"name":"src","children":[{"name":"lib","children":[{"name":"components","children":[{"name":"spinner/ui/Spinner.tsx","uid":"75b3f856-17"},{"name":"chat","children":[{"name":"context","children":[{"uid":"75b3f856-19","name":"chatContext.tsx"},{"uid":"75b3f856-63","name":"modalChatContext.tsx"}]},{"name":"ui","children":[{"uid":"75b3f856-29","name":"ChatInput.tsx"},{"uid":"75b3f856-31","name":"ChatMessageListItem.tsx"},{"uid":"75b3f856-35","name":"ChatMessageList.tsx"},{"uid":"75b3f856-59","name":"ChatHeader.tsx"},{"uid":"75b3f856-61","name":"Chat.tsx"},{"name":"btnOpenChat/index.tsx","uid":"75b3f856-65"},{"uid":"75b3f856-67","name":"ModalChat.tsx"}]},{"name":"styles/index.css","uid":"75b3f856-37"},{"name":"hooks","children":[{"uid":"75b3f856-43","name":"useAutoUiChat.ts"},{"uid":"75b3f856-53","name":"useRendering.tsx"},{"uid":"75b3f856-55","name":"useChatState.tsx"},{"uid":"75b3f856-57","name":"useChat.ts"}]}]}]},{"name":"utils","children":[{"uid":"75b3f856-21","name":"clsx.ts"},{"uid":"75b3f856-45","name":"resolveProps.ts"}]},{"name":"core","children":[{"uid":"75b3f856-39","name":"buildIntentPrompt.ts"},{"uid":"75b3f856-41","name":"llmClient.ts"}]},{"name":"runtime","children":[{"uid":"75b3f856-47","name":"stepExecutor.ts"},{"uid":"75b3f856-49","name":"runtimeEngine.ts"},{"uid":"75b3f856-51","name":"rerenderChatFromHistory.ts"}]},{"uid":"75b3f856-69","name":"index.ts"}]},{"name":"assets","children":[{"uid":"75b3f856-23","name":"plus-large-svgrepo-com.svg"},{"uid":"75b3f856-25","name":"xmark-svgrepo-com.svg"},{"uid":"75b3f856-27","name":"arrow-sm-up-svgrepo-com.svg"}]}]}]}],"isRoot":true},"nodeParts":{"75b3f856-1":{"renderedLength":31,"gzipLength":51,"brotliLength":35,"metaUid":"75b3f856-0"},"75b3f856-3":{"renderedLength":36,"gzipLength":56,"brotliLength":40,"metaUid":"75b3f856-2"},"75b3f856-5":{"renderedLength":1294,"gzipLength":555,"brotliLength":454,"metaUid":"75b3f856-4"},"75b3f856-7":{"renderedLength":37,"gzipLength":57,"brotliLength":35,"metaUid":"75b3f856-6"},"75b3f856-9":{"renderedLength":13140,"gzipLength":3427,"brotliLength":2935,"metaUid":"75b3f856-8"},"75b3f856-11":{"renderedLength":355,"gzipLength":183,"brotliLength":151,"metaUid":"75b3f856-10"},"75b3f856-13":{"renderedLength":44,"gzipLength":57,"brotliLength":48,"metaUid":"75b3f856-12"},"75b3f856-15":{"renderedLength":364,"gzipLength":231,"brotliLength":193,"metaUid":"75b3f856-14"},"75b3f856-17":{"renderedLength":3643,"gzipLength":961,"brotliLength":847,"metaUid":"75b3f856-16"},"75b3f856-19":{"renderedLength":403,"gzipLength":248,"brotliLength":214,"metaUid":"75b3f856-18"},"75b3f856-21":{"renderedLength":73,"gzipLength":87,"brotliLength":63,"metaUid":"75b3f856-20"},"75b3f856-23":{"renderedLength":447,"gzipLength":305,"brotliLength":263,"metaUid":"75b3f856-22"},"75b3f856-25":{"renderedLength":456,"gzipLength":311,"brotliLength":264,"metaUid":"75b3f856-24"},"75b3f856-27":{"renderedLength":469,"gzipLength":314,"brotliLength":274,"metaUid":"75b3f856-26"},"75b3f856-29":{"renderedLength":1267,"gzipLength":483,"brotliLength":410,"metaUid":"75b3f856-28"},"75b3f856-31":{"renderedLength":525,"gzipLength":293,"brotliLength":238,"metaUid":"75b3f856-30"},"75b3f856-33":{"renderedLength":87584,"gzipLength":22898,"brotliLength":20045,"metaUid":"75b3f856-32"},"75b3f856-35":{"renderedLength":982,"gzipLength":486,"brotliLength":423,"metaUid":"75b3f856-34"},"75b3f856-37":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"75b3f856-36"},"75b3f856-39":{"renderedLength":2657,"gzipLength":1173,"brotliLength":925,"metaUid":"75b3f856-38"},"75b3f856-41":{"renderedLength":1014,"gzipLength":531,"brotliLength":471,"metaUid":"75b3f856-40"},"75b3f856-43":{"renderedLength":706,"gzipLength":373,"brotliLength":292,"metaUid":"75b3f856-42"},"75b3f856-45":{"renderedLength":772,"gzipLength":365,"brotliLength":306,"metaUid":"75b3f856-44"},"75b3f856-47":{"renderedLength":2362,"gzipLength":850,"brotliLength":744,"metaUid":"75b3f856-46"},"75b3f856-49":{"renderedLength":1980,"gzipLength":579,"brotliLength":476,"metaUid":"75b3f856-48"},"75b3f856-51":{"renderedLength":618,"gzipLength":284,"brotliLength":239,"metaUid":"75b3f856-50"},"75b3f856-53":{"renderedLength":684,"gzipLength":347,"brotliLength":305,"metaUid":"75b3f856-52"},"75b3f856-55":{"renderedLength":1117,"gzipLength":417,"brotliLength":348,"metaUid":"75b3f856-54"},"75b3f856-57":{"renderedLength":2141,"gzipLength":764,"brotliLength":657,"metaUid":"75b3f856-56"},"75b3f856-59":{"renderedLength":700,"gzipLength":324,"brotliLength":285,"metaUid":"75b3f856-58"},"75b3f856-61":{"renderedLength":692,"gzipLength":332,"brotliLength":277,"metaUid":"75b3f856-60"},"75b3f856-63":{"renderedLength":476,"gzipLength":281,"brotliLength":234,"metaUid":"75b3f856-62"},"75b3f856-65":{"renderedLength":427,"gzipLength":269,"brotliLength":239,"metaUid":"75b3f856-64"},"75b3f856-67":{"renderedLength":1210,"gzipLength":461,"brotliLength":386,"metaUid":"75b3f856-66"},"75b3f856-69":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"75b3f856-68"}},"nodeMetas":{"75b3f856-0":{"id":"\u0000/node_modules/react/jsx-runtime.js?commonjs-module","moduleParts":{"index.cjs":"75b3f856-1"},"imported":[],"importedBy":[{"uid":"75b3f856-10"}]},"75b3f856-2":{"id":"\u0000/node_modules/react/cjs/react-jsx-runtime.production.js?commonjs-exports","moduleParts":{"index.cjs":"75b3f856-3"},"imported":[],"importedBy":[{"uid":"75b3f856-4"}]},"75b3f856-4":{"id":"/node_modules/react/cjs/react-jsx-runtime.production.js","moduleParts":{"index.cjs":"75b3f856-5"},"imported":[{"uid":"75b3f856-75"},{"uid":"75b3f856-2"}],"importedBy":[{"uid":"75b3f856-10"}]},"75b3f856-6":{"id":"\u0000/node_modules/react/cjs/react-jsx-runtime.development.js?commonjs-exports","moduleParts":{"index.cjs":"75b3f856-7"},"imported":[],"importedBy":[{"uid":"75b3f856-8"}]},"75b3f856-8":{"id":"/node_modules/react/cjs/react-jsx-runtime.development.js","moduleParts":{"index.cjs":"75b3f856-9"},"imported":[{"uid":"75b3f856-75"},{"uid":"75b3f856-6"},{"uid":"75b3f856-77"}],"importedBy":[{"uid":"75b3f856-10"}]},"75b3f856-10":{"id":"/node_modules/react/jsx-runtime.js","moduleParts":{"index.cjs":"75b3f856-11"},"imported":[{"uid":"75b3f856-75"},{"uid":"75b3f856-0"},{"uid":"75b3f856-4"},{"uid":"75b3f856-8"}],"importedBy":[{"uid":"75b3f856-12"}]},"75b3f856-12":{"id":"\u0000/node_modules/react/jsx-runtime.js?commonjs-es-import","moduleParts":{"index.cjs":"75b3f856-13"},"imported":[{"uid":"75b3f856-75"},{"uid":"75b3f856-10"}],"importedBy":[{"uid":"75b3f856-16"},{"uid":"75b3f856-60"},{"uid":"75b3f856-66"},{"uid":"75b3f856-28"},{"uid":"75b3f856-34"},{"uid":"75b3f856-58"},{"uid":"75b3f856-18"},{"uid":"75b3f856-62"},{"uid":"75b3f856-64"},{"uid":"75b3f856-30"},{"uid":"75b3f856-32"},{"uid":"75b3f856-52"}]},"75b3f856-14":{"id":"/node_modules/clsx/dist/clsx.mjs","moduleParts":{"index.cjs":"75b3f856-15"},"imported":[],"importedBy":[{"uid":"75b3f856-16"},{"uid":"75b3f856-60"},{"uid":"75b3f856-58"},{"uid":"75b3f856-30"}]},"75b3f856-16":{"id":"/src/lib/components/spinner/ui/Spinner.tsx","moduleParts":{"index.cjs":"75b3f856-17"},"imported":[{"uid":"75b3f856-12"},{"uid":"75b3f856-14"},{"uid":"75b3f856-73"}],"importedBy":[{"uid":"75b3f856-71"}]},"75b3f856-18":{"id":"/src/lib/components/chat/context/chatContext.tsx","moduleParts":{"index.cjs":"75b3f856-19"},"imported":[{"uid":"75b3f856-12"},{"uid":"75b3f856-73"}],"importedBy":[{"uid":"75b3f856-60"},{"uid":"75b3f856-28"},{"uid":"75b3f856-34"},{"uid":"75b3f856-58"},{"uid":"75b3f856-30"}]},"75b3f856-20":{"id":"/src/lib/utils/clsx.ts","moduleParts":{"index.cjs":"75b3f856-21"},"imported":[],"importedBy":[{"uid":"75b3f856-28"},{"uid":"75b3f856-34"},{"uid":"75b3f856-64"}]},"75b3f856-22":{"id":"/src/assets/plus-large-svgrepo-com.svg","moduleParts":{"index.cjs":"75b3f856-23"},"imported":[],"importedBy":[{"uid":"75b3f856-76"}]},"75b3f856-24":{"id":"/src/assets/xmark-svgrepo-com.svg","moduleParts":{"index.cjs":"75b3f856-25"},"imported":[],"importedBy":[{"uid":"75b3f856-76"}]},"75b3f856-26":{"id":"/src/assets/arrow-sm-up-svgrepo-com.svg","moduleParts":{"index.cjs":"75b3f856-27"},"imported":[],"importedBy":[{"uid":"75b3f856-76"}]},"75b3f856-28":{"id":"/src/lib/components/chat/ui/ChatInput.tsx","moduleParts":{"index.cjs":"75b3f856-29"},"imported":[{"uid":"75b3f856-12"},{"uid":"75b3f856-73"},{"uid":"75b3f856-18"},{"uid":"75b3f856-20"},{"uid":"75b3f856-76"}],"importedBy":[{"uid":"75b3f856-60"}]},"75b3f856-30":{"id":"/src/lib/components/chat/ui/ChatMessageListItem.tsx","moduleParts":{"index.cjs":"75b3f856-31"},"imported":[{"uid":"75b3f856-12"},{"uid":"75b3f856-73"},{"uid":"75b3f856-18"},{"uid":"75b3f856-14"}],"importedBy":[{"uid":"75b3f856-34"}]},"75b3f856-32":{"id":"/node_modules/react-virtuoso/dist/index.mjs","moduleParts":{"index.cjs":"75b3f856-33"},"imported":[{"uid":"75b3f856-12"},{"uid":"75b3f856-73"},{"uid":"75b3f856-74"}],"importedBy":[{"uid":"75b3f856-34"}]},"75b3f856-34":{"id":"/src/lib/components/chat/ui/ChatMessageList.tsx","moduleParts":{"index.cjs":"75b3f856-35"},"imported":[{"uid":"75b3f856-12"},{"uid":"75b3f856-73"},{"uid":"75b3f856-30"},{"uid":"75b3f856-18"},{"uid":"75b3f856-32"},{"uid":"75b3f856-20"},{"uid":"75b3f856-71"}],"importedBy":[{"uid":"75b3f856-60"}]},"75b3f856-36":{"id":"/src/lib/components/chat/styles/index.css","moduleParts":{"index.cjs":"75b3f856-37"},"imported":[],"importedBy":[{"uid":"75b3f856-60"}]},"75b3f856-38":{"id":"/src/lib/core/buildIntentPrompt.ts","moduleParts":{"index.cjs":"75b3f856-39"},"imported":[],"importedBy":[{"uid":"75b3f856-40"}]},"75b3f856-40":{"id":"/src/lib/core/llmClient.ts","moduleParts":{"index.cjs":"75b3f856-41"},"imported":[{"uid":"75b3f856-38"}],"importedBy":[{"uid":"75b3f856-42"}]},"75b3f856-42":{"id":"/src/lib/components/chat/hooks/useAutoUiChat.ts","moduleParts":{"index.cjs":"75b3f856-43"},"imported":[{"uid":"75b3f856-40"},{"uid":"75b3f856-73"}],"importedBy":[{"uid":"75b3f856-56"}]},"75b3f856-44":{"id":"/src/lib/utils/resolveProps.ts","moduleParts":{"index.cjs":"75b3f856-45"},"imported":[],"importedBy":[{"uid":"75b3f856-46"}]},"75b3f856-46":{"id":"/src/lib/runtime/stepExecutor.ts","moduleParts":{"index.cjs":"75b3f856-47"},"imported":[{"uid":"75b3f856-44"}],"importedBy":[{"uid":"75b3f856-48"}]},"75b3f856-48":{"id":"/src/lib/runtime/runtimeEngine.ts","moduleParts":{"index.cjs":"75b3f856-49"},"imported":[{"uid":"75b3f856-46"}],"importedBy":[{"uid":"75b3f856-56"}]},"75b3f856-50":{"id":"/src/lib/runtime/rerenderChatFromHistory.ts","moduleParts":{"index.cjs":"75b3f856-51"},"imported":[],"importedBy":[{"uid":"75b3f856-54"}]},"75b3f856-52":{"id":"/src/lib/components/chat/hooks/useRendering.tsx","moduleParts":{"index.cjs":"75b3f856-53"},"imported":[{"uid":"75b3f856-12"},{"uid":"75b3f856-73"}],"importedBy":[{"uid":"75b3f856-56"},{"uid":"75b3f856-54"}]},"75b3f856-54":{"id":"/src/lib/components/chat/hooks/useChatState.tsx","moduleParts":{"index.cjs":"75b3f856-55"},"imported":[{"uid":"75b3f856-73"},{"uid":"75b3f856-50"},{"uid":"75b3f856-52"}],"importedBy":[{"uid":"75b3f856-56"}]},"75b3f856-56":{"id":"/src/lib/components/chat/hooks/useChat.ts","moduleParts":{"index.cjs":"75b3f856-57"},"imported":[{"uid":"75b3f856-73"},{"uid":"75b3f856-42"},{"uid":"75b3f856-48"},{"uid":"75b3f856-54"},{"uid":"75b3f856-52"}],"importedBy":[{"uid":"75b3f856-60"}]},"75b3f856-58":{"id":"/src/lib/components/chat/ui/ChatHeader.tsx","moduleParts":{"index.cjs":"75b3f856-59"},"imported":[{"uid":"75b3f856-12"},{"uid":"75b3f856-14"},{"uid":"75b3f856-18"},{"uid":"75b3f856-76"}],"importedBy":[{"uid":"75b3f856-60"}]},"75b3f856-60":{"id":"/src/lib/components/chat/ui/Chat.tsx","moduleParts":{"index.cjs":"75b3f856-61"},"imported":[{"uid":"75b3f856-12"},{"uid":"75b3f856-73"},{"uid":"75b3f856-28"},{"uid":"75b3f856-34"},{"uid":"75b3f856-36"},{"uid":"75b3f856-56"},{"uid":"75b3f856-58"},{"uid":"75b3f856-18"},{"uid":"75b3f856-14"}],"importedBy":[{"uid":"75b3f856-72"},{"uid":"75b3f856-66"}]},"75b3f856-62":{"id":"/src/lib/components/chat/context/modalChatContext.tsx","moduleParts":{"index.cjs":"75b3f856-63"},"imported":[{"uid":"75b3f856-12"},{"uid":"75b3f856-73"}],"importedBy":[{"uid":"75b3f856-66"}]},"75b3f856-64":{"id":"/src/lib/components/chat/ui/btnOpenChat/index.tsx","moduleParts":{"index.cjs":"75b3f856-65"},"imported":[{"uid":"75b3f856-12"},{"uid":"75b3f856-76"},{"uid":"75b3f856-20"}],"importedBy":[{"uid":"75b3f856-66"}]},"75b3f856-66":{"id":"/src/lib/components/chat/ui/ModalChat.tsx","moduleParts":{"index.cjs":"75b3f856-67"},"imported":[{"uid":"75b3f856-12"},{"uid":"75b3f856-73"},{"uid":"75b3f856-74"},{"uid":"75b3f856-62"},{"uid":"75b3f856-64"},{"uid":"75b3f856-60","dynamic":true}],"importedBy":[{"uid":"75b3f856-72"}]},"75b3f856-68":{"id":"/src/lib/index.ts","moduleParts":{"index.cjs":"75b3f856-69"},"imported":[{"uid":"75b3f856-70"}],"importedBy":[],"isEntry":true},"75b3f856-70":{"id":"/src/lib/components/index.ts","moduleParts":{},"imported":[{"uid":"75b3f856-71"},{"uid":"75b3f856-72"}],"importedBy":[{"uid":"75b3f856-68"}]},"75b3f856-71":{"id":"/src/lib/components/spinner/index.ts","moduleParts":{},"imported":[{"uid":"75b3f856-16"}],"importedBy":[{"uid":"75b3f856-70"},{"uid":"75b3f856-34"}]},"75b3f856-72":{"id":"/src/lib/components/chat/index.ts","moduleParts":{},"imported":[{"uid":"75b3f856-60"},{"uid":"75b3f856-66"}],"importedBy":[{"uid":"75b3f856-70"}]},"75b3f856-73":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"75b3f856-16"},{"uid":"75b3f856-60"},{"uid":"75b3f856-66"},{"uid":"75b3f856-28"},{"uid":"75b3f856-34"},{"uid":"75b3f856-56"},{"uid":"75b3f856-18"},{"uid":"75b3f856-62"},{"uid":"75b3f856-30"},{"uid":"75b3f856-32"},{"uid":"75b3f856-42"},{"uid":"75b3f856-54"},{"uid":"75b3f856-52"},{"uid":"75b3f856-77"}],"isExternal":true},"75b3f856-74":{"id":"react-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"75b3f856-66"},{"uid":"75b3f856-32"}],"isExternal":true},"75b3f856-75":{"id":"\u0000commonjsHelpers.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"75b3f856-12"},{"uid":"75b3f856-10"},{"uid":"75b3f856-4"},{"uid":"75b3f856-8"}]},"75b3f856-76":{"id":"/src/assets/index.ts","moduleParts":{},"imported":[{"uid":"75b3f856-22"},{"uid":"75b3f856-24"},{"uid":"75b3f856-26"}],"importedBy":[{"uid":"75b3f856-28"},{"uid":"75b3f856-58"},{"uid":"75b3f856-64"}]},"75b3f856-77":{"id":"\u0000react?commonjs-external","moduleParts":{},"imported":[{"uid":"75b3f856-73"}],"importedBy":[{"uid":"75b3f856-8"}]}},"env":{"rollup":"4.53.3"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
4932
+ const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.cjs","children":[{"name":"\u0000/node_modules/react","children":[{"uid":"e403f4fd-1","name":"jsx-runtime.js?commonjs-module"},{"name":"cjs","children":[{"uid":"e403f4fd-3","name":"react-jsx-runtime.production.js?commonjs-exports"},{"uid":"e403f4fd-7","name":"react-jsx-runtime.development.js?commonjs-exports"}]},{"uid":"e403f4fd-13","name":"jsx-runtime.js?commonjs-es-import"}]},{"name":"node_modules","children":[{"name":"react","children":[{"name":"cjs","children":[{"uid":"e403f4fd-5","name":"react-jsx-runtime.production.js"},{"uid":"e403f4fd-9","name":"react-jsx-runtime.development.js"}]},{"uid":"e403f4fd-11","name":"jsx-runtime.js"}]},{"name":"clsx/dist/clsx.mjs","uid":"e403f4fd-15"},{"name":"react-virtuoso/dist/index.mjs","uid":"e403f4fd-71"}]},{"name":"src","children":[{"name":"lib","children":[{"name":"components","children":[{"name":"spinner","children":[{"name":"styles/index.css","uid":"e403f4fd-17"},{"name":"ui/Spinner.tsx","uid":"e403f4fd-19"}]},{"name":"chat","children":[{"name":"context","children":[{"uid":"e403f4fd-21","name":"chatContext.tsx"},{"uid":"e403f4fd-111","name":"modalChatContext.tsx"}]},{"name":"ui","children":[{"uid":"e403f4fd-57","name":"ChatMenu.tsx"},{"uid":"e403f4fd-59","name":"ChatTextBox.tsx"},{"uid":"e403f4fd-61","name":"SendButton.tsx"},{"uid":"e403f4fd-65","name":"MicButton.tsx"},{"uid":"e403f4fd-67","name":"ChatInput.tsx"},{"uid":"e403f4fd-69","name":"ChatMessageListItem.tsx"},{"uid":"e403f4fd-73","name":"ScrollToBottomButton.tsx"},{"uid":"e403f4fd-75","name":"ChatMessageList.tsx"},{"uid":"e403f4fd-105","name":"ChatHeader.tsx"},{"uid":"e403f4fd-109","name":"Chat.tsx"},{"name":"btnOpenChat/index.tsx","uid":"e403f4fd-113"},{"uid":"e403f4fd-115","name":"ModalChat.tsx"}]},{"name":"hooks","children":[{"uid":"e403f4fd-63","name":"useSpeechToText.ts"},{"uid":"e403f4fd-85","name":"useAutoUiChat.ts"},{"uid":"e403f4fd-99","name":"useRendering.tsx"},{"uid":"e403f4fd-101","name":"useChatState.tsx"},{"uid":"e403f4fd-103","name":"useChat.ts"},{"uid":"e403f4fd-107","name":"useTheme.ts"}]},{"name":"styles/index.css","uid":"e403f4fd-77"}]},{"name":"popover/ui","children":[{"uid":"e403f4fd-41","name":"Popover.tsx"},{"uid":"e403f4fd-51","name":"PopoverMenu.tsx"}]},{"name":"menu","children":[{"name":"ui","children":[{"uid":"e403f4fd-43","name":"MenuSelectedIcon.tsx"},{"uid":"e403f4fd-45","name":"MenuItem.tsx"},{"uid":"e403f4fd-49","name":"Menu.tsx"}]},{"name":"styles/index.css","uid":"e403f4fd-47"}]},{"name":"switch","children":[{"name":"styles/index.css","uid":"e403f4fd-53"},{"name":"ui/Switch.tsx","uid":"e403f4fd-55"}]}]},{"name":"utils","children":[{"uid":"e403f4fd-23","name":"clsx.ts"},{"uid":"e403f4fd-87","name":"resolveProps.ts"}]},{"name":"core","children":[{"uid":"e403f4fd-79","name":"sseParser.ts"},{"uid":"e403f4fd-81","name":"buildIntentPrompt.ts"},{"uid":"e403f4fd-83","name":"llmClient.ts"},{"uid":"e403f4fd-89","name":"buildDataAnalyzingPrompt.ts"},{"uid":"e403f4fd-91","name":"extraDataAnalyzingWithLLM.ts"}]},{"name":"runtime","children":[{"uid":"e403f4fd-93","name":"stepExecutor.ts"},{"uid":"e403f4fd-95","name":"runtimeEngine.ts"},{"uid":"e403f4fd-97","name":"rerenderChatFromHistory.ts"}]},{"uid":"e403f4fd-117","name":"index.ts"}]},{"name":"assets","children":[{"uid":"e403f4fd-25","name":"plus-large-svgrepo-com.svg"},{"uid":"e403f4fd-27","name":"xmark-solid-full.svg"},{"uid":"e403f4fd-29","name":"arrow-sm-up-svgrepo-com.svg"},{"uid":"e403f4fd-31","name":"burger-menu-svgrepo-com.svg"},{"uid":"e403f4fd-33","name":"delete-filled-svgrepo-com.svg"},{"uid":"e403f4fd-35","name":"sun-solid-full.svg"},{"uid":"e403f4fd-37","name":"moon-solid-full.svg"},{"uid":"e403f4fd-39","name":"microphone-solid-full.svg"}]}]}]}],"isRoot":true},"nodeParts":{"e403f4fd-1":{"renderedLength":31,"gzipLength":51,"brotliLength":35,"metaUid":"e403f4fd-0"},"e403f4fd-3":{"renderedLength":36,"gzipLength":56,"brotliLength":40,"metaUid":"e403f4fd-2"},"e403f4fd-5":{"renderedLength":1294,"gzipLength":555,"brotliLength":454,"metaUid":"e403f4fd-4"},"e403f4fd-7":{"renderedLength":37,"gzipLength":57,"brotliLength":35,"metaUid":"e403f4fd-6"},"e403f4fd-9":{"renderedLength":13140,"gzipLength":3427,"brotliLength":2935,"metaUid":"e403f4fd-8"},"e403f4fd-11":{"renderedLength":355,"gzipLength":183,"brotliLength":151,"metaUid":"e403f4fd-10"},"e403f4fd-13":{"renderedLength":44,"gzipLength":57,"brotliLength":48,"metaUid":"e403f4fd-12"},"e403f4fd-15":{"renderedLength":364,"gzipLength":231,"brotliLength":193,"metaUid":"e403f4fd-14"},"e403f4fd-17":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"e403f4fd-16"},"e403f4fd-19":{"renderedLength":3271,"gzipLength":799,"brotliLength":711,"metaUid":"e403f4fd-18"},"e403f4fd-21":{"renderedLength":403,"gzipLength":248,"brotliLength":214,"metaUid":"e403f4fd-20"},"e403f4fd-23":{"renderedLength":73,"gzipLength":87,"brotliLength":63,"metaUid":"e403f4fd-22"},"e403f4fd-25":{"renderedLength":447,"gzipLength":305,"brotliLength":263,"metaUid":"e403f4fd-24"},"e403f4fd-27":{"renderedLength":814,"gzipLength":411,"brotliLength":369,"metaUid":"e403f4fd-26"},"e403f4fd-29":{"renderedLength":469,"gzipLength":314,"brotliLength":274,"metaUid":"e403f4fd-28"},"e403f4fd-31":{"renderedLength":616,"gzipLength":314,"brotliLength":274,"metaUid":"e403f4fd-30"},"e403f4fd-33":{"renderedLength":810,"gzipLength":395,"brotliLength":349,"metaUid":"e403f4fd-32"},"e403f4fd-35":{"renderedLength":1623,"gzipLength":682,"brotliLength":623,"metaUid":"e403f4fd-34"},"e403f4fd-37":{"renderedLength":783,"gzipLength":420,"brotliLength":381,"metaUid":"e403f4fd-36"},"e403f4fd-39":{"renderedLength":1049,"gzipLength":486,"brotliLength":438,"metaUid":"e403f4fd-38"},"e403f4fd-41":{"renderedLength":1433,"gzipLength":595,"brotliLength":491,"metaUid":"e403f4fd-40"},"e403f4fd-43":{"renderedLength":660,"gzipLength":376,"brotliLength":310,"metaUid":"e403f4fd-42"},"e403f4fd-45":{"renderedLength":1701,"gzipLength":533,"brotliLength":468,"metaUid":"e403f4fd-44"},"e403f4fd-47":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"e403f4fd-46"},"e403f4fd-49":{"renderedLength":778,"gzipLength":366,"brotliLength":303,"metaUid":"e403f4fd-48"},"e403f4fd-51":{"renderedLength":1306,"gzipLength":536,"brotliLength":466,"metaUid":"e403f4fd-50"},"e403f4fd-53":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"e403f4fd-52"},"e403f4fd-55":{"renderedLength":2608,"gzipLength":782,"brotliLength":682,"metaUid":"e403f4fd-54"},"e403f4fd-57":{"renderedLength":2388,"gzipLength":684,"brotliLength":582,"metaUid":"e403f4fd-56"},"e403f4fd-59":{"renderedLength":441,"gzipLength":289,"brotliLength":239,"metaUid":"e403f4fd-58"},"e403f4fd-61":{"renderedLength":573,"gzipLength":314,"brotliLength":257,"metaUid":"e403f4fd-60"},"e403f4fd-63":{"renderedLength":1303,"gzipLength":463,"brotliLength":398,"metaUid":"e403f4fd-62"},"e403f4fd-65":{"renderedLength":498,"gzipLength":281,"brotliLength":225,"metaUid":"e403f4fd-64"},"e403f4fd-67":{"renderedLength":1019,"gzipLength":468,"brotliLength":398,"metaUid":"e403f4fd-66"},"e403f4fd-69":{"renderedLength":762,"gzipLength":359,"brotliLength":304,"metaUid":"e403f4fd-68"},"e403f4fd-71":{"renderedLength":87584,"gzipLength":22898,"brotliLength":20045,"metaUid":"e403f4fd-70"},"e403f4fd-73":{"renderedLength":499,"gzipLength":310,"brotliLength":245,"metaUid":"e403f4fd-72"},"e403f4fd-75":{"renderedLength":2093,"gzipLength":764,"brotliLength":657,"metaUid":"e403f4fd-74"},"e403f4fd-77":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"e403f4fd-76"},"e403f4fd-79":{"renderedLength":967,"gzipLength":485,"brotliLength":400,"metaUid":"e403f4fd-78"},"e403f4fd-81":{"renderedLength":2723,"gzipLength":1207,"brotliLength":952,"metaUid":"e403f4fd-80"},"e403f4fd-83":{"renderedLength":795,"gzipLength":434,"brotliLength":357,"metaUid":"e403f4fd-82"},"e403f4fd-85":{"renderedLength":753,"gzipLength":396,"brotliLength":313,"metaUid":"e403f4fd-84"},"e403f4fd-87":{"renderedLength":772,"gzipLength":365,"brotliLength":306,"metaUid":"e403f4fd-86"},"e403f4fd-89":{"renderedLength":1326,"gzipLength":622,"brotliLength":485,"metaUid":"e403f4fd-88"},"e403f4fd-91":{"renderedLength":774,"gzipLength":447,"brotliLength":360,"metaUid":"e403f4fd-90"},"e403f4fd-93":{"renderedLength":2510,"gzipLength":859,"brotliLength":768,"metaUid":"e403f4fd-92"},"e403f4fd-95":{"renderedLength":2086,"gzipLength":615,"brotliLength":511,"metaUid":"e403f4fd-94"},"e403f4fd-97":{"renderedLength":618,"gzipLength":284,"brotliLength":239,"metaUid":"e403f4fd-96"},"e403f4fd-99":{"renderedLength":602,"gzipLength":295,"brotliLength":260,"metaUid":"e403f4fd-98"},"e403f4fd-101":{"renderedLength":1123,"gzipLength":417,"brotliLength":348,"metaUid":"e403f4fd-100"},"e403f4fd-103":{"renderedLength":2561,"gzipLength":829,"brotliLength":720,"metaUid":"e403f4fd-102"},"e403f4fd-105":{"renderedLength":828,"gzipLength":368,"brotliLength":324,"metaUid":"e403f4fd-104"},"e403f4fd-107":{"renderedLength":1339,"gzipLength":503,"brotliLength":418,"metaUid":"e403f4fd-106"},"e403f4fd-109":{"renderedLength":765,"gzipLength":365,"brotliLength":298,"metaUid":"e403f4fd-108"},"e403f4fd-111":{"renderedLength":559,"gzipLength":304,"brotliLength":281,"metaUid":"e403f4fd-110"},"e403f4fd-113":{"renderedLength":533,"gzipLength":310,"brotliLength":256,"metaUid":"e403f4fd-112"},"e403f4fd-115":{"renderedLength":1210,"gzipLength":461,"brotliLength":386,"metaUid":"e403f4fd-114"},"e403f4fd-117":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"e403f4fd-116"}},"nodeMetas":{"e403f4fd-0":{"id":"\u0000/node_modules/react/jsx-runtime.js?commonjs-module","moduleParts":{"index.cjs":"e403f4fd-1"},"imported":[],"importedBy":[{"uid":"e403f4fd-10"}]},"e403f4fd-2":{"id":"\u0000/node_modules/react/cjs/react-jsx-runtime.production.js?commonjs-exports","moduleParts":{"index.cjs":"e403f4fd-3"},"imported":[],"importedBy":[{"uid":"e403f4fd-4"}]},"e403f4fd-4":{"id":"/node_modules/react/cjs/react-jsx-runtime.production.js","moduleParts":{"index.cjs":"e403f4fd-5"},"imported":[{"uid":"e403f4fd-123"},{"uid":"e403f4fd-2"}],"importedBy":[{"uid":"e403f4fd-10"}]},"e403f4fd-6":{"id":"\u0000/node_modules/react/cjs/react-jsx-runtime.development.js?commonjs-exports","moduleParts":{"index.cjs":"e403f4fd-7"},"imported":[],"importedBy":[{"uid":"e403f4fd-8"}]},"e403f4fd-8":{"id":"/node_modules/react/cjs/react-jsx-runtime.development.js","moduleParts":{"index.cjs":"e403f4fd-9"},"imported":[{"uid":"e403f4fd-123"},{"uid":"e403f4fd-6"},{"uid":"e403f4fd-130"}],"importedBy":[{"uid":"e403f4fd-10"}]},"e403f4fd-10":{"id":"/node_modules/react/jsx-runtime.js","moduleParts":{"index.cjs":"e403f4fd-11"},"imported":[{"uid":"e403f4fd-123"},{"uid":"e403f4fd-0"},{"uid":"e403f4fd-4"},{"uid":"e403f4fd-8"}],"importedBy":[{"uid":"e403f4fd-12"}]},"e403f4fd-12":{"id":"\u0000/node_modules/react/jsx-runtime.js?commonjs-es-import","moduleParts":{"index.cjs":"e403f4fd-13"},"imported":[{"uid":"e403f4fd-123"},{"uid":"e403f4fd-10"}],"importedBy":[{"uid":"e403f4fd-18"},{"uid":"e403f4fd-108"},{"uid":"e403f4fd-114"},{"uid":"e403f4fd-66"},{"uid":"e403f4fd-74"},{"uid":"e403f4fd-104"},{"uid":"e403f4fd-20"},{"uid":"e403f4fd-110"},{"uid":"e403f4fd-112"},{"uid":"e403f4fd-56"},{"uid":"e403f4fd-58"},{"uid":"e403f4fd-60"},{"uid":"e403f4fd-64"},{"uid":"e403f4fd-68"},{"uid":"e403f4fd-70"},{"uid":"e403f4fd-72"},{"uid":"e403f4fd-98"},{"uid":"e403f4fd-50"},{"uid":"e403f4fd-40"},{"uid":"e403f4fd-54"},{"uid":"e403f4fd-48"},{"uid":"e403f4fd-44"},{"uid":"e403f4fd-42"}]},"e403f4fd-14":{"id":"/node_modules/clsx/dist/clsx.mjs","moduleParts":{"index.cjs":"e403f4fd-15"},"imported":[],"importedBy":[{"uid":"e403f4fd-18"},{"uid":"e403f4fd-108"},{"uid":"e403f4fd-104"},{"uid":"e403f4fd-68"}]},"e403f4fd-16":{"id":"/src/lib/components/spinner/styles/index.css","moduleParts":{"index.cjs":"e403f4fd-17"},"imported":[],"importedBy":[{"uid":"e403f4fd-18"}]},"e403f4fd-18":{"id":"/src/lib/components/spinner/ui/Spinner.tsx","moduleParts":{"index.cjs":"e403f4fd-19"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-121"},{"uid":"e403f4fd-14"},{"uid":"e403f4fd-16"}],"importedBy":[{"uid":"e403f4fd-119"}]},"e403f4fd-20":{"id":"/src/lib/components/chat/context/chatContext.tsx","moduleParts":{"index.cjs":"e403f4fd-21"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-121"}],"importedBy":[{"uid":"e403f4fd-108"},{"uid":"e403f4fd-66"},{"uid":"e403f4fd-74"},{"uid":"e403f4fd-104"},{"uid":"e403f4fd-56"},{"uid":"e403f4fd-58"},{"uid":"e403f4fd-60"},{"uid":"e403f4fd-68"}]},"e403f4fd-22":{"id":"/src/lib/utils/clsx.ts","moduleParts":{"index.cjs":"e403f4fd-23"},"imported":[],"importedBy":[{"uid":"e403f4fd-66"},{"uid":"e403f4fd-74"},{"uid":"e403f4fd-112"},{"uid":"e403f4fd-58"},{"uid":"e403f4fd-60"},{"uid":"e403f4fd-54"}]},"e403f4fd-24":{"id":"/src/assets/plus-large-svgrepo-com.svg","moduleParts":{"index.cjs":"e403f4fd-25"},"imported":[],"importedBy":[{"uid":"e403f4fd-124"}]},"e403f4fd-26":{"id":"/src/assets/xmark-solid-full.svg","moduleParts":{"index.cjs":"e403f4fd-27"},"imported":[],"importedBy":[{"uid":"e403f4fd-124"}]},"e403f4fd-28":{"id":"/src/assets/arrow-sm-up-svgrepo-com.svg","moduleParts":{"index.cjs":"e403f4fd-29"},"imported":[],"importedBy":[{"uid":"e403f4fd-124"}]},"e403f4fd-30":{"id":"/src/assets/burger-menu-svgrepo-com.svg","moduleParts":{"index.cjs":"e403f4fd-31"},"imported":[],"importedBy":[{"uid":"e403f4fd-124"}]},"e403f4fd-32":{"id":"/src/assets/delete-filled-svgrepo-com.svg","moduleParts":{"index.cjs":"e403f4fd-33"},"imported":[],"importedBy":[{"uid":"e403f4fd-124"}]},"e403f4fd-34":{"id":"/src/assets/sun-solid-full.svg","moduleParts":{"index.cjs":"e403f4fd-35"},"imported":[],"importedBy":[{"uid":"e403f4fd-124"}]},"e403f4fd-36":{"id":"/src/assets/moon-solid-full.svg","moduleParts":{"index.cjs":"e403f4fd-37"},"imported":[],"importedBy":[{"uid":"e403f4fd-124"}]},"e403f4fd-38":{"id":"/src/assets/microphone-solid-full.svg","moduleParts":{"index.cjs":"e403f4fd-39"},"imported":[],"importedBy":[{"uid":"e403f4fd-124"}]},"e403f4fd-40":{"id":"/src/lib/components/popover/ui/Popover.tsx","moduleParts":{"index.cjs":"e403f4fd-41"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-121"}],"importedBy":[{"uid":"e403f4fd-125"},{"uid":"e403f4fd-50"}]},"e403f4fd-42":{"id":"/src/lib/components/menu/ui/MenuSelectedIcon.tsx","moduleParts":{"index.cjs":"e403f4fd-43"},"imported":[{"uid":"e403f4fd-12"}],"importedBy":[{"uid":"e403f4fd-44"}]},"e403f4fd-44":{"id":"/src/lib/components/menu/ui/MenuItem.tsx","moduleParts":{"index.cjs":"e403f4fd-45"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-121"},{"uid":"e403f4fd-42"}],"importedBy":[{"uid":"e403f4fd-48"}]},"e403f4fd-46":{"id":"/src/lib/components/menu/styles/index.css","moduleParts":{"index.cjs":"e403f4fd-47"},"imported":[],"importedBy":[{"uid":"e403f4fd-48"}]},"e403f4fd-48":{"id":"/src/lib/components/menu/ui/Menu.tsx","moduleParts":{"index.cjs":"e403f4fd-49"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-121"},{"uid":"e403f4fd-44"},{"uid":"e403f4fd-46"}],"importedBy":[{"uid":"e403f4fd-131"}]},"e403f4fd-50":{"id":"/src/lib/components/popover/ui/PopoverMenu.tsx","moduleParts":{"index.cjs":"e403f4fd-51"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-121"},{"uid":"e403f4fd-40"},{"uid":"e403f4fd-131"},{"uid":"e403f4fd-124"}],"importedBy":[{"uid":"e403f4fd-125"}]},"e403f4fd-52":{"id":"/src/lib/components/switch/styles/index.css","moduleParts":{"index.cjs":"e403f4fd-53"},"imported":[],"importedBy":[{"uid":"e403f4fd-54"}]},"e403f4fd-54":{"id":"/src/lib/components/switch/ui/Switch.tsx","moduleParts":{"index.cjs":"e403f4fd-55"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-121"},{"uid":"e403f4fd-22"},{"uid":"e403f4fd-52"}],"importedBy":[{"uid":"e403f4fd-126"}]},"e403f4fd-56":{"id":"/src/lib/components/chat/ui/ChatMenu.tsx","moduleParts":{"index.cjs":"e403f4fd-57"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-124"},{"uid":"e403f4fd-125"},{"uid":"e403f4fd-20"},{"uid":"e403f4fd-126"}],"importedBy":[{"uid":"e403f4fd-66"}]},"e403f4fd-58":{"id":"/src/lib/components/chat/ui/ChatTextBox.tsx","moduleParts":{"index.cjs":"e403f4fd-59"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-22"},{"uid":"e403f4fd-121"},{"uid":"e403f4fd-20"}],"importedBy":[{"uid":"e403f4fd-66"}]},"e403f4fd-60":{"id":"/src/lib/components/chat/ui/SendButton.tsx","moduleParts":{"index.cjs":"e403f4fd-61"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-124"},{"uid":"e403f4fd-22"},{"uid":"e403f4fd-20"}],"importedBy":[{"uid":"e403f4fd-66"}]},"e403f4fd-62":{"id":"/src/lib/components/chat/hooks/useSpeechToText.ts","moduleParts":{"index.cjs":"e403f4fd-63"},"imported":[{"uid":"e403f4fd-121"}],"importedBy":[{"uid":"e403f4fd-66"}]},"e403f4fd-64":{"id":"/src/lib/components/chat/ui/MicButton.tsx","moduleParts":{"index.cjs":"e403f4fd-65"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-124"}],"importedBy":[{"uid":"e403f4fd-66"}]},"e403f4fd-66":{"id":"/src/lib/components/chat/ui/ChatInput.tsx","moduleParts":{"index.cjs":"e403f4fd-67"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-121"},{"uid":"e403f4fd-20"},{"uid":"e403f4fd-22"},{"uid":"e403f4fd-56"},{"uid":"e403f4fd-58"},{"uid":"e403f4fd-60"},{"uid":"e403f4fd-62"},{"uid":"e403f4fd-64"}],"importedBy":[{"uid":"e403f4fd-108"}]},"e403f4fd-68":{"id":"/src/lib/components/chat/ui/ChatMessageListItem.tsx","moduleParts":{"index.cjs":"e403f4fd-69"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-121"},{"uid":"e403f4fd-20"},{"uid":"e403f4fd-14"}],"importedBy":[{"uid":"e403f4fd-74"}]},"e403f4fd-70":{"id":"/node_modules/react-virtuoso/dist/index.mjs","moduleParts":{"index.cjs":"e403f4fd-71"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-121"},{"uid":"e403f4fd-122"}],"importedBy":[{"uid":"e403f4fd-74"}]},"e403f4fd-72":{"id":"/src/lib/components/chat/ui/ScrollToBottomButton.tsx","moduleParts":{"index.cjs":"e403f4fd-73"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-124"},{"uid":"e403f4fd-121"}],"importedBy":[{"uid":"e403f4fd-74"}]},"e403f4fd-74":{"id":"/src/lib/components/chat/ui/ChatMessageList.tsx","moduleParts":{"index.cjs":"e403f4fd-75"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-121"},{"uid":"e403f4fd-68"},{"uid":"e403f4fd-20"},{"uid":"e403f4fd-70"},{"uid":"e403f4fd-22"},{"uid":"e403f4fd-119"},{"uid":"e403f4fd-72"}],"importedBy":[{"uid":"e403f4fd-108"}]},"e403f4fd-76":{"id":"/src/lib/components/chat/styles/index.css","moduleParts":{"index.cjs":"e403f4fd-77"},"imported":[],"importedBy":[{"uid":"e403f4fd-108"}]},"e403f4fd-78":{"id":"/src/lib/core/sseParser.ts","moduleParts":{"index.cjs":"e403f4fd-79"},"imported":[],"importedBy":[{"uid":"e403f4fd-82"},{"uid":"e403f4fd-90"}]},"e403f4fd-80":{"id":"/src/lib/core/buildIntentPrompt.ts","moduleParts":{"index.cjs":"e403f4fd-81"},"imported":[],"importedBy":[{"uid":"e403f4fd-82"}]},"e403f4fd-82":{"id":"/src/lib/core/llmClient.ts","moduleParts":{"index.cjs":"e403f4fd-83"},"imported":[{"uid":"e403f4fd-78"},{"uid":"e403f4fd-80"}],"importedBy":[{"uid":"e403f4fd-84"}]},"e403f4fd-84":{"id":"/src/lib/components/chat/hooks/useAutoUiChat.ts","moduleParts":{"index.cjs":"e403f4fd-85"},"imported":[{"uid":"e403f4fd-82"},{"uid":"e403f4fd-121"}],"importedBy":[{"uid":"e403f4fd-102"}]},"e403f4fd-86":{"id":"/src/lib/utils/resolveProps.ts","moduleParts":{"index.cjs":"e403f4fd-87"},"imported":[],"importedBy":[{"uid":"e403f4fd-92"}]},"e403f4fd-88":{"id":"/src/lib/core/buildDataAnalyzingPrompt.ts","moduleParts":{"index.cjs":"e403f4fd-89"},"imported":[],"importedBy":[{"uid":"e403f4fd-90"}]},"e403f4fd-90":{"id":"/src/lib/core/extraDataAnalyzingWithLLM.ts","moduleParts":{"index.cjs":"e403f4fd-91"},"imported":[{"uid":"e403f4fd-88"},{"uid":"e403f4fd-78"}],"importedBy":[{"uid":"e403f4fd-92"}]},"e403f4fd-92":{"id":"/src/lib/runtime/stepExecutor.ts","moduleParts":{"index.cjs":"e403f4fd-93"},"imported":[{"uid":"e403f4fd-86"},{"uid":"e403f4fd-90"}],"importedBy":[{"uid":"e403f4fd-94"}]},"e403f4fd-94":{"id":"/src/lib/runtime/runtimeEngine.ts","moduleParts":{"index.cjs":"e403f4fd-95"},"imported":[{"uid":"e403f4fd-92"}],"importedBy":[{"uid":"e403f4fd-102"}]},"e403f4fd-96":{"id":"/src/lib/runtime/rerenderChatFromHistory.ts","moduleParts":{"index.cjs":"e403f4fd-97"},"imported":[],"importedBy":[{"uid":"e403f4fd-100"}]},"e403f4fd-98":{"id":"/src/lib/components/chat/hooks/useRendering.tsx","moduleParts":{"index.cjs":"e403f4fd-99"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-121"}],"importedBy":[{"uid":"e403f4fd-102"},{"uid":"e403f4fd-100"}]},"e403f4fd-100":{"id":"/src/lib/components/chat/hooks/useChatState.tsx","moduleParts":{"index.cjs":"e403f4fd-101"},"imported":[{"uid":"e403f4fd-121"},{"uid":"e403f4fd-96"},{"uid":"e403f4fd-98"}],"importedBy":[{"uid":"e403f4fd-102"}]},"e403f4fd-102":{"id":"/src/lib/components/chat/hooks/useChat.ts","moduleParts":{"index.cjs":"e403f4fd-103"},"imported":[{"uid":"e403f4fd-121"},{"uid":"e403f4fd-84"},{"uid":"e403f4fd-94"},{"uid":"e403f4fd-100"},{"uid":"e403f4fd-98"}],"importedBy":[{"uid":"e403f4fd-108"}]},"e403f4fd-104":{"id":"/src/lib/components/chat/ui/ChatHeader.tsx","moduleParts":{"index.cjs":"e403f4fd-105"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-14"},{"uid":"e403f4fd-20"},{"uid":"e403f4fd-124"}],"importedBy":[{"uid":"e403f4fd-108"}]},"e403f4fd-106":{"id":"/src/lib/components/chat/hooks/useTheme.ts","moduleParts":{"index.cjs":"e403f4fd-107"},"imported":[{"uid":"e403f4fd-121"}],"importedBy":[{"uid":"e403f4fd-108"}]},"e403f4fd-108":{"id":"/src/lib/components/chat/ui/Chat.tsx","moduleParts":{"index.cjs":"e403f4fd-109"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-121"},{"uid":"e403f4fd-66"},{"uid":"e403f4fd-74"},{"uid":"e403f4fd-76"},{"uid":"e403f4fd-102"},{"uid":"e403f4fd-104"},{"uid":"e403f4fd-20"},{"uid":"e403f4fd-14"},{"uid":"e403f4fd-106"}],"importedBy":[{"uid":"e403f4fd-120"},{"uid":"e403f4fd-114"}]},"e403f4fd-110":{"id":"/src/lib/components/chat/context/modalChatContext.tsx","moduleParts":{"index.cjs":"e403f4fd-111"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-121"}],"importedBy":[{"uid":"e403f4fd-114"}]},"e403f4fd-112":{"id":"/src/lib/components/chat/ui/btnOpenChat/index.tsx","moduleParts":{"index.cjs":"e403f4fd-113"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-124"},{"uid":"e403f4fd-22"}],"importedBy":[{"uid":"e403f4fd-114"}]},"e403f4fd-114":{"id":"/src/lib/components/chat/ui/ModalChat.tsx","moduleParts":{"index.cjs":"e403f4fd-115"},"imported":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-121"},{"uid":"e403f4fd-122"},{"uid":"e403f4fd-110"},{"uid":"e403f4fd-112"},{"uid":"e403f4fd-108","dynamic":true}],"importedBy":[{"uid":"e403f4fd-120"}]},"e403f4fd-116":{"id":"/src/lib/index.ts","moduleParts":{"index.cjs":"e403f4fd-117"},"imported":[{"uid":"e403f4fd-118"}],"importedBy":[],"isEntry":true},"e403f4fd-118":{"id":"/src/lib/components/index.ts","moduleParts":{},"imported":[{"uid":"e403f4fd-119"},{"uid":"e403f4fd-120"}],"importedBy":[{"uid":"e403f4fd-116"}]},"e403f4fd-119":{"id":"/src/lib/components/spinner/index.ts","moduleParts":{},"imported":[{"uid":"e403f4fd-18"}],"importedBy":[{"uid":"e403f4fd-118"},{"uid":"e403f4fd-74"}]},"e403f4fd-120":{"id":"/src/lib/components/chat/index.ts","moduleParts":{},"imported":[{"uid":"e403f4fd-108"},{"uid":"e403f4fd-114"}],"importedBy":[{"uid":"e403f4fd-118"}]},"e403f4fd-121":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"e403f4fd-18"},{"uid":"e403f4fd-108"},{"uid":"e403f4fd-114"},{"uid":"e403f4fd-66"},{"uid":"e403f4fd-74"},{"uid":"e403f4fd-102"},{"uid":"e403f4fd-20"},{"uid":"e403f4fd-106"},{"uid":"e403f4fd-110"},{"uid":"e403f4fd-58"},{"uid":"e403f4fd-62"},{"uid":"e403f4fd-68"},{"uid":"e403f4fd-70"},{"uid":"e403f4fd-72"},{"uid":"e403f4fd-84"},{"uid":"e403f4fd-100"},{"uid":"e403f4fd-98"},{"uid":"e403f4fd-130"},{"uid":"e403f4fd-50"},{"uid":"e403f4fd-40"},{"uid":"e403f4fd-54"},{"uid":"e403f4fd-48"},{"uid":"e403f4fd-44"}],"isExternal":true},"e403f4fd-122":{"id":"react-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"e403f4fd-114"},{"uid":"e403f4fd-70"}],"isExternal":true},"e403f4fd-123":{"id":"\u0000commonjsHelpers.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"e403f4fd-12"},{"uid":"e403f4fd-10"},{"uid":"e403f4fd-4"},{"uid":"e403f4fd-8"}]},"e403f4fd-124":{"id":"/src/assets/index.ts","moduleParts":{},"imported":[{"uid":"e403f4fd-24"},{"uid":"e403f4fd-26"},{"uid":"e403f4fd-28"},{"uid":"e403f4fd-30"},{"uid":"e403f4fd-127"},{"uid":"e403f4fd-32"},{"uid":"e403f4fd-128"},{"uid":"e403f4fd-129"},{"uid":"e403f4fd-34"},{"uid":"e403f4fd-36"},{"uid":"e403f4fd-38"}],"importedBy":[{"uid":"e403f4fd-104"},{"uid":"e403f4fd-112"},{"uid":"e403f4fd-56"},{"uid":"e403f4fd-60"},{"uid":"e403f4fd-64"},{"uid":"e403f4fd-72"},{"uid":"e403f4fd-50"}]},"e403f4fd-125":{"id":"/src/lib/components/popover/index.ts","moduleParts":{},"imported":[{"uid":"e403f4fd-50"},{"uid":"e403f4fd-40"}],"importedBy":[{"uid":"e403f4fd-56"}]},"e403f4fd-126":{"id":"/src/lib/components/switch/index.ts","moduleParts":{},"imported":[{"uid":"e403f4fd-54"}],"importedBy":[{"uid":"e403f4fd-56"}]},"e403f4fd-127":{"id":"/src/assets/new-svgrepo-com.svg","moduleParts":{},"imported":[],"importedBy":[{"uid":"e403f4fd-124"}]},"e403f4fd-128":{"id":"/src/assets/settings-gear-svgrepo-com.svg","moduleParts":{},"imported":[],"importedBy":[{"uid":"e403f4fd-124"}]},"e403f4fd-129":{"id":"/src/assets/history-svgrepo-com.svg","moduleParts":{},"imported":[],"importedBy":[{"uid":"e403f4fd-124"}]},"e403f4fd-130":{"id":"\u0000react?commonjs-external","moduleParts":{},"imported":[{"uid":"e403f4fd-121"}],"importedBy":[{"uid":"e403f4fd-8"}]},"e403f4fd-131":{"id":"/src/lib/components/menu/index.ts","moduleParts":{},"imported":[{"uid":"e403f4fd-48"}],"importedBy":[{"uid":"e403f4fd-50"}]}},"env":{"rollup":"4.53.3"},"options":{"gzip":true,"brotli":true,"sourcemap":false}};
4933
4933
 
4934
4934
  const run = () => {
4935
4935
  const width = window.innerWidth;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autoai-ui/autoui",
3
- "version": "0.1.9",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "scripts": {
@@ -28,7 +28,8 @@
28
28
  "registry": "https://registry.npmjs.org/"
29
29
  },
30
30
  "dependencies": {
31
- "react-virtuoso": "^4.14.1"
31
+ "react-virtuoso": "^4.14.1",
32
+ "vite-plugin-css-injected-by-js": "^3.5.2"
32
33
  },
33
34
  "devDependencies": {
34
35
  "vite-plugin-css-injected-by-js": "^3.5.2",