@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.
Files changed (183) hide show
  1. package/CHANGELOG.md +127 -116
  2. package/dist/copilotkit-B3Mb1yVE.cjs +7975 -0
  3. package/dist/copilotkit-B3Mb1yVE.cjs.map +1 -0
  4. package/dist/copilotkit-DBzgOMby.d.cts +2182 -0
  5. package/dist/copilotkit-DBzgOMby.d.cts.map +1 -0
  6. package/dist/copilotkit-DNYSFuz5.mjs +7562 -0
  7. package/dist/copilotkit-DNYSFuz5.mjs.map +1 -0
  8. package/dist/copilotkit-Dy5w3qEV.d.mts +2182 -0
  9. package/dist/copilotkit-Dy5w3qEV.d.mts.map +1 -0
  10. package/dist/index.cjs +27 -28
  11. package/dist/index.cjs.map +1 -1
  12. package/dist/index.d.cts +3 -3
  13. package/dist/index.d.cts.map +1 -1
  14. package/dist/index.d.mts +3 -3
  15. package/dist/index.d.mts.map +1 -1
  16. package/dist/index.mjs +4 -5
  17. package/dist/index.mjs.map +1 -1
  18. package/dist/index.umd.js +1941 -35
  19. package/dist/index.umd.js.map +1 -1
  20. package/dist/v2/index.cjs +77 -7
  21. package/dist/v2/index.css +1 -2
  22. package/dist/v2/index.d.cts +6 -4
  23. package/dist/v2/index.d.mts +6 -4
  24. package/dist/v2/index.mjs +7 -4
  25. package/dist/v2/index.umd.js +5725 -24
  26. package/dist/v2/index.umd.js.map +1 -1
  27. package/package.json +37 -9
  28. package/scripts/scope-preflight.mjs +101 -0
  29. package/src/components/CopilotListeners.tsx +2 -6
  30. package/src/components/copilot-provider/copilot-messages.tsx +1 -1
  31. package/src/components/copilot-provider/copilotkit-props.tsx +1 -1
  32. package/src/components/copilot-provider/copilotkit.tsx +4 -4
  33. package/src/context/copilot-messages-context.tsx +1 -1
  34. package/src/hooks/__tests__/use-coagent-config.test.ts +2 -2
  35. package/src/hooks/__tests__/use-coagent-state-render.e2e.test.tsx +2 -2
  36. package/src/hooks/__tests__/use-copilot-chat-internal-connect.test.tsx +3 -7
  37. package/src/hooks/__tests__/use-frontend-tool-available.test.tsx +1 -1
  38. package/src/hooks/__tests__/use-frontend-tool-remount.e2e.test.tsx +4 -4
  39. package/src/hooks/use-agent-nodename.ts +1 -1
  40. package/src/hooks/use-coagent-state-render-bridge.tsx +1 -4
  41. package/src/hooks/use-coagent.ts +1 -1
  42. package/src/hooks/use-configure-chat-suggestions.tsx +2 -2
  43. package/src/hooks/use-copilot-chat-suggestions.tsx +2 -2
  44. package/src/hooks/use-copilot-chat_internal.ts +2 -2
  45. package/src/hooks/use-copilot-readable.ts +1 -1
  46. package/src/hooks/use-frontend-tool.ts +2 -2
  47. package/src/hooks/use-human-in-the-loop.ts +2 -2
  48. package/src/hooks/use-langgraph-interrupt.ts +2 -5
  49. package/src/hooks/use-lazy-tool-renderer.tsx +1 -1
  50. package/src/hooks/use-render-tool-call.ts +1 -1
  51. package/src/lib/copilot-task.ts +1 -1
  52. package/src/setupTests.ts +18 -14
  53. package/src/v2/__tests__/A2UIMessageRenderer.test.tsx +176 -0
  54. package/src/v2/__tests__/globalSetup.ts +14 -0
  55. package/src/v2/__tests__/setup.ts +93 -0
  56. package/src/v2/__tests__/utils/test-helpers.tsx +470 -0
  57. package/src/v2/a2ui/A2UIMessageRenderer.tsx +206 -0
  58. package/src/v2/components/CopilotKitInspector.tsx +50 -0
  59. package/src/v2/components/MCPAppsActivityRenderer.tsx +785 -0
  60. package/src/v2/components/WildcardToolCallRender.tsx +86 -0
  61. package/src/v2/components/__tests__/license-warning-banner.test.tsx +46 -0
  62. package/src/v2/components/chat/CopilotChat.tsx +431 -0
  63. package/src/v2/components/chat/CopilotChatAssistantMessage.tsx +375 -0
  64. package/src/v2/components/chat/CopilotChatAudioRecorder.tsx +350 -0
  65. package/src/v2/components/chat/CopilotChatInput.tsx +1302 -0
  66. package/src/v2/components/chat/CopilotChatMessageView.tsx +556 -0
  67. package/src/v2/components/chat/CopilotChatReasoningMessage.tsx +252 -0
  68. package/src/v2/components/chat/CopilotChatSuggestionPill.tsx +59 -0
  69. package/src/v2/components/chat/CopilotChatSuggestionView.tsx +133 -0
  70. package/src/v2/components/chat/CopilotChatToggleButton.tsx +171 -0
  71. package/src/v2/components/chat/CopilotChatToolCallsView.tsx +40 -0
  72. package/src/v2/components/chat/CopilotChatUserMessage.tsx +388 -0
  73. package/src/v2/components/chat/CopilotChatView.tsx +598 -0
  74. package/src/v2/components/chat/CopilotModalHeader.tsx +129 -0
  75. package/src/v2/components/chat/CopilotPopup.tsx +81 -0
  76. package/src/v2/components/chat/CopilotPopupView.tsx +317 -0
  77. package/src/v2/components/chat/CopilotSidebar.tsx +76 -0
  78. package/src/v2/components/chat/CopilotSidebarView.tsx +255 -0
  79. package/src/v2/components/chat/__tests__/CopilotChat.e2e.test.tsx +1113 -0
  80. package/src/v2/components/chat/__tests__/CopilotChat.onError.test.tsx +73 -0
  81. package/src/v2/components/chat/__tests__/CopilotChat.slots.e2e.test.tsx +432 -0
  82. package/src/v2/components/chat/__tests__/CopilotChatActivityRendering.e2e.test.tsx +150 -0
  83. package/src/v2/components/chat/__tests__/CopilotChatAssistantMessage.slots.e2e.test.tsx +624 -0
  84. package/src/v2/components/chat/__tests__/CopilotChatAssistantMessage.test.tsx +702 -0
  85. package/src/v2/components/chat/__tests__/CopilotChatCssClasses.test.tsx +107 -0
  86. package/src/v2/components/chat/__tests__/CopilotChatInput.slots.e2e.test.tsx +929 -0
  87. package/src/v2/components/chat/__tests__/CopilotChatInput.test.tsx +986 -0
  88. package/src/v2/components/chat/__tests__/CopilotChatMessageView.slots.e2e.test.tsx +1004 -0
  89. package/src/v2/components/chat/__tests__/CopilotChatMessageView.test.tsx +169 -0
  90. package/src/v2/components/chat/__tests__/CopilotChatSuggestionView.slots.e2e.test.tsx +530 -0
  91. package/src/v2/components/chat/__tests__/CopilotChatToolRendering.e2e.test.tsx +782 -0
  92. package/src/v2/components/chat/__tests__/CopilotChatToolRerenders.e2e.test.tsx +2413 -0
  93. package/src/v2/components/chat/__tests__/CopilotChatUserMessage.slots.e2e.test.tsx +621 -0
  94. package/src/v2/components/chat/__tests__/CopilotChatView.onClick.e2e.test.tsx +853 -0
  95. package/src/v2/components/chat/__tests__/CopilotChatView.slots.e2e.test.tsx +1050 -0
  96. package/src/v2/components/chat/__tests__/CopilotModalHeader.slots.e2e.test.tsx +484 -0
  97. package/src/v2/components/chat/__tests__/CopilotPopupView.slots.e2e.test.tsx +612 -0
  98. package/src/v2/components/chat/__tests__/CopilotSidebarView.slots.e2e.test.tsx +502 -0
  99. package/src/v2/components/chat/__tests__/MCPAppsActivityRenderer.e2e.test.tsx +1011 -0
  100. package/src/v2/components/chat/__tests__/setup.ts +1 -0
  101. package/src/v2/components/chat/index.ts +79 -0
  102. package/src/v2/components/index.ts +7 -0
  103. package/src/v2/components/license-warning-banner.tsx +198 -0
  104. package/src/v2/components/ui/button.tsx +123 -0
  105. package/src/v2/components/ui/dropdown-menu.tsx +258 -0
  106. package/src/v2/components/ui/tooltip.tsx +60 -0
  107. package/src/v2/hooks/__tests__/standard-schema-types.test.tsx +152 -0
  108. package/src/v2/hooks/__tests__/standard-schema.test.tsx +282 -0
  109. package/src/v2/hooks/__tests__/use-agent-context-timing.e2e.test.tsx +132 -0
  110. package/src/v2/hooks/__tests__/use-agent-context.test.tsx +401 -0
  111. package/src/v2/hooks/__tests__/use-agent-error-state.test.tsx +44 -0
  112. package/src/v2/hooks/__tests__/use-agent-stability.test.tsx +205 -0
  113. package/src/v2/hooks/__tests__/use-agent.e2e.test.tsx +148 -0
  114. package/src/v2/hooks/__tests__/use-component.test.tsx +123 -0
  115. package/src/v2/hooks/__tests__/use-configure-suggestions.e2e.test.tsx +696 -0
  116. package/src/v2/hooks/__tests__/use-default-render-tool.test.tsx +153 -0
  117. package/src/v2/hooks/__tests__/use-frontend-tool-available.test.tsx +167 -0
  118. package/src/v2/hooks/__tests__/use-frontend-tool.e2e.test.tsx +2129 -0
  119. package/src/v2/hooks/__tests__/use-human-in-the-loop.e2e.test.tsx +1261 -0
  120. package/src/v2/hooks/__tests__/use-interrupt.test.tsx +397 -0
  121. package/src/v2/hooks/__tests__/use-katex-styles.test.tsx +56 -0
  122. package/src/v2/hooks/__tests__/use-keyboard-height.test.tsx +192 -0
  123. package/src/v2/hooks/__tests__/use-render-tool.test.tsx +259 -0
  124. package/src/v2/hooks/__tests__/use-suggestions.e2e.test.tsx +524 -0
  125. package/src/v2/hooks/__tests__/use-threads.test.tsx +433 -0
  126. package/src/v2/hooks/__tests__/zod-regression.test.tsx +311 -0
  127. package/src/v2/hooks/index.ts +18 -0
  128. package/src/v2/hooks/use-agent-context.tsx +45 -0
  129. package/src/v2/hooks/use-agent.tsx +155 -0
  130. package/src/v2/hooks/use-component.tsx +89 -0
  131. package/src/v2/hooks/use-configure-suggestions.tsx +187 -0
  132. package/src/v2/hooks/use-default-render-tool.tsx +254 -0
  133. package/src/v2/hooks/use-frontend-tool.tsx +43 -0
  134. package/src/v2/hooks/use-human-in-the-loop.tsx +81 -0
  135. package/src/v2/hooks/use-interrupt.tsx +305 -0
  136. package/src/v2/hooks/use-keyboard-height.tsx +67 -0
  137. package/src/v2/hooks/use-render-activity-message.tsx +73 -0
  138. package/src/v2/hooks/use-render-custom-messages.tsx +93 -0
  139. package/src/v2/hooks/use-render-tool-call.tsx +175 -0
  140. package/src/v2/hooks/use-render-tool.tsx +181 -0
  141. package/src/v2/hooks/use-suggestions.tsx +91 -0
  142. package/src/v2/hooks/use-threads.tsx +256 -0
  143. package/src/v2/hooks/useKatexStyles.ts +27 -0
  144. package/src/v2/index.css +1 -1
  145. package/src/v2/index.ts +18 -2
  146. package/src/v2/lib/__tests__/completePartialMarkdown.test.ts +495 -0
  147. package/src/v2/lib/__tests__/renderSlot.test.tsx +588 -0
  148. package/src/v2/lib/react-core.ts +156 -0
  149. package/src/v2/lib/slots.tsx +143 -0
  150. package/src/v2/lib/transcription-client.ts +184 -0
  151. package/src/v2/lib/utils.ts +8 -0
  152. package/src/v2/providers/CopilotChatConfigurationProvider.tsx +162 -0
  153. package/src/v2/providers/CopilotKitProvider.tsx +600 -0
  154. package/src/v2/providers/__tests__/CopilotChatConfigurationProvider.test.tsx +546 -0
  155. package/src/v2/providers/__tests__/CopilotKitProvider.license.test.tsx +101 -0
  156. package/src/v2/providers/__tests__/CopilotKitProvider.onError.test.tsx +69 -0
  157. package/src/v2/providers/__tests__/CopilotKitProvider.renderCustomMessages.e2e.test.tsx +881 -0
  158. package/src/v2/providers/__tests__/CopilotKitProvider.stability.test.tsx +740 -0
  159. package/src/v2/providers/__tests__/CopilotKitProvider.test.tsx +642 -0
  160. package/src/v2/providers/__tests__/CopilotKitProvider.wildcard.test.tsx +294 -0
  161. package/src/v2/providers/index.ts +14 -0
  162. package/src/v2/styles/globals.css +230 -0
  163. package/src/v2/types/__tests__/defineToolCallRenderer.test.tsx +525 -0
  164. package/src/v2/types/defineToolCallRenderer.ts +65 -0
  165. package/src/v2/types/frontend-tool.ts +8 -0
  166. package/src/v2/types/human-in-the-loop.ts +33 -0
  167. package/src/v2/types/index.ts +7 -0
  168. package/src/v2/types/interrupt.ts +15 -0
  169. package/src/v2/types/react-activity-message-renderer.ts +27 -0
  170. package/src/v2/types/react-custom-message-renderer.ts +17 -0
  171. package/src/v2/types/react-tool-call-renderer.ts +32 -0
  172. package/tsdown.config.ts +34 -10
  173. package/vitest.config.mjs +4 -3
  174. package/LICENSE +0 -21
  175. package/dist/copilotkit-BRPQ2sqS.d.cts +0 -670
  176. package/dist/copilotkit-BRPQ2sqS.d.cts.map +0 -1
  177. package/dist/copilotkit-C94ayZbs.cjs +0 -2161
  178. package/dist/copilotkit-C94ayZbs.cjs.map +0 -1
  179. package/dist/copilotkit-CwZMFmSK.d.mts +0 -670
  180. package/dist/copilotkit-CwZMFmSK.d.mts.map +0 -1
  181. package/dist/copilotkit-Yh_Ld_FX.mjs +0 -2031
  182. package/dist/copilotkit-Yh_Ld_FX.mjs.map +0 -1
  183. package/dist/v2/index.css.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,18 +1,29 @@
