@copilotkit/react-ui 1.55.2-next.0 → 1.55.2

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 CHANGED
@@ -1,5 +1,24 @@
1
1
  # ui
2
2
 
3
+ ## 1.55.2
4
+
5
+ ### Patch Changes
6
+
7
+ - a04f86e: Fix chat window layout regressions introduced in 1.55: input is now pinned to the bottom of the window again, and mounting CopilotSidebar no longer adds empty space below the page content.
8
+ - Updated dependencies [22a7f98]
9
+ - @copilotkit/react-core@1.55.2
10
+ - @copilotkit/runtime-client-gql@1.55.2
11
+ - @copilotkit/shared@1.55.2
12
+
13
+ ## 1.55.2-next.1
14
+
15
+ ### Patch Changes
16
+
17
+ - Updated dependencies [22a7f98]
18
+ - @copilotkit/react-core@1.55.2-next.1
19
+ - @copilotkit/runtime-client-gql@1.55.2-next.1
20
+ - @copilotkit/shared@1.55.2-next.1
21
+
3
22
  ## 1.55.2-next.0
4
23
 
5
24
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -2567,7 +2567,7 @@ function CopilotChat({ instructions, suggestions = "auto", onSubmitMessage, make
2567
2567
  onDragOver: handleDragOver,
2568
2568
  onDragLeave: handleDragLeave,
2569
2569
  onDrop: handleDrop,
2570
- className: dragOver ? "copilotKitDragOver" : "",
2570
+ className: `copilotKitChatBody${dragOver ? " copilotKitDragOver" : ""}`,
2571
2571
  children: [
2572
2572
  chatError && renderError && renderError({
2573
2573
  ...chatError,