@copilotkit/react-core 1.54.1 → 1.55.0-next.8
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 +127 -116
- 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 +37 -9
- 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,18 +1,29 @@
|
|
|
1
1
|
# ui
|
|
2
2
|
|
|
3
|
-
## 1.
|
|
3
|
+
## 1.55.0-next.8
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
7
|
+
- @copilotkit/a2ui-renderer@1.55.0-next.8
|
|
8
|
+
- @copilotkit/core@1.55.0-next.8
|
|
9
|
+
- @copilotkit/runtime-client-gql@1.55.0-next.8
|
|
10
|
+
- @copilotkit/shared@1.55.0-next.8
|
|
11
|
+
- @copilotkit/web-inspector@1.55.0-next.8
|
|
12
|
+
|
|
13
|
+
## 1.55.0-next.7
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- 1ceb963: refactor: consolidate V1/V2 packages into flat @copilotkit/\* structure
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [1ceb963]
|
|
22
|
+
- @copilotkit/a2ui-renderer@1.55.0-next.7
|
|
23
|
+
- @copilotkit/core@1.55.0-next.7
|
|
24
|
+
- @copilotkit/runtime-client-gql@1.55.0-next.7
|
|
25
|
+
- @copilotkit/shared@1.55.0-next.7
|
|
26
|
+
- @copilotkit/web-inspector@1.55.0-next.7
|
|
16
27
|
|
|
17
28
|
## 1.54.1-next.6
|
|
18
29
|
|
|
@@ -183,10 +194,10 @@
|
|
|
183
194
|
### Patch Changes
|
|
184
195
|
|
|
185
196
|
- Updated dependencies [d746e4f]
|
|
186
|
-
- @
|
|
197
|
+
- @copilotkit/react@1.53.1-next.2
|
|
187
198
|
- @copilotkit/runtime-client-gql@1.53.1-next.2
|
|
188
199
|
- @copilotkit/shared@1.53.1-next.2
|
|
189
|
-
- @
|
|
200
|
+
- @copilotkit/core@1.53.1-next.2
|
|
190
201
|
|
|
191
202
|
## 1.53.1-next.1
|
|
192
203
|
|
|
@@ -194,18 +205,18 @@
|
|
|
194
205
|
|
|
195
206
|
- @copilotkit/runtime-client-gql@1.53.1-next.1
|
|
196
207
|
- @copilotkit/shared@1.53.1-next.1
|
|
197
|
-
- @
|
|
198
|
-
- @
|
|
208
|
+
- @copilotkit/core@1.53.1-next.1
|
|
209
|
+
- @copilotkit/react@1.53.1-next.1
|
|
199
210
|
|
|
200
211
|
## 1.53.1-next.0
|
|
201
212
|
|
|
202
213
|
### Patch Changes
|
|
203
214
|
|
|
204
215
|
- Updated dependencies [6e0cddf]
|
|
205
|
-
- @
|
|
216
|
+
- @copilotkit/react@1.53.1-next.0
|
|
206
217
|
- @copilotkit/runtime-client-gql@1.53.1-next.0
|
|
207
218
|
- @copilotkit/shared@1.53.1-next.0
|
|
208
|
-
- @
|
|
219
|
+
- @copilotkit/core@1.53.1-next.0
|
|
209
220
|
|
|
210
221
|
## 1.53.0
|
|
211
222
|
|
|
@@ -218,8 +229,8 @@
|
|
|
218
229
|
- Updated dependencies [1510f64]
|
|
219
230
|
- Updated dependencies [bf1fc6f]
|
|
220
231
|
- @copilotkit/shared@1.53.0
|
|
221
|
-
- @
|
|
222
|
-
- @
|
|
232
|
+
- @copilotkit/core@1.53.0
|
|
233
|
+
- @copilotkit/react@1.53.0
|
|
223
234
|
- @copilotkit/runtime-client-gql@1.53.0
|
|
224
235
|
|
|
225
236
|
## 1.53.0-next.6
|
|
@@ -228,8 +239,8 @@
|
|
|
228
239
|
|
|
229
240
|
- @copilotkit/runtime-client-gql@1.53.0-next.6
|
|
230
241
|
- @copilotkit/shared@1.53.0-next.6
|
|
231
|
-
- @
|
|
232
|
-
- @
|
|
242
|
+
- @copilotkit/core@1.53.0-next.6
|
|
243
|
+
- @copilotkit/react@1.53.0-next.6
|
|
233
244
|
|
|
234
245
|
## 1.53.0-next.5
|
|
235
246
|
|
|
@@ -237,8 +248,8 @@
|
|
|
237
248
|
|
|
238
249
|
- @copilotkit/runtime-client-gql@1.53.0-next.5
|
|
239
250
|
- @copilotkit/shared@1.53.0-next.5
|
|
240
|
-
- @
|
|
241
|
-
- @
|
|
251
|
+
- @copilotkit/core@1.53.0-next.5
|
|
252
|
+
- @copilotkit/react@1.53.0-next.5
|
|
242
253
|
|
|
243
254
|
## 1.52.2-next.4
|
|
244
255
|
|
|
@@ -248,8 +259,8 @@
|
|
|
248
259
|
- Adds an onError callback to CopilotChat and CopilotKitProvider
|
|
249
260
|
- @copilotkit/runtime-client-gql@1.52.2-next.4
|
|
250
261
|
- @copilotkit/shared@1.52.2-next.4
|
|
251
|
-
- @
|
|
252
|
-
- @
|
|
262
|
+
- @copilotkit/core@1.52.2-next.4
|
|
263
|
+
- @copilotkit/react@1.52.2-next.4
|
|
253
264
|
|
|
254
265
|
## 1.52.2-next.3
|
|
255
266
|
|
|
@@ -258,8 +269,8 @@
|
|
|
258
269
|
- 1510f64: feat: enable mcp and a2ui middleware directly from copilotkit runtime
|
|
259
270
|
- Updated dependencies [1510f64]
|
|
260
271
|
- @copilotkit/shared@1.52.2-next.3
|
|
261
|
-
- @
|
|
262
|
-
- @
|
|
272
|
+
- @copilotkit/core@1.52.2-next.3
|
|
273
|
+
- @copilotkit/react@1.52.2-next.3
|
|
263
274
|
- @copilotkit/runtime-client-gql@1.52.2-next.3
|
|
264
275
|
|
|
265
276
|
## 1.52.2-next.2
|
|
@@ -268,8 +279,8 @@
|
|
|
268
279
|
|
|
269
280
|
- @copilotkit/runtime-client-gql@1.52.2-next.2
|
|
270
281
|
- @copilotkit/shared@1.52.2-next.2
|
|
271
|
-
- @
|
|
272
|
-
- @
|
|
282
|
+
- @copilotkit/core@1.52.2-next.2
|
|
283
|
+
- @copilotkit/react@1.52.2-next.2
|
|
273
284
|
|
|
274
285
|
## 1.52.2-next.1
|
|
275
286
|
|
|
@@ -278,8 +289,8 @@
|
|
|
278
289
|
- Updated dependencies [bf1fc6f]
|
|
279
290
|
- @copilotkit/shared@1.52.2-next.1
|
|
280
291
|
- @copilotkit/runtime-client-gql@1.52.2-next.1
|
|
281
|
-
- @
|
|
282
|
-
- @
|
|
292
|
+
- @copilotkit/core@1.52.2-next.1
|
|
293
|
+
- @copilotkit/react@1.52.2-next.1
|
|
283
294
|
|
|
284
295
|
## 1.52.2-next.0
|
|
285
296
|
|
|
@@ -288,8 +299,8 @@
|
|
|
288
299
|
- f1eaa4c: Fixing a regression with setModalOpen
|
|
289
300
|
- @copilotkit/runtime-client-gql@1.52.2-next.0
|
|
290
301
|
- @copilotkit/shared@1.52.2-next.0
|
|
291
|
-
- @
|
|
292
|
-
- @
|
|
302
|
+
- @copilotkit/core@1.52.2-next.0
|
|
303
|
+
- @copilotkit/react@1.52.2-next.0
|
|
293
304
|
|
|
294
305
|
## 1.52.1
|
|
295
306
|
|
|
@@ -300,10 +311,10 @@
|
|
|
300
311
|
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
312
|
|
|
302
313
|
- Updated dependencies [bbdf67d]
|
|
303
|
-
- @
|
|
314
|
+
- @copilotkit/react@1.52.1
|
|
304
315
|
- @copilotkit/runtime-client-gql@1.52.1
|
|
305
316
|
- @copilotkit/shared@1.52.1
|
|
306
|
-
- @
|
|
317
|
+
- @copilotkit/core@1.52.1
|
|
307
318
|
|
|
308
319
|
## 1.52.1-next.1
|
|
309
320
|
|
|
@@ -314,18 +325,18 @@
|
|
|
314
325
|
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.
|
|
315
326
|
- @copilotkit/runtime-client-gql@1.52.1-next.1
|
|
316
327
|
- @copilotkit/shared@1.52.1-next.1
|
|
317
|
-
- @
|
|
318
|
-
- @
|
|
328
|
+
- @copilotkit/core@1.52.1-next.1
|
|
329
|
+
- @copilotkit/react@1.52.1-next.1
|
|
319
330
|
|
|
320
331
|
## 1.52.1-next.0
|
|
321
332
|
|
|
322
333
|
### Patch Changes
|
|
323
334
|
|
|
324
335
|
- Updated dependencies [bbdf67d]
|
|
325
|
-
- @
|
|
336
|
+
- @copilotkit/react@1.52.1-next.0
|
|
326
337
|
- @copilotkit/runtime-client-gql@1.52.1-next.0
|
|
327
338
|
- @copilotkit/shared@1.52.1-next.0
|
|
328
|
-
- @
|
|
339
|
+
- @copilotkit/core@1.52.1-next.0
|
|
329
340
|
|
|
330
341
|
## 1.52.0
|
|
331
342
|
|
|
@@ -351,8 +362,8 @@
|
|
|
351
362
|
- Updated dependencies [2007f8b]
|
|
352
363
|
- Updated dependencies [ef0f539]
|
|
353
364
|
- Updated dependencies [942d397]
|
|
354
|
-
- @
|
|
355
|
-
- @
|
|
365
|
+
- @copilotkit/react@1.52.0
|
|
366
|
+
- @copilotkit/core@1.52.0
|
|
356
367
|
- @copilotkit/shared@1.52.0
|
|
357
368
|
- @copilotkit/runtime-client-gql@1.52.0
|
|
358
369
|
|
|
@@ -361,10 +372,10 @@
|
|
|
361
372
|
### Patch Changes
|
|
362
373
|
|
|
363
374
|
- Updated dependencies [942d397]
|
|
364
|
-
- @
|
|
375
|
+
- @copilotkit/react@1.52.0-next.8
|
|
365
376
|
- @copilotkit/runtime-client-gql@1.52.0-next.8
|
|
366
377
|
- @copilotkit/shared@1.52.0-next.8
|
|
367
|
-
- @
|
|
378
|
+
- @copilotkit/core@1.52.0-next.8
|
|
368
379
|
|
|
369
380
|
## 1.52.0-next.7
|
|
370
381
|
|
|
@@ -372,8 +383,8 @@
|
|
|
372
383
|
|
|
373
384
|
- d77f347: Added in the useInterrupt hook
|
|
374
385
|
- Updated dependencies [d77f347]
|
|
375
|
-
- @
|
|
376
|
-
- @
|
|
386
|
+
- @copilotkit/react@1.52.0-next.7
|
|
387
|
+
- @copilotkit/core@1.52.0-next.7
|
|
377
388
|
- @copilotkit/runtime-client-gql@1.52.0-next.7
|
|
378
389
|
- @copilotkit/shared@1.52.0-next.7
|
|
379
390
|
|
|
@@ -384,10 +395,10 @@
|
|
|
384
395
|
- 2007f8b: feat: useComponent improvements
|
|
385
396
|
- 5f941db: Prevent CPK styles from polluting user app
|
|
386
397
|
- Updated dependencies [2007f8b]
|
|
387
|
-
- @
|
|
398
|
+
- @copilotkit/react@1.52.0-next.6
|
|
388
399
|
- @copilotkit/runtime-client-gql@1.52.0-next.6
|
|
389
400
|
- @copilotkit/shared@1.52.0-next.6
|
|
390
|
-
- @
|
|
401
|
+
- @copilotkit/core@1.52.0-next.6
|
|
391
402
|
|
|
392
403
|
## 1.52.0-next.5
|
|
393
404
|
|
|
@@ -405,8 +416,8 @@
|
|
|
405
416
|
|
|
406
417
|
- @copilotkit/runtime-client-gql@1.52.0-next.5
|
|
407
418
|
- @copilotkit/shared@1.52.0-next.5
|
|
408
|
-
- @
|
|
409
|
-
- @
|
|
419
|
+
- @copilotkit/core@1.52.0-next.5
|
|
420
|
+
- @copilotkit/react@1.52.0-next.5
|
|
410
421
|
|
|
411
422
|
## 1.51.5-next.4
|
|
412
423
|
|
|
@@ -414,18 +425,18 @@
|
|
|
414
425
|
|
|
415
426
|
- @copilotkit/runtime-client-gql@1.51.5-next.4
|
|
416
427
|
- @copilotkit/shared@1.51.5-next.4
|
|
417
|
-
- @
|
|
418
|
-
- @
|
|
428
|
+
- @copilotkit/core@1.51.5-next.4
|
|
429
|
+
- @copilotkit/react@1.51.5-next.4
|
|
419
430
|
|
|
420
431
|
## 1.51.5-next.3
|
|
421
432
|
|
|
422
433
|
### Patch Changes
|
|
423
434
|
|
|
424
435
|
- Updated dependencies [593859f]
|
|
425
|
-
- @
|
|
436
|
+
- @copilotkit/react@1.51.5-next.3
|
|
426
437
|
- @copilotkit/runtime-client-gql@1.51.5-next.3
|
|
427
438
|
- @copilotkit/shared@1.51.5-next.3
|
|
428
|
-
- @
|
|
439
|
+
- @copilotkit/core@1.51.5-next.3
|
|
429
440
|
|
|
430
441
|
## 1.51.5-next.2
|
|
431
442
|
|
|
@@ -433,8 +444,8 @@
|
|
|
433
444
|
|
|
434
445
|
- @copilotkit/runtime-client-gql@1.51.5-next.2
|
|
435
446
|
- @copilotkit/shared@1.51.5-next.2
|
|
436
|
-
- @
|
|
437
|
-
- @
|
|
447
|
+
- @copilotkit/core@1.51.5-next.2
|
|
448
|
+
- @copilotkit/react@1.51.5-next.2
|
|
438
449
|
|
|
439
450
|
## 1.51.5-next.1
|
|
440
451
|
|
|
@@ -443,8 +454,8 @@
|
|
|
443
454
|
- 412965a: Introducing available prop to useFrontendTool()
|
|
444
455
|
- @copilotkit/runtime-client-gql@1.51.5-next.1
|
|
445
456
|
- @copilotkit/shared@1.51.5-next.1
|
|
446
|
-
- @
|
|
447
|
-
- @
|
|
457
|
+
- @copilotkit/core@1.51.5-next.1
|
|
458
|
+
- @copilotkit/react@1.51.5-next.1
|
|
448
459
|
|
|
449
460
|
## 1.51.5-next.0
|
|
450
461
|
|
|
@@ -453,8 +464,8 @@
|
|
|
453
464
|
- ef0f539: Add reasoning support and default components for reasoning messages
|
|
454
465
|
- Updated dependencies [ef0f539]
|
|
455
466
|
- @copilotkit/shared@1.51.5-next.0
|
|
456
|
-
- @
|
|
457
|
-
- @
|
|
467
|
+
- @copilotkit/react@1.51.5-next.0
|
|
468
|
+
- @copilotkit/core@1.51.5-next.0
|
|
458
469
|
- @copilotkit/runtime-client-gql@1.51.5-next.0
|
|
459
470
|
|
|
460
471
|
## 1.51.4
|
|
@@ -468,8 +479,8 @@
|
|
|
468
479
|
- 6b7d8ef: feat(react): apply resource CSP domains to MCP Apps sandbox iframe
|
|
469
480
|
- Updated dependencies [c998f30]
|
|
470
481
|
- Updated dependencies [a3090d5]
|
|
471
|
-
- @
|
|
472
|
-
- @
|
|
482
|
+
- @copilotkit/core@1.51.4
|
|
483
|
+
- @copilotkit/react@1.51.4
|
|
473
484
|
- @copilotkit/runtime-client-gql@1.51.4
|
|
474
485
|
- @copilotkit/shared@1.51.4
|
|
475
486
|
|
|
@@ -480,8 +491,8 @@
|
|
|
480
491
|
- 9bc868d: Frontend tools integration with core in Angular package
|
|
481
492
|
- @copilotkit/runtime-client-gql@1.51.4-next.8
|
|
482
493
|
- @copilotkit/shared@1.51.4-next.8
|
|
483
|
-
- @
|
|
484
|
-
- @
|
|
494
|
+
- @copilotkit/core@1.51.4-next.8
|
|
495
|
+
- @copilotkit/react@1.51.4-next.8
|
|
485
496
|
|
|
486
497
|
## 1.51.4-next.7
|
|
487
498
|
|
|
@@ -490,8 +501,8 @@
|
|
|
490
501
|
- 6b7d8ef: feat(react): apply resource CSP domains to MCP Apps sandbox iframe
|
|
491
502
|
- @copilotkit/runtime-client-gql@1.51.4-next.7
|
|
492
503
|
- @copilotkit/shared@1.51.4-next.7
|
|
493
|
-
- @
|
|
494
|
-
- @
|
|
504
|
+
- @copilotkit/core@1.51.4-next.7
|
|
505
|
+
- @copilotkit/react@1.51.4-next.7
|
|
495
506
|
|
|
496
507
|
## 1.51.4-next.6
|
|
497
508
|
|
|
@@ -499,8 +510,8 @@
|
|
|
499
510
|
|
|
500
511
|
- @copilotkit/runtime-client-gql@1.51.4-next.6
|
|
501
512
|
- @copilotkit/shared@1.51.4-next.6
|
|
502
|
-
- @
|
|
503
|
-
- @
|
|
513
|
+
- @copilotkit/core@1.51.4-next.6
|
|
514
|
+
- @copilotkit/react@1.51.4-next.6
|
|
504
515
|
|
|
505
516
|
## 1.51.4-next.5
|
|
506
517
|
|
|
@@ -508,8 +519,8 @@
|
|
|
508
519
|
|
|
509
520
|
- @copilotkit/runtime-client-gql@1.51.4-next.5
|
|
510
521
|
- @copilotkit/shared@1.51.4-next.5
|
|
511
|
-
- @
|
|
512
|
-
- @
|
|
522
|
+
- @copilotkit/core@1.51.4-next.5
|
|
523
|
+
- @copilotkit/react@1.51.4-next.5
|
|
513
524
|
|
|
514
525
|
## 1.51.4-next.4
|
|
515
526
|
|
|
@@ -517,8 +528,8 @@
|
|
|
517
528
|
|
|
518
529
|
- c998f30: fix(core): prevent tool call results from leaking into wrong thread on thread switch
|
|
519
530
|
- Updated dependencies [c998f30]
|
|
520
|
-
- @
|
|
521
|
-
- @
|
|
531
|
+
- @copilotkit/core@1.51.4-next.4
|
|
532
|
+
- @copilotkit/react@1.51.4-next.4
|
|
522
533
|
- @copilotkit/runtime-client-gql@1.51.4-next.4
|
|
523
534
|
- @copilotkit/shared@1.51.4-next.4
|
|
524
535
|
|
|
@@ -528,10 +539,10 @@
|
|
|
528
539
|
|
|
529
540
|
- 6b9c60e: fix: add dependencies to fix stale state of regenerate method
|
|
530
541
|
- Updated dependencies [a3090d5]
|
|
531
|
-
- @
|
|
542
|
+
- @copilotkit/react@1.51.4-next.3
|
|
532
543
|
- @copilotkit/runtime-client-gql@1.51.4-next.3
|
|
533
544
|
- @copilotkit/shared@1.51.4-next.3
|
|
534
|
-
- @
|
|
545
|
+
- @copilotkit/core@1.51.4-next.3
|
|
535
546
|
|
|
536
547
|
## 1.51.4-next.2
|
|
537
548
|
|
|
@@ -539,8 +550,8 @@
|
|
|
539
550
|
|
|
540
551
|
- @copilotkit/runtime-client-gql@1.51.4-next.2
|
|
541
552
|
- @copilotkit/shared@1.51.4-next.2
|
|
542
|
-
- @
|
|
543
|
-
- @
|
|
553
|
+
- @copilotkit/core@1.51.4-next.2
|
|
554
|
+
- @copilotkit/react@1.51.4-next.2
|
|
544
555
|
|
|
545
556
|
## 1.51.4-next.1
|
|
546
557
|
|
|
@@ -549,8 +560,8 @@
|
|
|
549
560
|
- 12ee574: v2 UI improvements
|
|
550
561
|
- @copilotkit/runtime-client-gql@1.51.4-next.1
|
|
551
562
|
- @copilotkit/shared@1.51.4-next.1
|
|
552
|
-
- @
|
|
553
|
-
- @
|
|
563
|
+
- @copilotkit/core@1.51.4-next.1
|
|
564
|
+
- @copilotkit/react@1.51.4-next.1
|
|
554
565
|
|
|
555
566
|
## 1.51.4-next.0
|
|
556
567
|
|
|
@@ -558,8 +569,8 @@
|
|
|
558
569
|
|
|
559
570
|
- @copilotkit/runtime-client-gql@1.51.4-next.0
|
|
560
571
|
- @copilotkit/shared@1.51.4-next.0
|
|
561
|
-
- @
|
|
562
|
-
- @
|
|
572
|
+
- @copilotkit/core@1.51.4-next.0
|
|
573
|
+
- @copilotkit/react@1.51.4-next.0
|
|
563
574
|
|
|
564
575
|
## 1.51.3
|
|
565
576
|
|
|
@@ -573,8 +584,8 @@
|
|
|
573
584
|
- Updated dependencies [d36fc1e]
|
|
574
585
|
- @copilotkit/shared@1.51.3
|
|
575
586
|
- @copilotkit/runtime-client-gql@1.51.3
|
|
576
|
-
- @
|
|
577
|
-
- @
|
|
587
|
+
- @copilotkit/react@1.51.3
|
|
588
|
+
- @copilotkit/core@1.51.3
|
|
578
589
|
|
|
579
590
|
## 1.51.3-next.8
|
|
580
591
|
|
|
@@ -584,8 +595,8 @@
|
|
|
584
595
|
- Updated dependencies [d36fc1e]
|
|
585
596
|
- @copilotkit/runtime-client-gql@1.51.3-next.8
|
|
586
597
|
- @copilotkit/shared@1.51.3-next.8
|
|
587
|
-
- @
|
|
588
|
-
- @
|
|
598
|
+
- @copilotkit/react@1.51.3-next.8
|
|
599
|
+
- @copilotkit/core@1.51.3-next.8
|
|
589
600
|
|
|
590
601
|
## 1.51.3-next.7
|
|
591
602
|
|
|
@@ -594,8 +605,8 @@
|
|
|
594
605
|
- 3f00a01: Fix issue causing onSubmitMessage to fire after agent response
|
|
595
606
|
- @copilotkit/runtime-client-gql@1.51.3-next.7
|
|
596
607
|
- @copilotkit/shared@1.51.3-next.7
|
|
597
|
-
- @
|
|
598
|
-
- @
|
|
608
|
+
- @copilotkit/core@1.51.3-next.7
|
|
609
|
+
- @copilotkit/react@1.51.3-next.7
|
|
599
610
|
|
|
600
611
|
## 1.51.3-next.6
|
|
601
612
|
|
|
@@ -603,8 +614,8 @@
|
|
|
603
614
|
|
|
604
615
|
- @copilotkit/runtime-client-gql@1.51.3-next.6
|
|
605
616
|
- @copilotkit/shared@1.51.3-next.6
|
|
606
|
-
- @
|
|
607
|
-
- @
|
|
617
|
+
- @copilotkit/core@1.51.3-next.6
|
|
618
|
+
- @copilotkit/react@1.51.3-next.6
|
|
608
619
|
|
|
609
620
|
## 1.51.3-next.5
|
|
610
621
|
|
|
@@ -613,8 +624,8 @@
|
|
|
613
624
|
- e89fe98: fix(v1.x): address issue causing onSubmitMessage to fire after agent response
|
|
614
625
|
- @copilotkit/runtime-client-gql@1.51.3-next.5
|
|
615
626
|
- @copilotkit/shared@1.51.3-next.5
|
|
616
|
-
- @
|
|
617
|
-
- @
|
|
627
|
+
- @copilotkit/core@1.51.3-next.5
|
|
628
|
+
- @copilotkit/react@1.51.3-next.5
|
|
618
629
|
|
|
619
630
|
## 1.51.3-next.4
|
|
620
631
|
|
|
@@ -622,8 +633,8 @@
|
|
|
622
633
|
|
|
623
634
|
- @copilotkit/runtime-client-gql@1.51.3-next.4
|
|
624
635
|
- @copilotkit/shared@1.51.3-next.4
|
|
625
|
-
- @
|
|
626
|
-
- @
|
|
636
|
+
- @copilotkit/core@1.51.3-next.4
|
|
637
|
+
- @copilotkit/react@1.51.3-next.4
|
|
627
638
|
|
|
628
639
|
## 1.51.3-next.3
|
|
629
640
|
|
|
@@ -633,8 +644,8 @@
|
|
|
633
644
|
- Updated dependencies [d655e75]
|
|
634
645
|
- @copilotkit/shared@1.51.3-next.3
|
|
635
646
|
- @copilotkit/runtime-client-gql@1.51.3-next.3
|
|
636
|
-
- @
|
|
637
|
-
- @
|
|
647
|
+
- @copilotkit/core@1.51.3-next.3
|
|
648
|
+
- @copilotkit/react@1.51.3-next.3
|
|
638
649
|
|
|
639
650
|
## 1.51.3-next.2
|
|
640
651
|
|
|
@@ -642,8 +653,8 @@
|
|
|
642
653
|
|
|
643
654
|
- @copilotkit/runtime-client-gql@1.51.3-next.2
|
|
644
655
|
- @copilotkit/shared@1.51.3-next.2
|
|
645
|
-
- @
|
|
646
|
-
- @
|
|
656
|
+
- @copilotkit/core@1.51.3-next.2
|
|
657
|
+
- @copilotkit/react@1.51.3-next.2
|
|
647
658
|
|
|
648
659
|
## 1.51.3-next.1
|
|
649
660
|
|
|
@@ -651,8 +662,8 @@
|
|
|
651
662
|
|
|
652
663
|
- @copilotkit/runtime-client-gql@1.51.3-next.1
|
|
653
664
|
- @copilotkit/shared@1.51.3-next.1
|
|
654
|
-
- @
|
|
655
|
-
- @
|
|
665
|
+
- @copilotkit/core@1.51.3-next.1
|
|
666
|
+
- @copilotkit/react@1.51.3-next.1
|
|
656
667
|
|
|
657
668
|
## 1.51.3-next.0
|
|
658
669
|
|
|
@@ -660,8 +671,8 @@
|
|
|
660
671
|
|
|
661
672
|
- @copilotkit/runtime-client-gql@1.51.3-next.0
|
|
662
673
|
- @copilotkit/shared@1.51.3-next.0
|
|
663
|
-
- @
|
|
664
|
-
- @
|
|
674
|
+
- @copilotkit/core@1.51.3-next.0
|
|
675
|
+
- @copilotkit/react@1.51.3-next.0
|
|
665
676
|
|
|
666
677
|
## 1.51.2
|
|
667
678
|
|
|
@@ -672,8 +683,8 @@
|
|
|
672
683
|
- Updated dependencies [e59d23f]
|
|
673
684
|
- Updated dependencies [e59d23f]
|
|
674
685
|
- @copilotkit/runtime-client-gql@1.51.2
|
|
675
|
-
- @
|
|
676
|
-
- @
|
|
686
|
+
- @copilotkit/react@1.51.2
|
|
687
|
+
- @copilotkit/core@1.51.2
|
|
677
688
|
- @copilotkit/shared@1.51.2
|
|
678
689
|
|
|
679
690
|
## 1.51.2-next.1
|
|
@@ -685,8 +696,8 @@
|
|
|
685
696
|
- Updated dependencies [e59d23f]
|
|
686
697
|
- Updated dependencies [e59d23f]
|
|
687
698
|
- @copilotkit/runtime-client-gql@1.51.2-next.1
|
|
688
|
-
- @
|
|
689
|
-
- @
|
|
699
|
+
- @copilotkit/react@1.51.2-next.1
|
|
700
|
+
- @copilotkit/core@1.51.2-next.1
|
|
690
701
|
- @copilotkit/shared@1.51.2-next.1
|
|
691
702
|
|
|
692
703
|
## 1.51.2-next.0
|
|
@@ -695,8 +706,8 @@
|
|
|
695
706
|
|
|
696
707
|
- @copilotkit/runtime-client-gql@1.51.2-next.0
|
|
697
708
|
- @copilotkit/shared@1.51.2-next.0
|
|
698
|
-
- @
|
|
699
|
-
- @
|
|
709
|
+
- @copilotkit/core@1.51.2-next.0
|
|
710
|
+
- @copilotkit/react@1.51.2-next.0
|
|
700
711
|
|
|
701
712
|
## 1.51.1
|
|
702
713
|
|
|
@@ -704,10 +715,10 @@
|
|
|
704
715
|
|
|
705
716
|
- 329653b: Add support for MCP Apps Middleware
|
|
706
717
|
- Updated dependencies [329653b]
|
|
707
|
-
- @
|
|
718
|
+
- @copilotkit/react@1.51.1
|
|
708
719
|
- @copilotkit/runtime-client-gql@1.51.1
|
|
709
720
|
- @copilotkit/shared@1.51.1
|
|
710
|
-
- @
|
|
721
|
+
- @copilotkit/core@1.51.1
|
|
711
722
|
|
|
712
723
|
## 1.51.0
|
|
713
724
|
|
|
@@ -718,8 +729,8 @@
|
|
|
718
729
|
- Updated dependencies [2afd4e3]
|
|
719
730
|
- @copilotkit/runtime-client-gql@1.51.0
|
|
720
731
|
- @copilotkit/shared@1.51.0
|
|
721
|
-
- @
|
|
722
|
-
- @
|
|
732
|
+
- @copilotkit/react@1.51.0
|
|
733
|
+
- @copilotkit/core@1.51.0
|
|
723
734
|
|
|
724
735
|
## 1.51.0-next.4
|
|
725
736
|
|
|
@@ -727,8 +738,8 @@
|
|
|
727
738
|
|
|
728
739
|
- @copilotkit/runtime-client-gql@1.51.0-next.4
|
|
729
740
|
- @copilotkit/shared@1.51.0-next.4
|
|
730
|
-
- @
|
|
731
|
-
- @
|
|
741
|
+
- @copilotkit/core@1.51.0-next.4
|
|
742
|
+
- @copilotkit/react@1.51.0-next.4
|
|
732
743
|
|
|
733
744
|
## 1.51.0-next.3
|
|
734
745
|
|
|
@@ -736,8 +747,8 @@
|
|
|
736
747
|
|
|
737
748
|
- @copilotkit/runtime-client-gql@1.51.0-next.3
|
|
738
749
|
- @copilotkit/shared@1.51.0-next.3
|
|
739
|
-
- @
|
|
740
|
-
- @
|
|
750
|
+
- @copilotkit/core@1.51.0-next.3
|
|
751
|
+
- @copilotkit/react@1.51.0-next.3
|
|
741
752
|
|
|
742
753
|
## 1.51.0-next.2
|
|
743
754
|
|
|
@@ -746,8 +757,8 @@
|
|
|
746
757
|
- Updated dependencies [2afd4e3]
|
|
747
758
|
- @copilotkit/shared@1.51.0-next.2
|
|
748
759
|
- @copilotkit/runtime-client-gql@1.51.0-next.2
|
|
749
|
-
- @
|
|
750
|
-
- @
|
|
760
|
+
- @copilotkit/core@1.51.0-next.2
|
|
761
|
+
- @copilotkit/react@1.51.0-next.2
|
|
751
762
|
|
|
752
763
|
## 1.51.0-next.1
|
|
753
764
|
|
|
@@ -755,8 +766,8 @@
|
|
|
755
766
|
|
|
756
767
|
- @copilotkit/runtime-client-gql@1.51.0-next.1
|
|
757
768
|
- @copilotkit/shared@1.51.0-next.1
|
|
758
|
-
- @
|
|
759
|
-
- @
|
|
769
|
+
- @copilotkit/core@1.51.0-next.1
|
|
770
|
+
- @copilotkit/react@1.51.0-next.1
|
|
760
771
|
|
|
761
772
|
## 1.50.2-next.0
|
|
762
773
|
|