@autoai-ui/autoui 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/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/index.cjs CHANGED
@@ -1,3 +1,4 @@
1
+ (function(){"use strict";try{if(typeof document<"u"){var a=document.createElement("style");a.appendChild(document.createTextNode(":root{--autoui-bg: #ffffff;--autoui-bg-alt: #f4f4f5;--autoui-text: #111111;--autoui-accent: #007aff;--autoui-border: #e5e5e5}[data-theme=dark]{--autoui-bg: #1c1c1e;--autoui-bg-alt: #2c2c2e;--autoui-text: #f2f2f7;--autoui-accent: #0a84ff;--autoui-border: #3a3a3c}.autoui-chat{background:var(--autoui-bg);color:var(--autoui-text);border:1px solid var(--autoui-border);border-radius:12px;display:flex;flex-direction:column;height:480px;width:360px;overflow:hidden;font-family:system-ui,sans-serif}.autoui-chat-header{background:var(--autoui-bg-alt);padding:.75rem 1rem;border-bottom:1px solid var(--autoui-border);display:flex;justify-content:space-between;align-items:center}.autoui-chat-title{font-size:1rem;display:flex;align-items:center;font-weight:600;margin:0}.autoui-chat-closebtn{width:2rem;height:2rem!important;display:flex;justify-content:center;border:none;cursor:pointer;font-size:1rem;color:#000;background-color:transparent;align-items:center;border-radius:100%}.autoui-chat-messages{flex:1;overflow-y:auto;padding:1rem;display:flex;flex-direction:column;gap:.5rem;scroll-behavior:smooth}.autoui-chat-messages::-webkit-scrollbar{width:8px}.autoui-chat-messages::-webkit-scrollbar-track{background:transparent}.autoui-chat-messages::-webkit-scrollbar-thumb{background:linear-gradient(180deg,#444,#666);border-radius:6px;-webkit-transition:background .3s ease;transition:background .3s ease}.autoui-chat-messages::-webkit-scrollbar-thumb:hover{background:linear-gradient(180deg,#555,#777)}.autoui-chat-messages{scrollbar-width:thin;scrollbar-color:#555 transparent}.autoui-chat-message{display:flex;margin-bottom:.75rem}.autoui-chat-message.user{justify-content:flex-end}.autoui-chat-message.assistant{justify-content:flex-start}.autoui-chat-bubble{background:var(--autoui-bg-alt);padding:.5rem .75rem;border-radius:16px;max-width:80%;word-break:break-word}.autoui-chat-message.assistant .autoui-chat-bubble:has(>div[class*=w-full]){max-width:100%;width:100%;padding:1rem;background:transparent}.autoui-chat-bubble>div[class*=w-full]{max-width:100%;width:100%;min-width:0}.autoui-chat-message.user .autoui-chat-bubble{background:var(--autoui-accent);color:#fff}.autoui-chat-input{display:flex;border-top:1px solid var(--autoui-border);background:var(--autoui-bg-alt);padding:.5rem;gap:.5rem}.autoui-chat-textbox{flex:1;border:1px solid var(--autoui-border);border-radius:8px;padding:.5rem .75rem;background:var(--autoui-bg);color:var(--autoui-text)}.autoui-chat-send{background:var(--autoui-accent);border:none;color:#fff;border-radius:8px;padding:0 1rem;cursor:pointer;font-size:1rem}.autoui-chat-send img{height:1.5rem;color:#fff;fill:#fff}.autoui-chat-send:hover{opacity:.9}.autoui-chat-open-btn{width:50px;height:50px;border-radius:50%;border:1px solid var(--autoui-border);background:var(--autoui-bg-alt);color:var(--autoui-text);cursor:pointer;font-size:1rem;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 4px #0000001a;transition:all .2s ease;position:fixed;bottom:1.75rem;right:1.75rem;z-index:10000}.autoui-chat-open-btn:hover{background:var(--autoui-accent);color:#fff;transform:translateY(-2px)}.autoui-chat-open-btn:active{transform:translateY(0);opacity:.9}.autoui-chat-portal{position:fixed;right:4rem;bottom:4rem;z-index:9999;display:flex;justify-content:flex-end;align-items:flex-end;pointer-events:none;background:transparent}.autoui-chat-wrapper{pointer-events:auto;margin:1rem;width:full;max-height:600px;background:var(--autoui-bg);border-radius:16px;box-shadow:0 8px 24px #00000026;overflow:hidden;transform:translateY(20px);opacity:0;animation:autoui-slide-up .25s ease forwards}@keyframes autoui-slide-up{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}")),document.head.appendChild(a)}}catch(t){console.error("vite-plugin-css-injected-by-js",t)}})();
1
2
  "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const I=require("react"),ko=require("react-dom");var pt={exports:{}},Qe={};var ro;function xn(){if(ro)return Qe;ro=1;var e=Symbol.for("react.transitional.element"),t=Symbol.for("react.fragment");function o(n,r,s){var i=null;if(s!==void 0&&(i=""+s),r.key!==void 0&&(i=""+r.key),"key"in r){s={};for(var l in r)l!=="key"&&(s[l]=r[l])}else s=r;return r=s.ref,{$$typeof:e,type:n,key:i,ref:r!==void 0?r:null,props:s}}return Qe.Fragment=t,Qe.jsx=o,Qe.jsxs=o,Qe}var et={};var so;function vn(){return so||(so=1,process.env.NODE_ENV!=="production"&&(function(){function e(h){if(h==null)return null;if(typeof h=="function")return h.$$typeof===A?null:h.displayName||h.name||null;if(typeof h=="string")return h;switch(h){case g:return"Fragment";case f:return"Profiler";case d:return"StrictMode";case P:return"Suspense";case u:return"SuspenseList";case j:return"Activity"}if(typeof h=="object")switch(typeof h.tag=="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),h.$$typeof){case k:return"Portal";case H:return h.displayName||"Context";case S:return(h._context.displayName||"Context")+".Consumer";case z:var M=h.render;return h=h.displayName,h||(h=M.displayName||M.name||"",h=h!==""?"ForwardRef("+h+")":"ForwardRef"),h;case v:return M=h.displayName||null,M!==null?M:e(h.type)||"Memo";case y:M=h._payload,h=h._init;try{return e(h(M))}catch{}}return null}function t(h){return""+h}function o(h){try{t(h);var M=!1}catch{M=!0}if(M){M=console;var q=M.error,Q=typeof Symbol=="function"&&Symbol.toStringTag&&h[Symbol.toStringTag]||h.constructor.name||"Object";return q.call(M,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",Q),t(h)}}function n(h){if(h===g)return"<>";if(typeof h=="object"&&h!==null&&h.$$typeof===y)return"<...>";try{var M=e(h);return M?"<"+M+">":"<...>"}catch{return"<...>"}}function r(){var h=F.A;return h===null?null:h.getOwner()}function s(){return Error("react-stack-top-frame")}function i(h){if(D.call(h,"key")){var M=Object.getOwnPropertyDescriptor(h,"key").get;if(M&&M.isReactWarning)return!1}return h.key!==void 0}function l(h,M){function q(){X||(X=!0,console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",M))}q.isReactWarning=!0,Object.defineProperty(h,"key",{get:q,configurable:!0})}function a(){var h=e(this.type);return K[h]||(K[h]=!0,console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")),h=this.props.ref,h!==void 0?h:null}function c(h,M,q,Q,Pe,Be){var ee=q.ref;return h={$$typeof:C,type:h,key:M,props:q,_owner:Q},(ee!==void 0?ee:null)!==null?Object.defineProperty(h,"ref",{enumerable:!1,get:a}):Object.defineProperty(h,"ref",{enumerable:!1,value:null}),h._store={},Object.defineProperty(h._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(h,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(h,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:Pe}),Object.defineProperty(h,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:Be}),Object.freeze&&(Object.freeze(h.props),Object.freeze(h)),h}function m(h,M,q,Q,Pe,Be){var ee=M.children;if(ee!==void 0)if(Q)if(_(ee)){for(Q=0;Q<ee.length;Q++)T(ee[Q]);Object.freeze&&Object.freeze(ee)}else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else T(ee);if(D.call(M,"key")){ee=e(h);var E=Object.keys(M).filter(function(ne){return ne!=="key"});Q=0<E.length?"{key: someKey, "+E.join(": ..., ")+": ...}":"{key: someKey}",Te[ee+Q]||(E=0<E.length?"{"+E.join(": ..., ")+": ...}":"{}",console.error(`A props object containing a "key" prop is being spread into JSX:
2
3
  let props = %s;
3
4
  <%s {...props} />
package/dist/index.mjs CHANGED
@@ -1,3 +1,4 @@
1
+ (function(){"use strict";try{if(typeof document<"u"){var a=document.createElement("style");a.appendChild(document.createTextNode(":root{--autoui-bg: #ffffff;--autoui-bg-alt: #f4f4f5;--autoui-text: #111111;--autoui-accent: #007aff;--autoui-border: #e5e5e5}[data-theme=dark]{--autoui-bg: #1c1c1e;--autoui-bg-alt: #2c2c2e;--autoui-text: #f2f2f7;--autoui-accent: #0a84ff;--autoui-border: #3a3a3c}.autoui-chat{background:var(--autoui-bg);color:var(--autoui-text);border:1px solid var(--autoui-border);border-radius:12px;display:flex;flex-direction:column;height:480px;width:360px;overflow:hidden;font-family:system-ui,sans-serif}.autoui-chat-header{background:var(--autoui-bg-alt);padding:.75rem 1rem;border-bottom:1px solid var(--autoui-border);display:flex;justify-content:space-between;align-items:center}.autoui-chat-title{font-size:1rem;display:flex;align-items:center;font-weight:600;margin:0}.autoui-chat-closebtn{width:2rem;height:2rem!important;display:flex;justify-content:center;border:none;cursor:pointer;font-size:1rem;color:#000;background-color:transparent;align-items:center;border-radius:100%}.autoui-chat-messages{flex:1;overflow-y:auto;padding:1rem;display:flex;flex-direction:column;gap:.5rem;scroll-behavior:smooth}.autoui-chat-messages::-webkit-scrollbar{width:8px}.autoui-chat-messages::-webkit-scrollbar-track{background:transparent}.autoui-chat-messages::-webkit-scrollbar-thumb{background:linear-gradient(180deg,#444,#666);border-radius:6px;-webkit-transition:background .3s ease;transition:background .3s ease}.autoui-chat-messages::-webkit-scrollbar-thumb:hover{background:linear-gradient(180deg,#555,#777)}.autoui-chat-messages{scrollbar-width:thin;scrollbar-color:#555 transparent}.autoui-chat-message{display:flex;margin-bottom:.75rem}.autoui-chat-message.user{justify-content:flex-end}.autoui-chat-message.assistant{justify-content:flex-start}.autoui-chat-bubble{background:var(--autoui-bg-alt);padding:.5rem .75rem;border-radius:16px;max-width:80%;word-break:break-word}.autoui-chat-message.assistant .autoui-chat-bubble:has(>div[class*=w-full]){max-width:100%;width:100%;padding:1rem;background:transparent}.autoui-chat-bubble>div[class*=w-full]{max-width:100%;width:100%;min-width:0}.autoui-chat-message.user .autoui-chat-bubble{background:var(--autoui-accent);color:#fff}.autoui-chat-input{display:flex;border-top:1px solid var(--autoui-border);background:var(--autoui-bg-alt);padding:.5rem;gap:.5rem}.autoui-chat-textbox{flex:1;border:1px solid var(--autoui-border);border-radius:8px;padding:.5rem .75rem;background:var(--autoui-bg);color:var(--autoui-text)}.autoui-chat-send{background:var(--autoui-accent);border:none;color:#fff;border-radius:8px;padding:0 1rem;cursor:pointer;font-size:1rem}.autoui-chat-send img{height:1.5rem;color:#fff;fill:#fff}.autoui-chat-send:hover{opacity:.9}.autoui-chat-open-btn{width:50px;height:50px;border-radius:50%;border:1px solid var(--autoui-border);background:var(--autoui-bg-alt);color:var(--autoui-text);cursor:pointer;font-size:1rem;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 4px #0000001a;transition:all .2s ease;position:fixed;bottom:1.75rem;right:1.75rem;z-index:10000}.autoui-chat-open-btn:hover{background:var(--autoui-accent);color:#fff;transform:translateY(-2px)}.autoui-chat-open-btn:active{transform:translateY(0);opacity:.9}.autoui-chat-portal{position:fixed;right:4rem;bottom:4rem;z-index:9999;display:flex;justify-content:flex-end;align-items:flex-end;pointer-events:none;background:transparent}.autoui-chat-wrapper{pointer-events:auto;margin:1rem;width:full;max-height:600px;background:var(--autoui-bg);border-radius:16px;box-shadow:0 8px 24px #00000026;overflow:hidden;transform:translateY(20px);opacity:0;animation:autoui-slide-up .25s ease forwards}@keyframes autoui-slide-up{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}")),document.head.appendChild(a)}}catch(t){console.error("vite-plugin-css-injected-by-js",t)}})();
1
2
  import P, { forwardRef as yn, useMemo as Po, createContext as Bo, useContext as Ao, useState as Ct, createElement as wt, useRef as $t, useEffect as Tt, useCallback as Ne, memo as _o, lazy as Cn } from "react";
2
3
  import Rn, { createPortal as En } from "react-dom";
3
4
  var gt = { exports: {} }, et = {};
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":"\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}};
4933
4933
 
