@copilotkit/react-core 1.57.1-canary.1778272612 → 1.57.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{copilotkit-CBbSvze0.d.cts → copilotkit-BK9CVq9A.d.cts} +2 -1
- package/dist/{copilotkit-CBbSvze0.d.cts.map → copilotkit-BK9CVq9A.d.cts.map} +1 -1
- package/dist/{copilotkit-3XTEoVQO.mjs → copilotkit-CC8DjOiC.mjs} +3 -2
- package/dist/copilotkit-CC8DjOiC.mjs.map +1 -0
- package/dist/{copilotkit-Dnj9pi4m.cjs → copilotkit-CtXcs1ea.cjs} +3 -2
- package/dist/copilotkit-CtXcs1ea.cjs.map +1 -0
- package/dist/{copilotkit-BCJ2yvV6.d.mts → copilotkit-WlmeVijs.d.mts} +2 -1
- package/dist/{copilotkit-BCJ2yvV6.d.mts.map → copilotkit-WlmeVijs.d.mts.map} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.mjs +1 -1
- package/dist/v2/headless.cjs +110 -3
- package/dist/v2/headless.cjs.map +1 -1
- package/dist/v2/headless.d.cts +142 -2
- package/dist/v2/headless.d.cts.map +1 -1
- package/dist/v2/headless.d.mts +142 -1
- package/dist/v2/headless.d.mts.map +1 -1
- package/dist/v2/headless.mjs +108 -4
- package/dist/v2/headless.mjs.map +1 -1
- package/dist/v2/index.cjs +1 -1
- package/dist/v2/index.d.cts +1 -1
- package/dist/v2/index.d.mts +1 -1
- package/dist/v2/index.mjs +1 -1
- package/dist/v2/index.umd.js +2 -1
- package/dist/v2/index.umd.js.map +1 -1
- package/package.json +6 -6
- package/src/v2/components/chat/__tests__/CopilotChatPerf.e2e.test.tsx +28 -0
- package/src/v2/headless.ts +23 -1
- package/src/v2/hooks/__tests__/use-component.test.tsx +4 -1
- package/src/v2/hooks/use-component.tsx +2 -0
- package/dist/copilotkit-3XTEoVQO.mjs.map +0 -1
- package/dist/copilotkit-Dnj9pi4m.cjs.map +0 -1
|
@@ -3979,7 +3979,8 @@ function useComponent(config, deps) {
|
|
|
3979
3979
|
const Component = config.render;
|
|
3980
3980
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(Component, { ...args });
|
|
3981
3981
|
},
|
|
3982
|
-
agentId: config.agentId
|
|
3982
|
+
agentId: config.agentId,
|
|
3983
|
+
followUp: config.followUp
|
|
3983
3984
|
}, deps);
|
|
3984
3985
|
}
|
|
3985
3986
|
|
|
@@ -10425,4 +10426,4 @@ Object.defineProperty(exports, 'useToast', {
|
|
|
10425
10426
|
return useToast;
|
|
10426
10427
|
}
|
|
10427
10428
|
});
|
|
10428
|
-
//# sourceMappingURL=copilotkit-
|
|
10429
|
+
//# sourceMappingURL=copilotkit-CtXcs1ea.cjs.map
|