@autoai-ui/autoui 0.1.4 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +73 -73
  2. package/dist/stats.html +1 -1
  3. package/package.json +102 -102
package/README.md CHANGED
@@ -1,73 +1,73 @@
1
- # React + TypeScript + Vite
2
-
3
- This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4
-
5
- Currently, two official plugins are available:
6
-
7
- - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) (or [oxc](https://oxc.rs) when used in [rolldown-vite](https://vite.dev/guide/rolldown)) for Fast Refresh
8
- - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
9
-
10
- ## React Compiler
11
-
12
- The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
13
-
14
- ## Expanding the ESLint configuration
15
-
16
- If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
17
-
18
- ```js
19
- export default defineConfig([
20
- globalIgnores(['dist']),
21
- {
22
- files: ['**/*.{ts,tsx}'],
23
- extends: [
24
- // Other configs...
25
-
26
- // Remove tseslint.configs.recommended and replace with this
27
- tseslint.configs.recommendedTypeChecked,
28
- // Alternatively, use this for stricter rules
29
- tseslint.configs.strictTypeChecked,
30
- // Optionally, add this for stylistic rules
31
- tseslint.configs.stylisticTypeChecked,
32
-
33
- // Other configs...
34
- ],
35
- languageOptions: {
36
- parserOptions: {
37
- project: ['./tsconfig.node.json', './tsconfig.app.json'],
38
- tsconfigRootDir: import.meta.dirname,
39
- },
40
- // other options...
41
- },
42
- },
43
- ]);
44
- ```
45
-
46
- You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
47
-
48
- ```js
49
- // eslint.config.js
50
- import reactX from 'eslint-plugin-react-x';
51
- import reactDom from 'eslint-plugin-react-dom';
52
-
53
- export default defineConfig([
54
- globalIgnores(['dist']),
55
- {
56
- files: ['**/*.{ts,tsx}'],
57
- extends: [
58
- // Other configs...
59
- // Enable lint rules for React
60
- reactX.configs['recommended-typescript'],
61
- // Enable lint rules for React DOM
62
- reactDom.configs.recommended,
63
- ],
64
- languageOptions: {
65
- parserOptions: {
66
- project: ['./tsconfig.node.json', './tsconfig.app.json'],
67
- tsconfigRootDir: import.meta.dirname,
68
- },
69
- // other options...
70
- },
71
- },
72
- ]);
73
- ```
1
+ # React + TypeScript + Vite
2
+
3
+ This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4
+
5
+ Currently, two official plugins are available:
6
+
7
+ - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) (or [oxc](https://oxc.rs) when used in [rolldown-vite](https://vite.dev/guide/rolldown)) for Fast Refresh
8
+ - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
9
+
10
+ ## React Compiler
11
+
12
+ The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
13
+
14
+ ## Expanding the ESLint configuration
15
+
16
+ If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
17
+
18
+ ```js
19
+ export default defineConfig([
20
+ globalIgnores(['dist']),
21
+ {
22
+ files: ['**/*.{ts,tsx}'],
23
+ extends: [
24
+ // Other configs...
25
+
26
+ // Remove tseslint.configs.recommended and replace with this
27
+ tseslint.configs.recommendedTypeChecked,
28
+ // Alternatively, use this for stricter rules
29
+ tseslint.configs.strictTypeChecked,
30
+ // Optionally, add this for stylistic rules
31
+ tseslint.configs.stylisticTypeChecked,
32
+
33
+ // Other configs...
34
+ ],
35
+ languageOptions: {
36
+ parserOptions: {
37
+ project: ['./tsconfig.node.json', './tsconfig.app.json'],
38
+ tsconfigRootDir: import.meta.dirname,
39
+ },
40
+ // other options...
41
+ },
42
+ },
43
+ ]);
44
+ ```
45
+
46
+ You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
47
+
48
+ ```js
49
+ // eslint.config.js
50
+ import reactX from 'eslint-plugin-react-x';
51
+ import reactDom from 'eslint-plugin-react-dom';
52
+
53
+ export default defineConfig([
54
+ globalIgnores(['dist']),
55
+ {
56
+ files: ['**/*.{ts,tsx}'],
57
+ extends: [
58
+ // Other configs...
59
+ // Enable lint rules for React
60
+ reactX.configs['recommended-typescript'],
61
+ // Enable lint rules for React DOM
62
+ reactDom.configs.recommended,
63
+ ],
64
+ languageOptions: {
65
+ parserOptions: {
66
+ project: ['./tsconfig.node.json', './tsconfig.app.json'],
67
+ tsconfigRootDir: import.meta.dirname,
68
+ },
69
+ // other options...
70
+ },
71
+ },
72
+ ]);
73
+ ```
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":"\u0000C:/Users/deres/Робочий стіл/autoui/AUTOUI/node_modules/react","children":[{"uid":"b06bcc6a-1","name":"jsx-runtime.js?commonjs-module"},{"name":"cjs","children":[{"uid":"b06bcc6a-3","name":"react-jsx-runtime.production.js?commonjs-exports"},{"uid":"b06bcc6a-7","name":"react-jsx-runtime.development.js?commonjs-exports"}]},{"uid":"b06bcc6a-13","name":"jsx-runtime.js?commonjs-es-import"}]},{"name":"C:/Users/deres/Робочий стіл/autoui/AUTOUI","children":[{"name":"node_modules","children":[{"name":"react","children":[{"name":"cjs","children":[{"uid":"b06bcc6a-5","name":"react-jsx-runtime.production.js"},{"uid":"b06bcc6a-9","name":"react-jsx-runtime.development.js"}]},{"uid":"b06bcc6a-11","name":"jsx-runtime.js"}]},{"name":"clsx/dist/clsx.mjs","uid":"b06bcc6a-15"},{"name":"react-virtuoso/dist/index.mjs","uid":"b06bcc6a-33"}]},{"name":"src","children":[{"name":"lib","children":[{"name":"components","children":[{"name":"spinner/ui/Spinner.tsx","uid":"b06bcc6a-17"},{"name":"chat","children":[{"name":"context","children":[{"uid":"b06bcc6a-19","name":"chatContext.tsx"},{"uid":"b06bcc6a-63","name":"modalChatContext.tsx"}]},{"name":"ui","children":[{"uid":"b06bcc6a-29","name":"ChatInput.tsx"},{"uid":"b06bcc6a-31","name":"ChatMessageListItem.tsx"},{"uid":"b06bcc6a-35","name":"ChatMessageList.tsx"},{"uid":"b06bcc6a-59","name":"ChatHeader.tsx"},{"uid":"b06bcc6a-61","name":"Chat.tsx"},{"name":"btnOpenChat/index.tsx","uid":"b06bcc6a-65"},{"uid":"b06bcc6a-67","name":"ModalChat.tsx"}]},{"name":"styles/index.css","uid":"b06bcc6a-37"},{"name":"hooks","children":[{"uid":"b06bcc6a-43","name":"useAutoUiChat.ts"},{"uid":"b06bcc6a-53","name":"useRendering.tsx"},{"uid":"b06bcc6a-55","name":"useChatState.tsx"},{"uid":"b06bcc6a-57","name":"useChat.ts"}]}]}]},{"name":"utils","children":[{"uid":"b06bcc6a-21","name":"clsx.ts"},{"uid":"b06bcc6a-45","name":"resolveProps.ts"}]},{"name":"core","children":[{"uid":"b06bcc6a-39","name":"buildIntentPrompt.ts"},{"uid":"b06bcc6a-41","name":"llmClient.ts"}]},{"name":"runtime","children":[{"uid":"b06bcc6a-47","name":"stepExecutor.ts"},{"uid":"b06bcc6a-49","name":"runtimeEngine.ts"},{"uid":"b06bcc6a-51","name":"rerenderChatFromHistory.ts"}]},{"uid":"b06bcc6a-69","name":"index.ts"}]},{"name":"assets","children":[{"uid":"b06bcc6a-23","name":"plus-large-svgrepo-com.svg"},{"uid":"b06bcc6a-25","name":"xmark-svgrepo-com.svg"},{"uid":"b06bcc6a-27","name":"arrow-sm-up-svgrepo-com.svg"}]}]}]}]}],"isRoot":true},"nodeParts":{"b06bcc6a-1":{"renderedLength":31,"gzipLength":51,"brotliLength":35,"metaUid":"b06bcc6a-0"},"b06bcc6a-3":{"renderedLength":36,"gzipLength":56,"brotliLength":40,"metaUid":"b06bcc6a-2"},"b06bcc6a-5":{"renderedLength":1294,"gzipLength":555,"brotliLength":454,"metaUid":"b06bcc6a-4"},"b06bcc6a-7":{"renderedLength":37,"gzipLength":57,"brotliLength":35,"metaUid":"b06bcc6a-6"},"b06bcc6a-9":{"renderedLength":13140,"gzipLength":3427,"brotliLength":2935,"metaUid":"b06bcc6a-8"},"b06bcc6a-11":{"renderedLength":355,"gzipLength":183,"brotliLength":151,"metaUid":"b06bcc6a-10"},"b06bcc6a-13":{"renderedLength":44,"gzipLength":57,"brotliLength":48,"metaUid":"b06bcc6a-12"},"b06bcc6a-15":{"renderedLength":364,"gzipLength":231,"brotliLength":193,"metaUid":"b06bcc6a-14"},"b06bcc6a-17":{"renderedLength":3643,"gzipLength":961,"brotliLength":847,"metaUid":"b06bcc6a-16"},"b06bcc6a-19":{"renderedLength":403,"gzipLength":248,"brotliLength":214,"metaUid":"b06bcc6a-18"},"b06bcc6a-21":{"renderedLength":73,"gzipLength":87,"brotliLength":63,"metaUid":"b06bcc6a-20"},"b06bcc6a-23":{"renderedLength":447,"gzipLength":305,"brotliLength":263,"metaUid":"b06bcc6a-22"},"b06bcc6a-25":{"renderedLength":456,"gzipLength":311,"brotliLength":264,"metaUid":"b06bcc6a-24"},"b06bcc6a-27":{"renderedLength":469,"gzipLength":314,"brotliLength":274,"metaUid":"b06bcc6a-26"},"b06bcc6a-29":{"renderedLength":1267,"gzipLength":483,"brotliLength":410,"metaUid":"b06bcc6a-28"},"b06bcc6a-31":{"renderedLength":525,"gzipLength":293,"brotliLength":238,"metaUid":"b06bcc6a-30"},"b06bcc6a-33":{"renderedLength":87584,"gzipLength":22898,"brotliLength":20045,"metaUid":"b06bcc6a-32"},"b06bcc6a-35":{"renderedLength":982,"gzipLength":486,"brotliLength":423,"metaUid":"b06bcc6a-34"},"b06bcc6a-37":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"b06bcc6a-36"},"b06bcc6a-39":{"renderedLength":2657,"gzipLength":1173,"brotliLength":925,"metaUid":"b06bcc6a-38"},"b06bcc6a-41":{"renderedLength":1014,"gzipLength":531,"brotliLength":471,"metaUid":"b06bcc6a-40"},"b06bcc6a-43":{"renderedLength":706,"gzipLength":373,"brotliLength":292,"metaUid":"b06bcc6a-42"},"b06bcc6a-45":{"renderedLength":772,"gzipLength":365,"brotliLength":306,"metaUid":"b06bcc6a-44"},"b06bcc6a-47":{"renderedLength":2362,"gzipLength":850,"brotliLength":744,"metaUid":"b06bcc6a-46"},"b06bcc6a-49":{"renderedLength":1980,"gzipLength":579,"brotliLength":476,"metaUid":"b06bcc6a-48"},"b06bcc6a-51":{"renderedLength":618,"gzipLength":284,"brotliLength":239,"metaUid":"b06bcc6a-50"},"b06bcc6a-53":{"renderedLength":684,"gzipLength":347,"brotliLength":305,"metaUid":"b06bcc6a-52"},"b06bcc6a-55":{"renderedLength":1117,"gzipLength":417,"brotliLength":348,"metaUid":"b06bcc6a-54"},"b06bcc6a-57":{"renderedLength":2141,"gzipLength":764,"brotliLength":657,"metaUid":"b06bcc6a-56"},"b06bcc6a-59":{"renderedLength":700,"gzipLength":324,"brotliLength":285,"metaUid":"b06bcc6a-58"},"b06bcc6a-61":{"renderedLength":692,"gzipLength":332,"brotliLength":277,"metaUid":"b06bcc6a-60"},"b06bcc6a-63":{"renderedLength":476,"gzipLength":281,"brotliLength":234,"metaUid":"b06bcc6a-62"},"b06bcc6a-65":{"renderedLength":427,"gzipLength":269,"brotliLength":239,"metaUid":"b06bcc6a-64"},"b06bcc6a-67":{"renderedLength":1210,"gzipLength":461,"brotliLength":386,"metaUid":"b06bcc6a-66"},"b06bcc6a-69":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"metaUid":"b06bcc6a-68"}},"nodeMetas":{"b06bcc6a-0":{"id":"\u0000C:/Users/deres/Робочий стіл/autoui/AUTOUI/node_modules/react/jsx-runtime.js?commonjs-module","moduleParts":{"index.cjs":"b06bcc6a-1"},"imported":[],"importedBy":[{"uid":"b06bcc6a-10"}]},"b06bcc6a-2":{"id":"\u0000C:/Users/deres/Робочий стіл/autoui/AUTOUI/node_modules/react/cjs/react-jsx-runtime.production.js?commonjs-exports","moduleParts":{"index.cjs":"b06bcc6a-3"},"imported":[],"importedBy":[{"uid":"b06bcc6a-4"}]},"b06bcc6a-4":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/node_modules/react/cjs/react-jsx-runtime.production.js","moduleParts":{"index.cjs":"b06bcc6a-5"},"imported":[{"uid":"b06bcc6a-75"},{"uid":"b06bcc6a-2"}],"importedBy":[{"uid":"b06bcc6a-10"}]},"b06bcc6a-6":{"id":"\u0000C:/Users/deres/Робочий стіл/autoui/AUTOUI/node_modules/react/cjs/react-jsx-runtime.development.js?commonjs-exports","moduleParts":{"index.cjs":"b06bcc6a-7"},"imported":[],"importedBy":[{"uid":"b06bcc6a-8"}]},"b06bcc6a-8":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/node_modules/react/cjs/react-jsx-runtime.development.js","moduleParts":{"index.cjs":"b06bcc6a-9"},"imported":[{"uid":"b06bcc6a-75"},{"uid":"b06bcc6a-6"},{"uid":"b06bcc6a-77"}],"importedBy":[{"uid":"b06bcc6a-10"}]},"b06bcc6a-10":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/node_modules/react/jsx-runtime.js","moduleParts":{"index.cjs":"b06bcc6a-11"},"imported":[{"uid":"b06bcc6a-75"},{"uid":"b06bcc6a-0"},{"uid":"b06bcc6a-4"},{"uid":"b06bcc6a-8"}],"importedBy":[{"uid":"b06bcc6a-12"}]},"b06bcc6a-12":{"id":"\u0000C:/Users/deres/Робочий стіл/autoui/AUTOUI/node_modules/react/jsx-runtime.js?commonjs-es-import","moduleParts":{"index.cjs":"b06bcc6a-13"},"imported":[{"uid":"b06bcc6a-75"},{"uid":"b06bcc6a-10"}],"importedBy":[{"uid":"b06bcc6a-16"},{"uid":"b06bcc6a-60"},{"uid":"b06bcc6a-66"},{"uid":"b06bcc6a-28"},{"uid":"b06bcc6a-34"},{"uid":"b06bcc6a-58"},{"uid":"b06bcc6a-18"},{"uid":"b06bcc6a-62"},{"uid":"b06bcc6a-64"},{"uid":"b06bcc6a-30"},{"uid":"b06bcc6a-32"},{"uid":"b06bcc6a-52"}]},"b06bcc6a-14":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/node_modules/clsx/dist/clsx.mjs","moduleParts":{"index.cjs":"b06bcc6a-15"},"imported":[],"importedBy":[{"uid":"b06bcc6a-16"},{"uid":"b06bcc6a-60"},{"uid":"b06bcc6a-58"},{"uid":"b06bcc6a-30"}]},"b06bcc6a-16":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/spinner/ui/Spinner.tsx","moduleParts":{"index.cjs":"b06bcc6a-17"},"imported":[{"uid":"b06bcc6a-12"},{"uid":"b06bcc6a-14"},{"uid":"b06bcc6a-73"}],"importedBy":[{"uid":"b06bcc6a-71"}]},"b06bcc6a-18":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/chat/context/chatContext.tsx","moduleParts":{"index.cjs":"b06bcc6a-19"},"imported":[{"uid":"b06bcc6a-12"},{"uid":"b06bcc6a-73"}],"importedBy":[{"uid":"b06bcc6a-60"},{"uid":"b06bcc6a-28"},{"uid":"b06bcc6a-34"},{"uid":"b06bcc6a-58"},{"uid":"b06bcc6a-30"}]},"b06bcc6a-20":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/utils/clsx.ts","moduleParts":{"index.cjs":"b06bcc6a-21"},"imported":[],"importedBy":[{"uid":"b06bcc6a-28"},{"uid":"b06bcc6a-34"},{"uid":"b06bcc6a-64"}]},"b06bcc6a-22":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/assets/plus-large-svgrepo-com.svg","moduleParts":{"index.cjs":"b06bcc6a-23"},"imported":[],"importedBy":[{"uid":"b06bcc6a-76"}]},"b06bcc6a-24":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/assets/xmark-svgrepo-com.svg","moduleParts":{"index.cjs":"b06bcc6a-25"},"imported":[],"importedBy":[{"uid":"b06bcc6a-76"}]},"b06bcc6a-26":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/assets/arrow-sm-up-svgrepo-com.svg","moduleParts":{"index.cjs":"b06bcc6a-27"},"imported":[],"importedBy":[{"uid":"b06bcc6a-76"}]},"b06bcc6a-28":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/chat/ui/ChatInput.tsx","moduleParts":{"index.cjs":"b06bcc6a-29"},"imported":[{"uid":"b06bcc6a-12"},{"uid":"b06bcc6a-73"},{"uid":"b06bcc6a-18"},{"uid":"b06bcc6a-20"},{"uid":"b06bcc6a-76"}],"importedBy":[{"uid":"b06bcc6a-60"}]},"b06bcc6a-30":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/chat/ui/ChatMessageListItem.tsx","moduleParts":{"index.cjs":"b06bcc6a-31"},"imported":[{"uid":"b06bcc6a-12"},{"uid":"b06bcc6a-73"},{"uid":"b06bcc6a-18"},{"uid":"b06bcc6a-14"}],"importedBy":[{"uid":"b06bcc6a-34"}]},"b06bcc6a-32":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/node_modules/react-virtuoso/dist/index.mjs","moduleParts":{"index.cjs":"b06bcc6a-33"},"imported":[{"uid":"b06bcc6a-12"},{"uid":"b06bcc6a-73"},{"uid":"b06bcc6a-74"}],"importedBy":[{"uid":"b06bcc6a-34"}]},"b06bcc6a-34":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/chat/ui/ChatMessageList.tsx","moduleParts":{"index.cjs":"b06bcc6a-35"},"imported":[{"uid":"b06bcc6a-12"},{"uid":"b06bcc6a-73"},{"uid":"b06bcc6a-30"},{"uid":"b06bcc6a-18"},{"uid":"b06bcc6a-32"},{"uid":"b06bcc6a-20"},{"uid":"b06bcc6a-71"}],"importedBy":[{"uid":"b06bcc6a-60"}]},"b06bcc6a-36":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/chat/styles/index.css","moduleParts":{"index.cjs":"b06bcc6a-37"},"imported":[],"importedBy":[{"uid":"b06bcc6a-60"}]},"b06bcc6a-38":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/core/buildIntentPrompt.ts","moduleParts":{"index.cjs":"b06bcc6a-39"},"imported":[],"importedBy":[{"uid":"b06bcc6a-40"}]},"b06bcc6a-40":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/core/llmClient.ts","moduleParts":{"index.cjs":"b06bcc6a-41"},"imported":[{"uid":"b06bcc6a-38"}],"importedBy":[{"uid":"b06bcc6a-42"}]},"b06bcc6a-42":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/chat/hooks/useAutoUiChat.ts","moduleParts":{"index.cjs":"b06bcc6a-43"},"imported":[{"uid":"b06bcc6a-40"},{"uid":"b06bcc6a-73"}],"importedBy":[{"uid":"b06bcc6a-56"}]},"b06bcc6a-44":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/utils/resolveProps.ts","moduleParts":{"index.cjs":"b06bcc6a-45"},"imported":[],"importedBy":[{"uid":"b06bcc6a-46"}]},"b06bcc6a-46":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/runtime/stepExecutor.ts","moduleParts":{"index.cjs":"b06bcc6a-47"},"imported":[{"uid":"b06bcc6a-44"}],"importedBy":[{"uid":"b06bcc6a-48"}]},"b06bcc6a-48":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/runtime/runtimeEngine.ts","moduleParts":{"index.cjs":"b06bcc6a-49"},"imported":[{"uid":"b06bcc6a-46"}],"importedBy":[{"uid":"b06bcc6a-56"}]},"b06bcc6a-50":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/runtime/rerenderChatFromHistory.ts","moduleParts":{"index.cjs":"b06bcc6a-51"},"imported":[],"importedBy":[{"uid":"b06bcc6a-54"}]},"b06bcc6a-52":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/chat/hooks/useRendering.tsx","moduleParts":{"index.cjs":"b06bcc6a-53"},"imported":[{"uid":"b06bcc6a-12"},{"uid":"b06bcc6a-73"}],"importedBy":[{"uid":"b06bcc6a-56"},{"uid":"b06bcc6a-54"}]},"b06bcc6a-54":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/chat/hooks/useChatState.tsx","moduleParts":{"index.cjs":"b06bcc6a-55"},"imported":[{"uid":"b06bcc6a-73"},{"uid":"b06bcc6a-50"},{"uid":"b06bcc6a-52"}],"importedBy":[{"uid":"b06bcc6a-56"}]},"b06bcc6a-56":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/chat/hooks/useChat.ts","moduleParts":{"index.cjs":"b06bcc6a-57"},"imported":[{"uid":"b06bcc6a-73"},{"uid":"b06bcc6a-42"},{"uid":"b06bcc6a-48"},{"uid":"b06bcc6a-54"},{"uid":"b06bcc6a-52"}],"importedBy":[{"uid":"b06bcc6a-60"}]},"b06bcc6a-58":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/chat/ui/ChatHeader.tsx","moduleParts":{"index.cjs":"b06bcc6a-59"},"imported":[{"uid":"b06bcc6a-12"},{"uid":"b06bcc6a-14"},{"uid":"b06bcc6a-18"},{"uid":"b06bcc6a-76"}],"importedBy":[{"uid":"b06bcc6a-60"}]},"b06bcc6a-60":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/chat/ui/Chat.tsx","moduleParts":{"index.cjs":"b06bcc6a-61"},"imported":[{"uid":"b06bcc6a-12"},{"uid":"b06bcc6a-73"},{"uid":"b06bcc6a-28"},{"uid":"b06bcc6a-34"},{"uid":"b06bcc6a-36"},{"uid":"b06bcc6a-56"},{"uid":"b06bcc6a-58"},{"uid":"b06bcc6a-18"},{"uid":"b06bcc6a-14"}],"importedBy":[{"uid":"b06bcc6a-72"},{"uid":"b06bcc6a-66"}]},"b06bcc6a-62":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/chat/context/modalChatContext.tsx","moduleParts":{"index.cjs":"b06bcc6a-63"},"imported":[{"uid":"b06bcc6a-12"},{"uid":"b06bcc6a-73"}],"importedBy":[{"uid":"b06bcc6a-66"}]},"b06bcc6a-64":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/chat/ui/btnOpenChat/index.tsx","moduleParts":{"index.cjs":"b06bcc6a-65"},"imported":[{"uid":"b06bcc6a-12"},{"uid":"b06bcc6a-76"},{"uid":"b06bcc6a-20"}],"importedBy":[{"uid":"b06bcc6a-66"}]},"b06bcc6a-66":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/chat/ui/ModalChat.tsx","moduleParts":{"index.cjs":"b06bcc6a-67"},"imported":[{"uid":"b06bcc6a-12"},{"uid":"b06bcc6a-73"},{"uid":"b06bcc6a-74"},{"uid":"b06bcc6a-62"},{"uid":"b06bcc6a-64"},{"uid":"b06bcc6a-60","dynamic":true}],"importedBy":[{"uid":"b06bcc6a-72"}]},"b06bcc6a-68":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/index.ts","moduleParts":{"index.cjs":"b06bcc6a-69"},"imported":[{"uid":"b06bcc6a-70"}],"importedBy":[],"isEntry":true},"b06bcc6a-70":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/index.ts","moduleParts":{},"imported":[{"uid":"b06bcc6a-71"},{"uid":"b06bcc6a-72"}],"importedBy":[{"uid":"b06bcc6a-68"}]},"b06bcc6a-71":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/spinner/index.ts","moduleParts":{},"imported":[{"uid":"b06bcc6a-16"}],"importedBy":[{"uid":"b06bcc6a-70"},{"uid":"b06bcc6a-34"}]},"b06bcc6a-72":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/lib/components/chat/index.ts","moduleParts":{},"imported":[{"uid":"b06bcc6a-60"},{"uid":"b06bcc6a-66"}],"importedBy":[{"uid":"b06bcc6a-70"}]},"b06bcc6a-73":{"id":"react","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bcc6a-16"},{"uid":"b06bcc6a-60"},{"uid":"b06bcc6a-66"},{"uid":"b06bcc6a-28"},{"uid":"b06bcc6a-34"},{"uid":"b06bcc6a-56"},{"uid":"b06bcc6a-18"},{"uid":"b06bcc6a-62"},{"uid":"b06bcc6a-30"},{"uid":"b06bcc6a-32"},{"uid":"b06bcc6a-42"},{"uid":"b06bcc6a-54"},{"uid":"b06bcc6a-52"},{"uid":"b06bcc6a-77"}],"isExternal":true},"b06bcc6a-74":{"id":"react-dom","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bcc6a-66"},{"uid":"b06bcc6a-32"}],"isExternal":true},"b06bcc6a-75":{"id":"\u0000commonjsHelpers.js","moduleParts":{},"imported":[],"importedBy":[{"uid":"b06bcc6a-12"},{"uid":"b06bcc6a-10"},{"uid":"b06bcc6a-4"},{"uid":"b06bcc6a-8"}]},"b06bcc6a-76":{"id":"C:/Users/deres/Робочий стіл/autoui/AUTOUI/src/assets/index.ts","moduleParts":{},"imported":[{"uid":"b06bcc6a-22"},{"uid":"b06bcc6a-24"},{"uid":"b06bcc6a-26"}],"importedBy":[{"uid":"b06bcc6a-28"},{"uid":"b06bcc6a-58"},{"uid":"b06bcc6a-64"}]},"b06bcc6a-77":{"id":"\u0000react?commonjs-external","moduleParts":{},"imported":[{"uid":"b06bcc6a-73"}],"importedBy":[{"uid":"b06bcc6a-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":"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}};
4933
4933
 