4934
4934
  const run = () => {
4935
4935
  const width = window.innerWidth;
package/package.json CHANGED
@@ -1,101 +1,102 @@
1
- {
2
- "name": "@autoai-ui/autoui",
3
- "version": "0.1.2",
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
- "@changesets/cli": "^2.29.7",
35
- "@dnd-kit/core": "^6.3.1",
36
- "@dnd-kit/modifiers": "^9.0.0",
37
- "@dnd-kit/sortable": "^10.0.0",
38
- "@dnd-kit/utilities": "^3.2.2",
39
- "@eslint/js": "^9.36.0",
40
- "@radix-ui/react-scroll-area": "^1.2.10",
41
- "@radix-ui/react-separator": "^1.1.8",
42
- "@radix-ui/react-slot": "^1.2.4",
43
- "@semantic-release/changelog": "^6.0.3",
44
- "@semantic-release/git": "^10.0.1",
45
- "@semantic-release/github": "^12.0.2",
46
- "@semantic-release/npm": "^13.1.2",
47
- "@tailwindcss/postcss": "^4.1.16",
48
- "@tailwindcss/vite": "^4.1.16",
49
- "@tanstack/react-table": "^8.21.3",
50
- "@types/node": "^24.9.2",
51
- "@types/react": "^19.1.16",
52
- "@types/react-dom": "^19.1.9",
53
- "@vitejs/plugin-react": "^5.0.4",
54
- "autoprefixer": "^10.4.21",
55
- "class-variance-authority": "^0.7.1",
56
- "clsx": "^2.1.1",
57
- "date-fns": "^4.1.0",
58
- "eslint": "^9.36.0",
59
- "eslint-config-prettier": "^10.1.8",
60
- "eslint-plugin-no-secrets": "^0.8.9",
61
- "eslint-plugin-prettier": "^5.5.4",
62
- "eslint-plugin-react-hooks": "^5.2.0",
63
- "eslint-plugin-react-refresh": "^0.4.22",
64
- "eslint-plugin-unicorn": "^56.0.0",
65
- "globals": "^16.4.0",
66
- "lucide-react": "^0.548.0",
67
- "next-themes": "^0.4.6",
68
- "postcss": "^8.5.6",
69
- "prettier": "^3.6.2",
70
- "radix-ui": "^1.4.3",
71
- "react-day-picker": "^9.11.1",
72
- "react-router-dom": "^7.9.5",
73
- "recharts": "^2.15.4",
74
- "rollup-plugin-visualizer": "^6.0.5",
75
- "semantic-release": "^25.0.2",
76
- "sonner": "^2.0.7",
77
- "tailwind-merge": "^3.3.1",
78
- "tailwindcss": "^4.1.16",
79
- "tailwindcss-animate": "^1.0.7",
80
- "typescript": "~5.9.3",
81
- "typescript-eslint": "^8.45.0",
82
- "vite": "^7.1.7",
83
- "vite-plugin-dts": "^4.5.4",
84
- "zod": "^4.1.12",
85
- "zustand": "^5.0.8"
86
- },
87
- "peerDependencies": {
88
- "react": ">=19.0.0 < 20.0.0",
89
- "react-dom": ">=19.0.0 <20.0.0"
90
- },
91
- "exports": {
92
- ".": {
93
- "types": "./dist/index.d.ts",
94
- "import": "./dist/index.mjs",
95
- "require": "./dist/index.cjs"
96
- }
97
- },
98
- "types": "dist/index.d.ts",
99
- "module": "dist/index.mjs",
100
- "main": "dist/index.cjs"
101
- }
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
+ }
package/dist/autoui.css DELETED
@@ -1 +0,0 @@
1
- :root{--autoui-bg: #ffffff;--autoui-bg-alt: #f4f4f5;--autoui-text: #111111;--autoui-accent: #007aff;--autoui-border: #e5e5e5}[data-theme=dark]{--autoui-bg: #1c1c1e;--autoui-bg-alt: #2c2c2e;--autoui-text: #f2f2f7;--autoui-accent: #0a84ff;--autoui-border: #3a3a3c}.autoui-chat{background:var(--autoui-bg);color:var(--autoui-text);border:1px solid var(--autoui-border);border-radius:12px;display:flex;flex-direction:column;height:480px;width:360px;overflow:hidden;font-family:system-ui,sans-serif}.autoui-chat-header{background:var(--autoui-bg-alt);padding:.75rem 1rem;border-bottom:1px solid var(--autoui-border);display:flex;justify-content:space-between;align-items:center}.autoui-chat-title{font-size:1rem;display:flex;align-items:center;font-weight:600;margin:0}.autoui-chat-closebtn{width:2rem;height:2rem!important;display:flex;justify-content:center;border:none;cursor:pointer;font-size:1rem;color:#000;background-color:transparent;align-items:center;border-radius:100%}.autoui-chat-messages{flex:1;overflow-y:auto;padding:1rem;display:flex;flex-direction:column;gap:.5rem;scroll-behavior:smooth}.autoui-chat-messages::-webkit-scrollbar{width:8px}.autoui-chat-messages::-webkit-scrollbar-track{background:transparent}.autoui-chat-messages::-webkit-scrollbar-thumb{background:linear-gradient(180deg,#444,#666);border-radius:6px;-webkit-transition:background .3s ease;transition:background .3s ease}.autoui-chat-messages::-webkit-scrollbar-thumb:hover{background:linear-gradient(180deg,#555,#777)}.autoui-chat-messages{scrollbar-width:thin;scrollbar-color:#555 transparent}.autoui-chat-message{display:flex;margin-bottom:.75rem}.autoui-chat-message.user{justify-content:flex-end}.autoui-chat-message.assistant{justify-content:flex-start}.autoui-chat-bubble{background:var(--autoui-bg-alt);padding:.5rem .75rem;border-radius:16px;max-width:80%;word-break:break-word}.autoui-chat-message.assistant .autoui-chat-bubble:has(>div[class*=w-full]){max-width:100%;width:100%;padding:1rem;background:transparent}.autoui-chat-bubble>div[class*=w-full]{max-width:100%;width:100%;min-width:0}.autoui-chat-message.user .autoui-chat-bubble{background:var(--autoui-accent);color:#fff}.autoui-chat-input{display:flex;border-top:1px solid var(--autoui-border);background:var(--autoui-bg-alt);padding:.5rem;gap:.5rem}.autoui-chat-textbox{flex:1;border:1px solid var(--autoui-border);border-radius:8px;padding:.5rem .75rem;background:var(--autoui-bg);color:var(--autoui-text)}.autoui-chat-send{background:var(--autoui-accent);border:none;color:#fff;border-radius:8px;padding:0 1rem;cursor:pointer;font-size:1rem}.autoui-chat-send img{height:1.5rem;color:#fff;fill:#fff}.autoui-chat-send:hover{opacity:.9}.autoui-chat-open-btn{width:50px;height:50px;border-radius:50%;border:1px solid var(--autoui-border);background:var(--autoui-bg-alt);color:var(--autoui-text);cursor:pointer;font-size:1rem;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 4px #0000001a;transition:all .2s ease;position:fixed;bottom:1.75rem;right:1.75rem;z-index:10000}.autoui-chat-open-btn:hover{background:var(--autoui-accent);color:#fff;transform:translateY(-2px)}.autoui-chat-open-btn:active{transform:translateY(0);opacity:.9}.autoui-chat-portal{position:fixed;right:4rem;bottom:4rem;z-index:9999;display:flex;justify-content:flex-end;align-items:flex-end;pointer-events:none;background:transparent}.autoui-chat-wrapper{pointer-events:auto;margin:1rem;width:full;max-height:600px;background:var(--autoui-bg);border-radius:16px;box-shadow:0 8px 24px #00000026;overflow:hidden;transform:translateY(20px);opacity:0;animation:autoui-slide-up .25s ease forwards}@keyframes autoui-slide-up{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}