1
1
  # ui
2
2
 
3
- ## 1.54.1
3
+ ## 1.55.0-next.8
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - 8113dba: fix: race condition in RunHandler.runAgent() causes dropped runs
8
- - Updated dependencies [13584d0]
9
- - Updated dependencies [8113dba]
10
- - Updated dependencies [9e6a09f]
11
- - Updated dependencies [d423001]
12
- - @copilotkitnext/react@1.54.1
13
- - @copilotkitnext/core@1.54.1
14
- - @copilotkit/runtime-client-gql@1.54.1
15
- - @copilotkit/shared@1.54.1
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
- - @copilotkitnext/react@1.53.1-next.2
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
- - @copilotkitnext/core@1.53.1-next.2
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
- - @copilotkitnext/core@1.53.1-next.1
198
- - @copilotkitnext/react@1.53.1-next.1
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
- - @copilotkitnext/react@1.53.1-next.0
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
- - @copilotkitnext/core@1.53.1-next.0
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
- - @copilotkitnext/core@1.53.0
222
- - @copilotkitnext/react@1.53.0
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
- - @copilotkitnext/core@1.53.0-next.6
232
- - @copilotkitnext/react@1.53.0-next.6
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
- - @copilotkitnext/core@1.53.0-next.5
241
- - @copilotkitnext/react@1.53.0-next.5
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
- - @copilotkitnext/core@1.52.2-next.4
252
- - @copilotkitnext/react@1.52.2-next.4
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
- - @copilotkitnext/core@1.52.2-next.3
262
- - @copilotkitnext/react@1.52.2-next.3
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
- - @copilotkitnext/core@1.52.2-next.2
272
- - @copilotkitnext/react@1.52.2-next.2
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
- - @copilotkitnext/core@1.52.2-next.1
282
- - @copilotkitnext/react@1.52.2-next.1
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
- - @copilotkitnext/core@1.52.2-next.0
292
- - @copilotkitnext/react@1.52.2-next.0
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
- - @copilotkitnext/react@1.52.1
314
+ - @copilotkit/react@1.52.1
304
315
  - @copilotkit/runtime-client-gql@1.52.1
