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