@copilotkit/react-core 1.54.1-next.6 → 1.55.0-next.7

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