4934
4934
  const run = () => {
4935
4935
  const width = window.innerWidth;
package/package.json CHANGED
@@ -1,102 +1,102 @@
1
- {
2
- "name": "@autoai-ui/autoui",
3
- "version": "0.1.4",
4
- "type": "module",
5
- "private": false,
6
- "scripts": {
7
- "dev": "vite",
8
- "build": "tsc -b && vite build",
9
- "build:lib": "vite build --config vite.config.lib.ts",
10
- "pack": "npm run build:lib && npm pack",
11
- "lint": "eslint .",
12
- "test": "",
13
- "lint:fix": "eslint . --fix",
14
- "format": "prettier --write .",
15
- "format:check": "prettier --check .",
16
- "preview": "vite preview",
17
- "deploy": "npm version patch && git push && git push --tags && vite build && npm publish"
18
- },
19
- "repository": {
20
- "type": "git",
21
- "url": "git+https://github.com/Auto-UI-AI/AUTOUI.git"
22
- },
23
- "files": [
24
- "dist"
25
- ],
26
- "publishConfig": {
27
- "access": "public",
28
- "registry": "https://registry.npmjs.org/"
29
- },
30
- "dependencies": {
31
- "react-virtuoso": "^4.14.1"
32
- },
33
- "devDependencies": {
34
- "vite-plugin-css-injected-by-js": "^3.5.2",
35
- "@changesets/cli": "^2.29.7",
36
- "@dnd-kit/core": "^6.3.1",
37
- "@dnd-kit/modifiers": "^9.0.0",
38
- "@dnd-kit/sortable": "^10.0.0",
39
- "@dnd-kit/utilities": "^3.2.2",
40
- "@eslint/js": "^9.36.0",
41
- "@radix-ui/react-scroll-area": "^1.2.10",
42
- "@radix-ui/react-separator": "^1.1.8",
43
- "@radix-ui/react-slot": "^1.2.4",
44
- "@semantic-release/changelog": "^6.0.3",
45
- "@semantic-release/git": "^10.0.1",
46
- "@semantic-release/github": "^12.0.2",
47
- "@semantic-release/npm": "^13.1.2",
48
- "@tailwindcss/postcss": "^4.1.16",
49
- "@tailwindcss/vite": "^4.1.16",
50
- "@tanstack/react-table": "^8.21.3",
51
- "@types/node": "^24.9.2",
52
- "@types/react": "^19.1.16",
53
- "@types/react-dom": "^19.1.9",
54
- "@vitejs/plugin-react": "^5.0.4",
55
- "autoprefixer": "^10.4.21",
56
- "class-variance-authority": "^0.7.1",
57
- "clsx": "^2.1.1",
58
- "date-fns": "^4.1.0",
59
- "eslint": "^9.36.0",
60
- "eslint-config-prettier": "^10.1.8",
61
- "eslint-plugin-no-secrets": "^0.8.9",
62
- "eslint-plugin-prettier": "^5.5.4",
63
- "eslint-plugin-react-hooks": "^5.2.0",
64
- "eslint-plugin-react-refresh": "^0.4.22",
65
- "eslint-plugin-unicorn": "^56.0.0",
66
- "globals": "^16.4.0",
67
- "lucide-react": "^0.548.0",
68
- "next-themes": "^0.4.6",
69
- "postcss": "^8.5.6",
70
- "prettier": "^3.6.2",
71
- "radix-ui": "^1.4.3",
72
- "react-day-picker": "^9.11.1",
73
- "react-router-dom": "^7.9.5",
74
- "recharts": "^2.15.4",
75
- "rollup-plugin-visualizer": "^6.0.5",
76
- "semantic-release": "^25.0.2",
77
- "sonner": "^2.0.7",
78
- "tailwind-merge": "^3.3.1",
79
- "tailwindcss": "^4.1.16",
80
- "tailwindcss-animate": "^1.0.7",
81
- "typescript": "~5.9.3",
82
- "typescript-eslint": "^8.45.0",
83
- "vite": "^7.1.7",
84
- "vite-plugin-dts": "^4.5.4",
85
- "zod": "^4.1.12",
86
- "zustand": "^5.0.8"
87
- },
88
- "peerDependencies": {
89
- "react": ">=19.0.0 < 20.0.0",
90
- "react-dom": ">=19.0.0 <20.0.0"
91
- },
92
- "exports": {
93
- ".": {
94
- "types": "./dist/index.d.ts",
95
- "import": "./dist/index.mjs",
96
- "require": "./dist/index.cjs"
97
- }
98
- },
99
- "types": "dist/index.d.ts",
100
- "module": "dist/index.mjs",
101
- "main": "dist/index.cjs"
102
- }
1
+ {
2
+ "name": "@autoai-ui/autoui",
3
+ "version": "0.1.6",
4
+ "type": "module",
5
+ "private": false,
6
+ "scripts": {
7
+ "dev": "vite",
8
+ "build": "tsc -b && vite build",
9
+ "build:lib": "vite build --config vite.config.lib.ts",
10
+ "pack": "npm run build:lib && npm pack",
11
+ "lint": "eslint .",
12
+ "test": "",
13
+ "lint:fix": "eslint . --fix",
14
+ "format": "prettier --write .",
15
+ "format:check": "prettier --check .",
16
+ "preview": "vite preview",
17
+ "deploy": "npm version patch && git push && git push --tags && vite build && npm publish"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/Auto-UI-AI/AUTOUI.git"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "publishConfig": {
27
+ "access": "public",
28
+ "registry": "https://registry.npmjs.org/"
29
+ },
30
+ "dependencies": {
31
+ "react-virtuoso": "^4.14.1"
32
+ },
33
+ "devDependencies": {
34
+ "vite-plugin-css-injected-by-js": "^3.5.2",
35
+ "@changesets/cli": "^2.29.7",
36
+ "@dnd-kit/core": "^6.3.1",
37
+ "@dnd-kit/modifiers": "^9.0.0",
38
+ "@dnd-kit/sortable": "^10.0.0",
39
+ "@dnd-kit/utilities": "^3.2.2",
40
+ "@eslint/js": "^9.36.0",
41
+ "@radix-ui/react-scroll-area": "^1.2.10",
42
+ "@radix-ui/react-separator": "^1.1.8",
43
+ "@radix-ui/react-slot": "^1.2.4",
44
+ "@semantic-release/changelog": "^6.0.3",
45
+ "@semantic-release/git": "^10.0.1",
46
+ "@semantic-release/github": "^12.0.2",
47
+ "@semantic-release/npm": "^13.1.2",
48
+ "@tailwindcss/postcss": "^4.1.16",
49
+ "@tailwindcss/vite": "^4.1.16",
50
+ "@tanstack/react-table": "^8.21.3",
51
+ "@types/node": "^24.9.2",
52
+ "@types/react": "^19.1.16",
53
+ "@types/react-dom": "^19.1.9",
54
+ "@vitejs/plugin-react": "^5.0.4",
55
+ "autoprefixer": "^10.4.21",
56
+ "class-variance-authority": "^0.7.1",
57
+ "clsx": "^2.1.1",
58
+ "date-fns": "^4.1.0",
59
+ "eslint": "^9.36.0",
60
+ "eslint-config-prettier": "^10.1.8",
61
+ "eslint-plugin-no-secrets": "^0.8.9",
62
+ "eslint-plugin-prettier": "^5.5.4",
63
+ "eslint-plugin-react-hooks": "^5.2.0",
64
+ "eslint-plugin-react-refresh": "^0.4.22",
65
+ "eslint-plugin-unicorn": "^56.0.0",
66
+ "globals": "^16.4.0",
67
+ "lucide-react": "^0.548.0",
68
+ "next-themes": "^0.4.6",
69
+ "postcss": "^8.5.6",
70
+ "prettier": "^3.6.2",
71
+ "radix-ui": "^1.4.3",
72
+ "react-day-picker": "^9.11.1",
73
+ "react-router-dom": "^7.9.5",
74
+ "recharts": "^2.15.4",
75
+ "rollup-plugin-visualizer": "^6.0.5",
76
+ "semantic-release": "^25.0.2",
77
+ "sonner": "^2.0.7",
78
+ "tailwind-merge": "^3.3.1",
79
+ "tailwindcss": "^4.1.16",
80
+ "tailwindcss-animate": "^1.0.7",
81
+ "typescript": "~5.9.3",
82
+ "typescript-eslint": "^8.45.0",
83
+ "vite": "^7.1.7",
84
+ "vite-plugin-dts": "^4.5.4",
85
+ "zod": "^4.1.12",
86
+ "zustand": "^5.0.8"
87
+ },
88
+ "peerDependencies": {
89
+ "react": ">=19.0.0 < 20.0.0",
90
+ "react-dom": ">=19.0.0 <20.0.0"
91
+ },
92
+ "exports": {
93
+ ".": {
94
+ "types": "./dist/index.d.ts",
95
+ "import": "./dist/index.mjs",
96
+ "require": "./dist/index.cjs"
97
+ }
98
+ },
99
+ "types": "dist/index.d.ts",
100
+ "module": "dist/index.mjs",
101
+ "main": "dist/index.cjs"
102
+ }