@copilotkit/react-core 1.54.1-next.6 → 1.55.0-next.7
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/CHANGELOG.md +121 -106
- package/dist/copilotkit-B3Mb1yVE.cjs +7975 -0
- package/dist/copilotkit-B3Mb1yVE.cjs.map +1 -0
- package/dist/copilotkit-DBzgOMby.d.cts +2182 -0
- package/dist/copilotkit-DBzgOMby.d.cts.map +1 -0
- package/dist/copilotkit-DNYSFuz5.mjs +7562 -0
- package/dist/copilotkit-DNYSFuz5.mjs.map +1 -0
- package/dist/copilotkit-Dy5w3qEV.d.mts +2182 -0
- package/dist/copilotkit-Dy5w3qEV.d.mts.map +1 -0
- package/dist/index.cjs +27 -28
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +3 -3
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +4 -5
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +1941 -35
- package/dist/index.umd.js.map +1 -1
- package/dist/v2/index.cjs +77 -7
- package/dist/v2/index.css +1 -2
- package/dist/v2/index.d.cts +6 -4
- package/dist/v2/index.d.mts +6 -4
- package/dist/v2/index.mjs +7 -4
- package/dist/v2/index.umd.js +5725 -24
- package/dist/v2/index.umd.js.map +1 -1
- package/package.json +35 -7
- package/scripts/scope-preflight.mjs +101 -0
- package/src/components/CopilotListeners.tsx +2 -6
- package/src/components/copilot-provider/copilot-messages.tsx +1 -1
- package/src/components/copilot-provider/copilotkit-props.tsx +1 -1
- package/src/components/copilot-provider/copilotkit.tsx +4 -4
- package/src/context/copilot-messages-context.tsx +1 -1
- package/src/hooks/__tests__/use-coagent-config.test.ts +2 -2
- package/src/hooks/__tests__/use-coagent-state-render.e2e.test.tsx +2 -2
- package/src/hooks/__tests__/use-copilot-chat-internal-connect.test.tsx +3 -7
- package/src/hooks/__tests__/use-frontend-tool-available.test.tsx +1 -1
- package/src/hooks/__tests__/use-frontend-tool-remount.e2e.test.tsx +4 -4
- package/src/hooks/use-agent-nodename.ts +1 -1
- package/src/hooks/use-coagent-state-render-bridge.tsx +1 -4
- package/src/hooks/use-coagent.ts +1 -1
- package/src/hooks/use-configure-chat-suggestions.tsx +2 -2
- package/src/hooks/use-copilot-chat-suggestions.tsx +2 -2
- package/src/hooks/use-copilot-chat_internal.ts +2 -2
- package/src/hooks/use-copilot-readable.ts +1 -1
- package/src/hooks/use-frontend-tool.ts +2 -2
- package/src/hooks/use-human-in-the-loop.ts +2 -2
- package/src/hooks/use-langgraph-interrupt.ts +2 -5
- package/src/hooks/use-lazy-tool-renderer.tsx +1 -1
- package/src/hooks/use-render-tool-call.ts +1 -1
- package/src/lib/copilot-task.ts +1 -1
- package/src/setupTests.ts +18 -14
- package/src/v2/__tests__/A2UIMessageRenderer.test.tsx +176 -0
- package/src/v2/__tests__/globalSetup.ts +14 -0
- package/src/v2/__tests__/setup.ts +93 -0
- package/src/v2/__tests__/utils/test-helpers.tsx +470 -0
- package/src/v2/a2ui/A2UIMessageRenderer.tsx +206 -0
- package/src/v2/components/CopilotKitInspector.tsx +50 -0
- package/src/v2/components/MCPAppsActivityRenderer.tsx +785 -0
- package/src/v2/components/WildcardToolCallRender.tsx +86 -0
- package/src/v2/components/__tests__/license-warning-banner.test.tsx +46 -0
- package/src/v2/components/chat/CopilotChat.tsx +431 -0
- package/src/v2/components/chat/CopilotChatAssistantMessage.tsx +375 -0
- package/src/v2/components/chat/CopilotChatAudioRecorder.tsx +350 -0
- package/src/v2/components/chat/CopilotChatInput.tsx +1302 -0
- package/src/v2/components/chat/CopilotChatMessageView.tsx +556 -0
- package/src/v2/components/chat/CopilotChatReasoningMessage.tsx +252 -0
- package/src/v2/components/chat/CopilotChatSuggestionPill.tsx +59 -0
- package/src/v2/components/chat/CopilotChatSuggestionView.tsx +133 -0
- package/src/v2/components/chat/CopilotChatToggleButton.tsx +171 -0
- package/src/v2/components/chat/CopilotChatToolCallsView.tsx +40 -0
- package/src/v2/components/chat/CopilotChatUserMessage.tsx +388 -0
- package/src/v2/components/chat/CopilotChatView.tsx +598 -0
- package/src/v2/components/chat/CopilotModalHeader.tsx +129 -0
- package/src/v2/components/chat/CopilotPopup.tsx +81 -0
- package/src/v2/components/chat/CopilotPopupView.tsx +317 -0
- package/src/v2/components/chat/CopilotSidebar.tsx +76 -0
- package/src/v2/components/chat/CopilotSidebarView.tsx +255 -0
- package/src/v2/components/chat/__tests__/CopilotChat.e2e.test.tsx +1113 -0
- package/src/v2/components/chat/__tests__/CopilotChat.onError.test.tsx +73 -0
- package/src/v2/components/chat/__tests__/CopilotChat.slots.e2e.test.tsx +432 -0
- package/src/v2/components/chat/__tests__/CopilotChatActivityRendering.e2e.test.tsx +150 -0
- package/src/v2/components/chat/__tests__/CopilotChatAssistantMessage.slots.e2e.test.tsx +624 -0
- package/src/v2/components/chat/__tests__/CopilotChatAssistantMessage.test.tsx +702 -0
- package/src/v2/components/chat/__tests__/CopilotChatCssClasses.test.tsx +107 -0
- package/src/v2/components/chat/__tests__/CopilotChatInput.slots.e2e.test.tsx +929 -0
- package/src/v2/components/chat/__tests__/CopilotChatInput.test.tsx +986 -0
- package/src/v2/components/chat/__tests__/CopilotChatMessageView.slots.e2e.test.tsx +1004 -0
- package/src/v2/components/chat/__tests__/CopilotChatMessageView.test.tsx +169 -0
- package/src/v2/components/chat/__tests__/CopilotChatSuggestionView.slots.e2e.test.tsx +530 -0
- package/src/v2/components/chat/__tests__/CopilotChatToolRendering.e2e.test.tsx +782 -0
- package/src/v2/components/chat/__tests__/CopilotChatToolRerenders.e2e.test.tsx +2413 -0
- package/src/v2/components/chat/__tests__/CopilotChatUserMessage.slots.e2e.test.tsx +621 -0
- package/src/v2/components/chat/__tests__/CopilotChatView.onClick.e2e.test.tsx +853 -0
- package/src/v2/components/chat/__tests__/CopilotChatView.slots.e2e.test.tsx +1050 -0
- package/src/v2/components/chat/__tests__/CopilotModalHeader.slots.e2e.test.tsx +484 -0
- package/src/v2/components/chat/__tests__/CopilotPopupView.slots.e2e.test.tsx +612 -0
- package/src/v2/components/chat/__tests__/CopilotSidebarView.slots.e2e.test.tsx +502 -0
- package/src/v2/components/chat/__tests__/MCPAppsActivityRenderer.e2e.test.tsx +1011 -0
- package/src/v2/components/chat/__tests__/setup.ts +1 -0
- package/src/v2/components/chat/index.ts +79 -0
- package/src/v2/components/index.ts +7 -0
- package/src/v2/components/license-warning-banner.tsx +198 -0
- package/src/v2/components/ui/button.tsx +123 -0
- package/src/v2/components/ui/dropdown-menu.tsx +258 -0
- package/src/v2/components/ui/tooltip.tsx +60 -0
- package/src/v2/hooks/__tests__/standard-schema-types.test.tsx +152 -0
- package/src/v2/hooks/__tests__/standard-schema.test.tsx +282 -0
- package/src/v2/hooks/__tests__/use-agent-context-timing.e2e.test.tsx +132 -0
- package/src/v2/hooks/__tests__/use-agent-context.test.tsx +401 -0
- package/src/v2/hooks/__tests__/use-agent-error-state.test.tsx +44 -0
- package/src/v2/hooks/__tests__/use-agent-stability.test.tsx +205 -0
- package/src/v2/hooks/__tests__/use-agent.e2e.test.tsx +148 -0
- package/src/v2/hooks/__tests__/use-component.test.tsx +123 -0
- package/src/v2/hooks/__tests__/use-configure-suggestions.e2e.test.tsx +696 -0
- package/src/v2/hooks/__tests__/use-default-render-tool.test.tsx +153 -0
- package/src/v2/hooks/__tests__/use-frontend-tool-available.test.tsx +167 -0
- package/src/v2/hooks/__tests__/use-frontend-tool.e2e.test.tsx +2129 -0
- package/src/v2/hooks/__tests__/use-human-in-the-loop.e2e.test.tsx +1261 -0
- package/src/v2/hooks/__tests__/use-interrupt.test.tsx +397 -0
- package/src/v2/hooks/__tests__/use-katex-styles.test.tsx +56 -0
- package/src/v2/hooks/__tests__/use-keyboard-height.test.tsx +192 -0
- package/src/v2/hooks/__tests__/use-render-tool.test.tsx +259 -0
- package/src/v2/hooks/__tests__/use-suggestions.e2e.test.tsx +524 -0
- package/src/v2/hooks/__tests__/use-threads.test.tsx +433 -0
- package/src/v2/hooks/__tests__/zod-regression.test.tsx +311 -0
- package/src/v2/hooks/index.ts +18 -0
- package/src/v2/hooks/use-agent-context.tsx +45 -0
- package/src/v2/hooks/use-agent.tsx +155 -0
- package/src/v2/hooks/use-component.tsx +89 -0
- package/src/v2/hooks/use-configure-suggestions.tsx +187 -0
- package/src/v2/hooks/use-default-render-tool.tsx +254 -0
- package/src/v2/hooks/use-frontend-tool.tsx +43 -0
- package/src/v2/hooks/use-human-in-the-loop.tsx +81 -0
- package/src/v2/hooks/use-interrupt.tsx +305 -0
- package/src/v2/hooks/use-keyboard-height.tsx +67 -0
- package/src/v2/hooks/use-render-activity-message.tsx +73 -0
- package/src/v2/hooks/use-render-custom-messages.tsx +93 -0
- package/src/v2/hooks/use-render-tool-call.tsx +175 -0
- package/src/v2/hooks/use-render-tool.tsx +181 -0
- package/src/v2/hooks/use-suggestions.tsx +91 -0
- package/src/v2/hooks/use-threads.tsx +256 -0
- package/src/v2/hooks/useKatexStyles.ts +27 -0
- package/src/v2/index.css +1 -1
- package/src/v2/index.ts +18 -2
- package/src/v2/lib/__tests__/completePartialMarkdown.test.ts +495 -0
- package/src/v2/lib/__tests__/renderSlot.test.tsx +588 -0
- package/src/v2/lib/react-core.ts +156 -0
- package/src/v2/lib/slots.tsx +143 -0
- package/src/v2/lib/transcription-client.ts +184 -0
- package/src/v2/lib/utils.ts +8 -0
- package/src/v2/providers/CopilotChatConfigurationProvider.tsx +162 -0
- package/src/v2/providers/CopilotKitProvider.tsx +600 -0
- package/src/v2/providers/__tests__/CopilotChatConfigurationProvider.test.tsx +546 -0
- package/src/v2/providers/__tests__/CopilotKitProvider.license.test.tsx +101 -0
- package/src/v2/providers/__tests__/CopilotKitProvider.onError.test.tsx +69 -0
- package/src/v2/providers/__tests__/CopilotKitProvider.renderCustomMessages.e2e.test.tsx +881 -0
- package/src/v2/providers/__tests__/CopilotKitProvider.stability.test.tsx +740 -0
- package/src/v2/providers/__tests__/CopilotKitProvider.test.tsx +642 -0
- package/src/v2/providers/__tests__/CopilotKitProvider.wildcard.test.tsx +294 -0
- package/src/v2/providers/index.ts +14 -0
- package/src/v2/styles/globals.css +230 -0
- package/src/v2/types/__tests__/defineToolCallRenderer.test.tsx +525 -0
- package/src/v2/types/defineToolCallRenderer.ts +65 -0
- package/src/v2/types/frontend-tool.ts +8 -0
- package/src/v2/types/human-in-the-loop.ts +33 -0
- package/src/v2/types/index.ts +7 -0
- package/src/v2/types/interrupt.ts +15 -0
- package/src/v2/types/react-activity-message-renderer.ts +27 -0
- package/src/v2/types/react-custom-message-renderer.ts +17 -0
- package/src/v2/types/react-tool-call-renderer.ts +32 -0
- package/tsdown.config.ts +34 -10
- package/vitest.config.mjs +4 -3
- package/LICENSE +0 -21
- package/dist/copilotkit-BRPQ2sqS.d.cts +0 -670
- package/dist/copilotkit-BRPQ2sqS.d.cts.map +0 -1
- package/dist/copilotkit-C94ayZbs.cjs +0 -2161
- package/dist/copilotkit-C94ayZbs.cjs.map +0 -1
- package/dist/copilotkit-CwZMFmSK.d.mts +0 -670
- package/dist/copilotkit-CwZMFmSK.d.mts.map +0 -1
- package/dist/copilotkit-Yh_Ld_FX.mjs +0 -2031
- package/dist/copilotkit-Yh_Ld_FX.mjs.map +0 -1
- package/dist/v2/index.css.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# ui
|
|
2
2
|
|
|
3
|
+
## 1.55.0-next.7
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1ceb963: refactor: consolidate V1/V2 packages into flat @copilotkit/\* structure
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [1ceb963]
|
|
12
|
+
- @copilotkit/a2ui-renderer@1.55.0-next.7
|
|
13
|
+
- @copilotkit/core@1.55.0-next.7
|
|
14
|
+
- @copilotkit/runtime-client-gql@1.55.0-next.7
|
|
15
|
+
- @copilotkit/shared@1.55.0-next.7
|
|
16
|
+
- @copilotkit/web-inspector@1.55.0-next.7
|
|
17
|
+
|
|
3
18
|
## 1.54.1-next.6
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -169,10 +184,10 @@
|
|
|
169
184
|
### Patch Changes
|
|
170
185
|
|
|
171
186
|
- Updated dependencies [d746e4f]
|
|
172
|
-
- @
|
|
187
|
+
- @copilotkit/react@1.53.1-next.2
|
|
173
188
|
- @copilotkit/runtime-client-gql@1.53.1-next.2
|
|
174
189
|
- @copilotkit/shared@1.53.1-next.2
|
|
175
|
-
- @
|
|
190
|
+
- @copilotkit/core@1.53.1-next.2
|
|
176
191
|
|
|
177
192
|
## 1.53.1-next.1
|
|
178
193
|
|
|
@@ -180,18 +195,18 @@
|
|
|
180
195
|
|
|
181
196
|
- @copilotkit/runtime-client-gql@1.53.1-next.1
|
|
182
197
|
- @copilotkit/shared@1.53.1-next.1
|
|
183
|
-
- @
|
|
184
|
-
- @
|
|
198
|
+
- @copilotkit/core@1.53.1-next.1
|
|
199
|
+
- @copilotkit/react@1.53.1-next.1
|
|
185
200
|
|
|
186
201
|
## 1.53.1-next.0
|
|
187
202
|
|
|
188
203
|
### Patch Changes
|
|
189
204
|
|
|
190
205
|
- Updated dependencies [6e0cddf]
|
|
191
|
-
- @
|
|
206
|
+
- @copilotkit/react@1.53.1-next.0
|
|
192
207
|
- @copilotkit/runtime-client-gql@1.53.1-next.0
|
|
193
208
|
- @copilotkit/shared@1.53.1-next.0
|
|
194
|
-
- @
|
|
209
|
+
- @copilotkit/core@1.53.1-next.0
|
|
195
210
|
|
|
196
211
|
## 1.53.0
|
|
197
212
|
|
|
@@ -204,8 +219,8 @@
|
|
|
204
219
|
- Updated dependencies [1510f64]
|
|
205
220
|
- Updated dependencies [bf1fc6f]
|
|
206
221
|
- @copilotkit/shared@1.53.0
|
|
207
|
-
- @
|
|
208
|
-
- @
|
|
222
|
+
- @copilotkit/core@1.53.0
|
|
223
|
+
- @copilotkit/react@1.53.0
|
|
209
224
|
- @copilotkit/runtime-client-gql@1.53.0
|
|
210
225
|
|
|
211
226
|
## 1.53.0-next.6
|
|
@@ -214,8 +229,8 @@
|
|
|
214
229
|
|
|
215
230
|
- @copilotkit/runtime-client-gql@1.53.0-next.6
|
|
216
231
|
- @copilotkit/shared@1.53.0-next.6
|
|
217
|
-
- @
|
|
218
|
-
- @
|
|
232
|
+
- @copilotkit/core@1.53.0-next.6
|
|
233
|
+
- @copilotkit/react@1.53.0-next.6
|
|
219
234
|
|
|
220
235
|
## 1.53.0-next.5
|
|
221
236
|
|
|
@@ -223,8 +238,8 @@
|
|
|
223
238
|
|
|
224
239
|
- @copilotkit/runtime-client-gql@1.53.0-next.5
|
|
225
240
|
- @copilotkit/shared@1.53.0-next.5
|
|
226
|
-
- @
|
|
227
|
-
- @
|
|
241
|
+
- @copilotkit/core@1.53.0-next.5
|
|
242
|
+
- @copilotkit/react@1.53.0-next.5
|
|
228
243
|
|
|
229
244
|
## 1.52.2-next.4
|
|
230
245
|
|
|
@@ -234,8 +249,8 @@
|
|
|
234
249
|
- Adds an onError callback to CopilotChat and CopilotKitProvider
|
|
235
250
|
- @copilotkit/runtime-client-gql@1.52.2-next.4
|
|
236
251
|
- @copilotkit/shared@1.52.2-next.4
|
|
237
|
-
- @
|
|
238
|
-
- @
|
|
252
|
+
- @copilotkit/core@1.52.2-next.4
|
|
253
|
+
- @copilotkit/react@1.52.2-next.4
|
|
239
254
|
|
|
240
255
|
## 1.52.2-next.3
|
|
241
256
|
|
|
@@ -244,8 +259,8 @@
|
|
|
244
259
|
- 1510f64: feat: enable mcp and a2ui middleware directly from copilotkit runtime
|
|
245
260
|
- Updated dependencies [1510f64]
|
|
246
261
|
- @copilotkit/shared@1.52.2-next.3
|
|
247
|
-
- @
|
|
248
|
-
- @
|
|
262
|
+
- @copilotkit/core@1.52.2-next.3
|
|
263
|
+
- @copilotkit/react@1.52.2-next.3
|
|
249
264
|
- @copilotkit/runtime-client-gql@1.52.2-next.3
|
|
250
265
|
|
|
251
266
|
## 1.52.2-next.2
|
|
@@ -254,8 +269,8 @@
|
|
|
254
269
|
|
|
255
270
|
- @copilotkit/runtime-client-gql@1.52.2-next.2
|
|
256
271
|
- @copilotkit/shared@1.52.2-next.2
|
|
257
|
-
- @
|
|
258
|
-
- @
|
|
272
|
+
- @copilotkit/core@1.52.2-next.2
|
|
273
|
+
- @copilotkit/react@1.52.2-next.2
|
|
259
274
|
|
|
260
275
|
## 1.52.2-next.1
|
|
261
276
|
|
|
@@ -264,8 +279,8 @@
|
|
|
264
279
|
- Updated dependencies [bf1fc6f]
|
|
265
280
|
- @copilotkit/shared@1.52.2-next.1
|
|
266
281
|
- @copilotkit/runtime-client-gql@1.52.2-next.1
|
|
267
|
-
- @
|
|
268
|
-
- @
|
|
282
|
+
- @copilotkit/core@1.52.2-next.1
|
|
283
|
+
- @copilotkit/react@1.52.2-next.1
|
|
269
284
|
|
|
270
285
|
## 1.52.2-next.0
|
|
271
286
|
|
|
@@ -274,8 +289,8 @@
|
|
|
274
289
|
- f1eaa4c: Fixing a regression with setModalOpen
|
|
275
290
|
- @copilotkit/runtime-client-gql@1.52.2-next.0
|
|
276
291
|
- @copilotkit/shared@1.52.2-next.0
|
|
277
|
-
- @
|
|
278
|
-
- @
|
|
292
|
+
- @copilotkit/core@1.52.2-next.0
|
|
293
|
+
- @copilotkit/react@1.52.2-next.0
|
|
279
294
|
|
|
280
295
|
## 1.52.1
|
|
281
296
|
|
|
@@ -286,10 +301,10 @@
|
|
|
286
301
|
The V1 `<CopilotKit>` provider previously hardcoded `useSingleEndpoint={true}` when wrapping the V2 provider, preventing users from opting into REST transport mode. The prop is now passed through from user config, defaulting to `true` to preserve backward compatibility.
|
|
287
302
|
|
|
288
303
|
- Updated dependencies [bbdf67d]
|
|
289
|
-
- @
|
|
304
|
+
- @copilotkit/react@1.52.1
|
|
290
305
|
- @copilotkit/runtime-client-gql@1.52.1
|
|
291
306
|
- @copilotkit/shared@1.52.1
|
|
292
|
-
- @
|
|
307
|
+
- @copilotkit/core@1.52.1
|
|
293
308
|
|
|
294
309
|
## 1.52.1-next.1
|
|
295
310
|
|
|
@@ -300,18 +315,18 @@
|
|
|
300
315
|
The V1 `<CopilotKit>` provider previously hardcoded `useSingleEndpoint={true}` when wrapping the V2 provider, preventing users from opting into REST transport mode. The prop is now passed through from user config, defaulting to `true` to preserve backward compatibility.
|
|
301
316
|
- @copilotkit/runtime-client-gql@1.52.1-next.1
|
|
302
317
|
- @copilotkit/shared@1.52.1-next.1
|
|
303
|
-
- @
|
|
304
|
-
- @
|
|
318
|
+
- @copilotkit/core@1.52.1-next.1
|
|
319
|
+
- @copilotkit/react@1.52.1-next.1
|
|
305
320
|
|
|
306
321
|
## 1.52.1-next.0
|
|
307
322
|
|
|
308
323
|
### Patch Changes
|
|
309
324
|
|
|
310
325
|
- Updated dependencies [bbdf67d]
|
|
311
|
-
- @
|
|
326
|
+
- @copilotkit/react@1.52.1-next.0
|
|
312
327
|
- @copilotkit/runtime-client-gql@1.52.1-next.0
|
|
313
328
|
- @copilotkit/shared@1.52.1-next.0
|
|
314
|
-
- @
|
|
329
|
+
- @copilotkit/core@1.52.1-next.0
|
|
315
330
|
|
|
316
331
|
## 1.52.0
|
|
317
332
|
|
|
@@ -337,8 +352,8 @@
|
|
|
337
352
|
- Updated dependencies [2007f8b]
|
|
338
353
|
- Updated dependencies [ef0f539]
|
|
339
354
|
- Updated dependencies [942d397]
|
|
340
|
-
- @
|
|
341
|
-
- @
|
|
355
|
+
- @copilotkit/react@1.52.0
|
|
356
|
+
- @copilotkit/core@1.52.0
|
|
342
357
|
- @copilotkit/shared@1.52.0
|
|
343
358
|
- @copilotkit/runtime-client-gql@1.52.0
|
|
344
359
|
|
|
@@ -347,10 +362,10 @@
|
|
|
347
362
|
### Patch Changes
|
|
348
363
|
|
|
349
364
|
- Updated dependencies [942d397]
|
|
350
|
-
- @
|
|
365
|
+
- @copilotkit/react@1.52.0-next.8
|
|
351
366
|
- @copilotkit/runtime-client-gql@1.52.0-next.8
|
|
352
367
|
- @copilotkit/shared@1.52.0-next.8
|
|
353
|
-
- @
|
|
368
|
+
- @copilotkit/core@1.52.0-next.8
|
|
354
369
|
|
|
355
370
|
## 1.52.0-next.7
|
|
356
371
|
|
|
@@ -358,8 +373,8 @@
|
|
|
358
373
|
|
|
359
374
|
- d77f347: Added in the useInterrupt hook
|
|
360
375
|
- Updated dependencies [d77f347]
|
|
361
|
-
- @
|
|
362
|
-
- @
|
|
376
|
+
- @copilotkit/react@1.52.0-next.7
|
|
377
|
+
- @copilotkit/core@1.52.0-next.7
|
|
363
378
|
- @copilotkit/runtime-client-gql@1.52.0-next.7
|
|
364
379
|
- @copilotkit/shared@1.52.0-next.7
|
|
365
380
|
|
|
@@ -370,10 +385,10 @@
|
|
|
370
385
|
- 2007f8b: feat: useComponent improvements
|
|
371
386
|
- 5f941db: Prevent CPK styles from polluting user app
|
|
372
387
|
- Updated dependencies [2007f8b]
|
|
373
|
-
- @
|
|
388
|
+
- @copilotkit/react@1.52.0-next.6
|
|
374
389
|
- @copilotkit/runtime-client-gql@1.52.0-next.6
|
|
375
390
|
- @copilotkit/shared@1.52.0-next.6
|
|
376
|
-
- @
|
|
391
|
+
- @copilotkit/core@1.52.0-next.6
|
|
377
392
|
|
|
378
393
|
## 1.52.0-next.5
|
|
379
394
|
|
|
@@ -391,8 +406,8 @@
|
|
|
391
406
|
|
|
392
407
|
- @copilotkit/runtime-client-gql@1.52.0-next.5
|
|
393
408
|
- @copilotkit/shared@1.52.0-next.5
|
|
394
|
-
- @
|
|
395
|
-
- @
|
|
409
|
+
- @copilotkit/core@1.52.0-next.5
|
|
410
|
+
- @copilotkit/react@1.52.0-next.5
|
|
396
411
|
|
|
397
412
|
## 1.51.5-next.4
|
|
398
413
|
|
|
@@ -400,18 +415,18 @@
|
|
|
400
415
|
|
|
401
416
|
- @copilotkit/runtime-client-gql@1.51.5-next.4
|
|
402
417
|
- @copilotkit/shared@1.51.5-next.4
|
|
403
|
-
- @
|
|
404
|
-
- @
|
|
418
|
+
- @copilotkit/core@1.51.5-next.4
|
|
419
|
+
- @copilotkit/react@1.51.5-next.4
|
|
405
420
|
|
|
406
421
|
## 1.51.5-next.3
|
|
407
422
|
|
|
408
423
|
### Patch Changes
|
|
409
424
|
|
|
410
425
|
- Updated dependencies [593859f]
|
|
411
|
-
- @
|
|
426
|
+
- @copilotkit/react@1.51.5-next.3
|
|
412
427
|
- @copilotkit/runtime-client-gql@1.51.5-next.3
|
|
413
428
|
- @copilotkit/shared@1.51.5-next.3
|
|
414
|
-
- @
|
|
429
|
+
- @copilotkit/core@1.51.5-next.3
|
|
415
430
|
|
|
416
431
|
## 1.51.5-next.2
|
|
417
432
|
|
|
@@ -419,8 +434,8 @@
|
|
|
419
434
|
|
|
420
435
|
- @copilotkit/runtime-client-gql@1.51.5-next.2
|
|
421
436
|
- @copilotkit/shared@1.51.5-next.2
|
|
422
|
-
- @
|
|
423
|
-
- @
|
|
437
|
+
- @copilotkit/core@1.51.5-next.2
|
|
438
|
+
- @copilotkit/react@1.51.5-next.2
|
|
424
439
|
|
|
425
440
|
## 1.51.5-next.1
|
|
426
441
|
|
|
@@ -429,8 +444,8 @@
|
|
|
429
444
|
- 412965a: Introducing available prop to useFrontendTool()
|
|
430
445
|
- @copilotkit/runtime-client-gql@1.51.5-next.1
|
|
431
446
|
- @copilotkit/shared@1.51.5-next.1
|
|
432
|
-
- @
|
|
433
|
-
- @
|
|
447
|
+
- @copilotkit/core@1.51.5-next.1
|
|
448
|
+
- @copilotkit/react@1.51.5-next.1
|
|
434
449
|
|
|
435
450
|
## 1.51.5-next.0
|
|
436
451
|
|
|
@@ -439,8 +454,8 @@
|
|
|
439
454
|
- ef0f539: Add reasoning support and default components for reasoning messages
|
|
440
455
|
- Updated dependencies [ef0f539]
|
|
441
456
|
- @copilotkit/shared@1.51.5-next.0
|
|
442
|
-
- @
|
|
443
|
-
- @
|
|
457
|
+
- @copilotkit/react@1.51.5-next.0
|
|
458
|
+
- @copilotkit/core@1.51.5-next.0
|
|
444
459
|
- @copilotkit/runtime-client-gql@1.51.5-next.0
|
|
445
460
|
|
|
446
461
|
## 1.51.4
|
|
@@ -454,8 +469,8 @@
|
|
|
454
469
|
- 6b7d8ef: feat(react): apply resource CSP domains to MCP Apps sandbox iframe
|
|
455
470
|
- Updated dependencies [c998f30]
|
|
456
471
|
- Updated dependencies [a3090d5]
|
|
457
|
-
- @
|
|
458
|
-
- @
|
|
472
|
+
- @copilotkit/core@1.51.4
|
|
473
|
+
- @copilotkit/react@1.51.4
|
|
459
474
|
- @copilotkit/runtime-client-gql@1.51.4
|
|
460
475
|
- @copilotkit/shared@1.51.4
|
|
461
476
|
|
|
@@ -466,8 +481,8 @@
|
|
|
466
481
|
- 9bc868d: Frontend tools integration with core in Angular package
|
|
467
482
|
- @copilotkit/runtime-client-gql@1.51.4-next.8
|
|
468
483
|
- @copilotkit/shared@1.51.4-next.8
|
|
469
|
-
- @
|
|
470
|
-
- @
|
|
484
|
+
- @copilotkit/core@1.51.4-next.8
|
|
485
|
+
- @copilotkit/react@1.51.4-next.8
|
|
471
486
|
|
|
472
487
|
## 1.51.4-next.7
|
|
473
488
|
|
|
@@ -476,8 +491,8 @@
|
|
|
476
491
|
- 6b7d8ef: feat(react): apply resource CSP domains to MCP Apps sandbox iframe
|
|
477
492
|
- @copilotkit/runtime-client-gql@1.51.4-next.7
|
|
478
493
|
- @copilotkit/shared@1.51.4-next.7
|
|
479
|
-
- @
|
|
480
|
-
- @
|
|
494
|
+
- @copilotkit/core@1.51.4-next.7
|
|
495
|
+
- @copilotkit/react@1.51.4-next.7
|
|
481
496
|
|
|
482
497
|
## 1.51.4-next.6
|
|
483
498
|
|
|
@@ -485,8 +500,8 @@
|
|
|
485
500
|
|
|
486
501
|
- @copilotkit/runtime-client-gql@1.51.4-next.6
|
|
487
502
|
- @copilotkit/shared@1.51.4-next.6
|
|
488
|
-
- @
|
|
489
|
-
- @
|
|
503
|
+
- @copilotkit/core@1.51.4-next.6
|
|
504
|
+
- @copilotkit/react@1.51.4-next.6
|
|
490
505
|
|
|
491
506
|
## 1.51.4-next.5
|
|
492
507
|
|
|
@@ -494,8 +509,8 @@
|
|
|
494
509
|
|
|
495
510
|
- @copilotkit/runtime-client-gql@1.51.4-next.5
|
|
496
511
|
- @copilotkit/shared@1.51.4-next.5
|
|
497
|
-
- @
|
|
498
|
-
- @
|
|
512
|
+
- @copilotkit/core@1.51.4-next.5
|
|
513
|
+
- @copilotkit/react@1.51.4-next.5
|
|
499
514
|
|
|
500
515
|
## 1.51.4-next.4
|
|
501
516
|
|
|
@@ -503,8 +518,8 @@
|
|
|
503
518
|
|
|
504
519
|
- c998f30: fix(core): prevent tool call results from leaking into wrong thread on thread switch
|
|
505
520
|
- Updated dependencies [c998f30]
|
|
506
|
-
- @
|
|
507
|
-
- @
|
|
521
|
+
- @copilotkit/core@1.51.4-next.4
|
|
522
|
+
- @copilotkit/react@1.51.4-next.4
|
|
508
523
|
- @copilotkit/runtime-client-gql@1.51.4-next.4
|
|
509
524
|
- @copilotkit/shared@1.51.4-next.4
|
|
510
525
|
|
|
@@ -514,10 +529,10 @@
|
|
|
514
529
|
|
|
515
530
|
- 6b9c60e: fix: add dependencies to fix stale state of regenerate method
|
|
516
531
|
- Updated dependencies [a3090d5]
|
|
517
|
-
- @
|
|
532
|
+
- @copilotkit/react@1.51.4-next.3
|
|
518
533
|
- @copilotkit/runtime-client-gql@1.51.4-next.3
|
|
519
534
|
- @copilotkit/shared@1.51.4-next.3
|
|
520
|
-
- @
|
|
535
|
+
- @copilotkit/core@1.51.4-next.3
|
|
521
536
|
|
|
522
537
|
## 1.51.4-next.2
|
|
523
538
|
|
|
@@ -525,8 +540,8 @@
|
|
|
525
540
|
|
|
526
541
|
- @copilotkit/runtime-client-gql@1.51.4-next.2
|
|
527
542
|
- @copilotkit/shared@1.51.4-next.2
|
|
528
|
-
- @
|
|
529
|
-
- @
|
|
543
|
+
- @copilotkit/core@1.51.4-next.2
|
|
544
|
+
- @copilotkit/react@1.51.4-next.2
|
|
530
545
|
|
|
531
546
|
## 1.51.4-next.1
|
|
532
547
|
|
|
@@ -535,8 +550,8 @@
|
|
|
535
550
|
- 12ee574: v2 UI improvements
|
|
536
551
|
- @copilotkit/runtime-client-gql@1.51.4-next.1
|
|
537
552
|
- @copilotkit/shared@1.51.4-next.1
|
|
538
|
-
- @
|
|
539
|
-
- @
|
|
553
|
+
- @copilotkit/core@1.51.4-next.1
|
|
554
|
+
- @copilotkit/react@1.51.4-next.1
|
|
540
555
|
|
|
541
556
|
## 1.51.4-next.0
|
|
542
557
|
|
|
@@ -544,8 +559,8 @@
|
|
|
544
559
|
|
|
545
560
|
- @copilotkit/runtime-client-gql@1.51.4-next.0
|
|
546
561
|
- @copilotkit/shared@1.51.4-next.0
|
|
547
|
-
- @
|
|
548
|
-
- @
|
|
562
|
+
- @copilotkit/core@1.51.4-next.0
|
|
563
|
+
- @copilotkit/react@1.51.4-next.0
|
|
549
564
|
|
|
550
565
|
## 1.51.3
|
|
551
566
|
|
|
@@ -559,8 +574,8 @@
|
|
|
559
574
|
- Updated dependencies [d36fc1e]
|
|
560
575
|
- @copilotkit/shared@1.51.3
|
|
561
576
|
- @copilotkit/runtime-client-gql@1.51.3
|
|
562
|
-
- @
|
|
563
|
-
- @
|
|
577
|
+
- @copilotkit/react@1.51.3
|
|
578
|
+
- @copilotkit/core@1.51.3
|
|
564
579
|
|
|
565
580
|
## 1.51.3-next.8
|
|
566
581
|
|
|
@@ -570,8 +585,8 @@
|
|
|
570
585
|
- Updated dependencies [d36fc1e]
|
|
571
586
|
- @copilotkit/runtime-client-gql@1.51.3-next.8
|
|
572
587
|
- @copilotkit/shared@1.51.3-next.8
|
|
573
|
-
- @
|
|
574
|
-
- @
|
|
588
|
+
- @copilotkit/react@1.51.3-next.8
|
|
589
|
+
- @copilotkit/core@1.51.3-next.8
|
|
575
590
|
|
|
576
591
|
## 1.51.3-next.7
|
|
577
592
|
|
|
@@ -580,8 +595,8 @@
|
|
|
580
595
|
- 3f00a01: Fix issue causing onSubmitMessage to fire after agent response
|
|
581
596
|
- @copilotkit/runtime-client-gql@1.51.3-next.7
|
|
582
597
|
- @copilotkit/shared@1.51.3-next.7
|
|
583
|
-
- @
|
|
584
|
-
- @
|
|
598
|
+
- @copilotkit/core@1.51.3-next.7
|
|
599
|
+
- @copilotkit/react@1.51.3-next.7
|
|
585
600
|
|
|
586
601
|
## 1.51.3-next.6
|
|
587
602
|
|
|
@@ -589,8 +604,8 @@
|
|
|
589
604
|
|
|
590
605
|
- @copilotkit/runtime-client-gql@1.51.3-next.6
|
|
591
606
|
- @copilotkit/shared@1.51.3-next.6
|
|
592
|
-
- @
|
|
593
|
-
- @
|
|
607
|
+
- @copilotkit/core@1.51.3-next.6
|
|
608
|
+
- @copilotkit/react@1.51.3-next.6
|
|
594
609
|
|
|
595
610
|
## 1.51.3-next.5
|
|
596
611
|
|
|
@@ -599,8 +614,8 @@
|
|
|
599
614
|
- e89fe98: fix(v1.x): address issue causing onSubmitMessage to fire after agent response
|
|
600
615
|
- @copilotkit/runtime-client-gql@1.51.3-next.5
|
|
601
616
|
- @copilotkit/shared@1.51.3-next.5
|
|
602
|
-
- @
|
|
603
|
-
- @
|
|
617
|
+
- @copilotkit/core@1.51.3-next.5
|
|
618
|
+
- @copilotkit/react@1.51.3-next.5
|
|
604
619
|
|
|
605
620
|
## 1.51.3-next.4
|
|
606
621
|
|
|
@@ -608,8 +623,8 @@
|
|
|
608
623
|
|
|
609
624
|
- @copilotkit/runtime-client-gql@1.51.3-next.4
|
|
610
625
|
- @copilotkit/shared@1.51.3-next.4
|
|
611
|
-
- @
|
|
612
|
-
- @
|
|
626
|
+
- @copilotkit/core@1.51.3-next.4
|
|
627
|
+
- @copilotkit/react@1.51.3-next.4
|
|
613
628
|
|
|
614
629
|
## 1.51.3-next.3
|
|
615
630
|
|
|
@@ -619,8 +634,8 @@
|
|
|
619
634
|
- Updated dependencies [d655e75]
|
|
620
635
|
- @copilotkit/shared@1.51.3-next.3
|
|
621
636
|
- @copilotkit/runtime-client-gql@1.51.3-next.3
|
|
622
|
-
- @
|
|
623
|
-
- @
|
|
637
|
+
- @copilotkit/core@1.51.3-next.3
|
|
638
|
+
- @copilotkit/react@1.51.3-next.3
|
|
624
639
|
|
|
625
640
|
## 1.51.3-next.2
|
|
626
641
|
|
|
@@ -628,8 +643,8 @@
|
|
|
628
643
|
|
|
629
644
|
- @copilotkit/runtime-client-gql@1.51.3-next.2
|
|
630
645
|
- @copilotkit/shared@1.51.3-next.2
|
|
631
|
-
- @
|
|
632
|
-
- @
|
|
646
|
+
- @copilotkit/core@1.51.3-next.2
|
|
647
|
+
- @copilotkit/react@1.51.3-next.2
|
|
633
648
|
|
|
634
649
|
## 1.51.3-next.1
|
|
635
650
|
|
|
@@ -637,8 +652,8 @@
|
|
|
637
652
|
|
|
638
653
|
- @copilotkit/runtime-client-gql@1.51.3-next.1
|
|
639
654
|
- @copilotkit/shared@1.51.3-next.1
|
|
640
|
-
- @
|
|
641
|
-
- @
|
|
655
|
+
- @copilotkit/core@1.51.3-next.1
|
|
656
|
+
- @copilotkit/react@1.51.3-next.1
|
|
642
657
|
|
|
643
658
|
## 1.51.3-next.0
|
|
644
659
|
|
|
@@ -646,8 +661,8 @@
|
|
|
646
661
|
|
|
647
662
|
- @copilotkit/runtime-client-gql@1.51.3-next.0
|
|
648
663
|
- @copilotkit/shared@1.51.3-next.0
|
|
649
|
-
- @
|
|
650
|
-
- @
|
|
664
|
+
- @copilotkit/core@1.51.3-next.0
|
|
665
|
+
- @copilotkit/react@1.51.3-next.0
|
|
651
666
|
|
|
652
667
|
## 1.51.2
|
|
653
668
|
|
|
@@ -658,8 +673,8 @@
|
|
|
658
673
|
- Updated dependencies [e59d23f]
|
|
659
674
|
- Updated dependencies [e59d23f]
|
|
660
675
|
- @copilotkit/runtime-client-gql@1.51.2
|
|
661
|
-
- @
|
|
662
|
-
- @
|
|
676
|
+
- @copilotkit/react@1.51.2
|
|
677
|
+
- @copilotkit/core@1.51.2
|
|
663
678
|
- @copilotkit/shared@1.51.2
|
|
664
679
|
|
|
665
680
|
## 1.51.2-next.1
|
|
@@ -671,8 +686,8 @@
|
|
|
671
686
|
- Updated dependencies [e59d23f]
|
|
672
687
|
- Updated dependencies [e59d23f]
|
|
673
688
|
- @copilotkit/runtime-client-gql@1.51.2-next.1
|
|
674
|
-
- @
|
|
675
|
-
- @
|
|
689
|
+
- @copilotkit/react@1.51.2-next.1
|
|
690
|
+
- @copilotkit/core@1.51.2-next.1
|
|
676
691
|
- @copilotkit/shared@1.51.2-next.1
|
|
677
692
|
|
|
678
693
|
## 1.51.2-next.0
|
|
@@ -681,8 +696,8 @@
|
|
|
681
696
|
|
|
682
697
|
- @copilotkit/runtime-client-gql@1.51.2-next.0
|
|
683
698
|
- @copilotkit/shared@1.51.2-next.0
|
|
684
|
-
- @
|
|
685
|
-
- @
|
|
699
|
+
- @copilotkit/core@1.51.2-next.0
|
|
700
|
+
- @copilotkit/react@1.51.2-next.0
|
|
686
701
|
|
|
687
702
|
## 1.51.1
|
|
688
703
|
|
|
@@ -690,10 +705,10 @@
|
|
|
690
705
|
|
|
691
706
|
- 329653b: Add support for MCP Apps Middleware
|
|
692
707
|
- Updated dependencies [329653b]
|
|
693
|
-
- @
|
|
708
|
+
- @copilotkit/react@1.51.1
|
|
694
709
|
- @copilotkit/runtime-client-gql@1.51.1
|
|
695
710
|
- @copilotkit/shared@1.51.1
|
|
696
|
-
- @
|
|
711
|
+
- @copilotkit/core@1.51.1
|
|
697
712
|
|
|
698
713
|
## 1.51.0
|
|
699
714
|
|
|
@@ -704,8 +719,8 @@
|
|
|
704
719
|
- Updated dependencies [2afd4e3]
|
|
705
720
|
- @copilotkit/runtime-client-gql@1.51.0
|
|
706
721
|
- @copilotkit/shared@1.51.0
|
|
707
|
-
- @
|
|
708
|
-
- @
|
|
722
|
+
- @copilotkit/react@1.51.0
|
|
723
|
+
- @copilotkit/core@1.51.0
|
|
709
724
|
|
|
710
725
|
## 1.51.0-next.4
|
|
711
726
|
|
|
@@ -713,8 +728,8 @@
|
|
|
713
728
|
|
|
714
729
|
- @copilotkit/runtime-client-gql@1.51.0-next.4
|
|
715
730
|
- @copilotkit/shared@1.51.0-next.4
|
|
716
|
-
- @
|
|
717
|
-
- @
|
|
731
|
+
- @copilotkit/core@1.51.0-next.4
|
|
732
|
+
- @copilotkit/react@1.51.0-next.4
|
|
718
733
|
|
|
719
734
|
## 1.51.0-next.3
|
|
720
735
|
|
|
@@ -722,8 +737,8 @@
|
|
|
722
737
|
|
|
723
738
|
- @copilotkit/runtime-client-gql@1.51.0-next.3
|
|
724
739
|
- @copilotkit/shared@1.51.0-next.3
|
|
725
|
-
- @
|
|
726
|
-
- @
|
|
740
|
+
- @copilotkit/core@1.51.0-next.3
|
|
741
|
+
- @copilotkit/react@1.51.0-next.3
|
|
727
742
|
|
|
728
743
|
## 1.51.0-next.2
|
|
729
744
|
|
|
@@ -732,8 +747,8 @@
|
|
|
732
747
|
- Updated dependencies [2afd4e3]
|
|
733
748
|
- @copilotkit/shared@1.51.0-next.2
|
|
734
749
|
- @copilotkit/runtime-client-gql@1.51.0-next.2
|
|
735
|
-
- @
|
|
736
|
-
- @
|
|
750
|
+
- @copilotkit/core@1.51.0-next.2
|
|
751
|
+
- @copilotkit/react@1.51.0-next.2
|
|
737
752
|
|
|
738
753
|
## 1.51.0-next.1
|
|
739
754
|
|
|
@@ -741,8 +756,8 @@
|
|
|
741
756
|
|
|
742
757
|
- @copilotkit/runtime-client-gql@1.51.0-next.1
|
|
743
758
|
- @copilotkit/shared@1.51.0-next.1
|
|
744
|
-
- @
|
|
745
|
-
- @
|
|
759
|
+
- @copilotkit/core@1.51.0-next.1
|
|
760
|
+
- @copilotkit/react@1.51.0-next.1
|
|
746
761
|
|
|
747
762
|
## 1.50.2-next.0
|
|
748
763
|
|