@copilotkit/react-ui 1.55.1-next.0 → 1.55.2-canary.test-01
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 +35 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +7 -13
- package/dist/index.css.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +5 -5
- package/src/components/chat/Chat.tsx +1 -1
- package/src/components/chat/ChatContext.tsx +23 -27
- package/src/context/index.ts +0 -1
- package/src/css/sidebar.css +0 -13
- package/src/css/window.css +7 -0
- package/src/hooks/use-copy-to-clipboard.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
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
|
+
|
|
22
|
+
## 1.55.2-next.0
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- @copilotkit/react-core@1.55.2-next.0
|
|
27
|
+
- @copilotkit/runtime-client-gql@1.55.2-next.0
|
|
28
|
+
- @copilotkit/shared@1.55.2-next.0
|
|
29
|
+
|
|
30
|
+
## 1.55.1
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- @copilotkit/react-core@1.55.1
|
|
35
|
+
- @copilotkit/runtime-client-gql@1.55.1
|
|
36
|
+
- @copilotkit/shared@1.55.1
|
|
37
|
+
|
|
3
38
|
## 1.55.1-next.0
|
|
4
39
|
|
|
5
40
|
### 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,
|