305
316
  - @copilotkit/shared@1.52.1
306
- - @copilotkitnext/core@1.52.1
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
- - @copilotkitnext/core@1.52.1-next.1
318
- - @copilotkitnext/react@1.52.1-next.1
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
- - @copilotkitnext/react@1.52.1-next.0
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
- - @copilotkitnext/core@1.52.1-next.0
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
- - @copilotkitnext/react@1.52.0
355
- - @copilotkitnext/core@1.52.0
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
- - @copilotkitnext/react@1.52.0-next.8
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
- - @copilotkitnext/core@1.52.0-next.8
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
- - @copilotkitnext/react@1.52.0-next.7
376
- - @copilotkitnext/core@1.52.0-next.7
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
- - @copilotkitnext/react@1.52.0-next.6
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
- - @copilotkitnext/core@1.52.0-next.6
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
- - @copilotkitnext/core@1.52.0-next.5
409
- - @copilotkitnext/react@1.52.0-next.5
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
- - @copilotkitnext/core@1.51.5-next.4
418
- - @copilotkitnext/react@1.51.5-next.4
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
- - @copilotkitnext/react@1.51.5-next.3
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
- - @copilotkitnext/core@1.51.5-next.3
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
- - @copilotkitnext/core@1.51.5-next.2
437
- - @copilotkitnext/react@1.51.5-next.2
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
- - @copilotkitnext/core@1.51.5-next.1
447
- - @copilotkitnext/react@1.51.5-next.1
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
- - @copilotkitnext/react@1.51.5-next.0
457
- - @copilotkitnext/core@1.51.5-next.0
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
- - @copilotkitnext/core@1.51.4
472
- - @copilotkitnext/react@1.51.4
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
- - @copilotkitnext/core@1.51.4-next.8
484
- - @copilotkitnext/react@1.51.4-next.8
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
- - @copilotkitnext/core@1.51.4-next.7
494
- - @copilotkitnext/react@1.51.4-next.7
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
- - @copilotkitnext/core@1.51.4-next.6
503
- - @copilotkitnext/react@1.51.4-next.6
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
- - @copilotkitnext/core@1.51.4-next.5
512
- - @copilotkitnext/react@1.51.4-next.5
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
- - @copilotkitnext/core@1.51.4-next.4
521
- - @copilotkitnext/react@1.51.4-next.4
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
- - @copilotkitnext/react@1.51.4-next.3
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
- - @copilotkitnext/core@1.51.4-next.3
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
- - @copilotkitnext/core@1.51.4-next.2
543
- - @copilotkitnext/react@1.51.4-next.2
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
- - @copilotkitnext/core@1.51.4-next.1
553
- - @copilotkitnext/react@1.51.4-next.1
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
- - @copilotkitnext/core@1.51.4-next.0
562
- - @copilotkitnext/react@1.51.4-next.0
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
- - @copilotkitnext/react@1.51.3
577
- - @copilotkitnext/core@1.51.3
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
- - @copilotkitnext/react@1.51.3-next.8
588
- - @copilotkitnext/core@1.51.3-next.8
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
- - @copilotkitnext/core@1.51.3-next.7
598
- - @copilotkitnext/react@1.51.3-next.7
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
- - @copilotkitnext/core@1.51.3-next.6
607
- - @copilotkitnext/react@1.51.3-next.6
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
- - @copilotkitnext/core@1.51.3-next.5
617
- - @copilotkitnext/react@1.51.3-next.5
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
- - @copilotkitnext/core@1.51.3-next.4
626
- - @copilotkitnext/react@1.51.3-next.4
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
- - @copilotkitnext/core@1.51.3-next.3
637
- - @copilotkitnext/react@1.51.3-next.3
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
- - @copilotkitnext/core@1.51.3-next.2
646
- - @copilotkitnext/react@1.51.3-next.2
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
- - @copilotkitnext/core@1.51.3-next.1
655
- - @copilotkitnext/react@1.51.3-next.1
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
- - @copilotkitnext/core@1.51.3-next.0
664
- - @copilotkitnext/react@1.51.3-next.0
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
- - @copilotkitnext/react@1.51.2
676
- - @copilotkitnext/core@1.51.2
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
- - @copilotkitnext/react@1.51.2-next.1
689
- - @copilotkitnext/core@1.51.2-next.1
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
- - @copilotkitnext/core@1.51.2-next.0
699
- - @copilotkitnext/react@1.51.2-next.0
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
- - @copilotkitnext/react@1.51.1
718
+ - @copilotkit/react@1.51.1
708
719
  - @copilotkit/runtime-client-gql@1.51.1
709
720
  - @copilotkit/shared@1.51.1
710
- - @copilotkitnext/core@1.51.1
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
- - @copilotkitnext/react@1.51.0
722
- - @copilotkitnext/core@1.51.0
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
- - @copilotkitnext/core@1.51.0-next.4
731
- - @copilotkitnext/react@1.51.0-next.4
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
- - @copilotkitnext/core@1.51.0-next.3
740
- - @copilotkitnext/react@1.51.0-next.3
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
- - @copilotkitnext/core@1.51.0-next.2
750
- - @copilotkitnext/react@1.51.0-next.2
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
- - @copilotkitnext/core@1.51.0-next.1
759
- - @copilotkitnext/react@1.51.0-next.1
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