@copilotkit/react-ui 0.10.0 → 0.11.0
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/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +18 -0
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @copilotkit/react-ui@0.
|
|
2
|
+
> @copilotkit/react-ui@0.11.0 build /home/runner/work/CopilotKit/CopilotKit/CopilotKit/packages/react-ui
|
|
3
3
|
> tsup --treeshake
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.tsx, src/components/index.ts, src/context/index.ts, src/hooks/index.ts, src/hooks/use-at-bottom.tsx, src/hooks/use-copy-to-clipboard.tsx, src/hooks/use-enter-submit.tsx, src/lib/utils.test.ts, src/lib/utils.ts, src/types/index.ts, src/types/types.ts, src/components/chat-components/chat-list.tsx, src/components/chat-components/chat-message-actions.tsx, src/components/chat-components/chat-message.tsx, src/components/chat-components/chat-panel.tsx, src/components/chat-components/chat-scroll-anchor.tsx, src/components/chat-components/clear-history.tsx, src/components/chat-components/copilot-chat.tsx, src/components/chat-components/default-empty-screen.tsx, src/components/chat-components/external-link.tsx, src/components/chat-components/markdown.tsx, src/components/chat-components/prompt-form.tsx, src/components/chat-components/theme-toggle.tsx, src/components/chat-components/toaster.tsx, src/components/sidebar/copilot-sidebar-ui-provider.tsx, src/components/sidebar/copilot-sidebar.tsx, src/components/sidebar/sidebar-context.tsx, src/components/chat-components/ui/alert-dialog.tsx, src/components/chat-components/ui/badge.tsx, src/components/chat-components/ui/button.tsx, src/components/chat-components/ui/codeblock.tsx, src/components/chat-components/ui/dialog.tsx, src/components/chat-components/ui/dropdown-menu.tsx, src/components/chat-components/ui/icons.tsx, src/components/chat-components/ui/input.tsx, src/components/chat-components/ui/label.tsx, src/components/chat-components/ui/select.tsx, src/components/chat-components/ui/separator.tsx, src/components/chat-components/ui/sheet.tsx, src/components/chat-components/ui/switch.tsx, src/components/chat-components/ui/textarea.tsx, src/components/chat-components/ui/tooltip.tsx
|
|
@@ -160,8 +160,8 @@ Generated an empty chunk: "chunk-H4VKQGVU".
|
|
|
160
160
|
[32mESM[39m [1mdist/components/chat-components/chat-message.mjs.map [22m[32m51.00 B[39m
|
|
161
161
|
[32mESM[39m [1mdist/components/chat-components/chat-panel.mjs.map [22m[32m51.00 B[39m
|
|
162
162
|
[32mESM[39m [1mdist/components/chat-components/chat-scroll-anchor.mjs.map [22m[32m51.00 B[39m
|
|
163
|
-
[32mESM[39m ⚡️ Build success in
|
|
164
|
-
[32mDTS[39m ⚡️ Build success in
|
|
163
|
+
[32mESM[39m ⚡️ Build success in 2243ms
|
|
164
|
+
[32mDTS[39m ⚡️ Build success in 5898ms
|
|
165
165
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m587.00 B[39m
|
|
166
166
|
[32mDTS[39m [1mdist/components/chat-components/copilot-chat.d.ts [22m[32m496.00 B[39m
|
|
167
167
|
[32mDTS[39m [1mdist/components/chat-components/ui/tooltip.d.ts [22m[32m640.00 B[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# ui
|
|
2
2
|
|
|
3
|
+
## 0.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- contextCategories no longer optional for reading context
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @copilotkit/react-core@0.13.0
|
|
13
|
+
|
|
14
|
+
## 0.10.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @copilotkit/react-core@0.12.0
|
|
20
|
+
|
|
3
21
|
## 0.10.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.
|
|
7
|
+
"version": "0.11.0",
|
|
8
8
|
"sideEffects": [
|
|
9
9
|
"**/*.css"
|
|
10
10
|
],
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"ts-jest": "^29.1.1",
|
|
32
32
|
"tsup": "^6.1.3",
|
|
33
33
|
"typescript": "^4.9.4",
|
|
34
|
-
"eslint-config-custom": "0.2.0",
|
|
35
34
|
"tailwind-config": "0.1.0",
|
|
35
|
+
"eslint-config-custom": "0.2.0",
|
|
36
36
|
"tsconfig": "0.5.0"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"remark-gfm": "^3.0.1",
|
|
61
61
|
"remark-math": "^5.1.1",
|
|
62
62
|
"tailwind-merge": "^1.13.2",
|
|
63
|
-
"@copilotkit/react-core": "0.
|
|
63
|
+
"@copilotkit/react-core": "0.13.0"
|
|
64
64
|
},
|
|
65
65
|
"scripts": {
|
|
66
66
|
"build": "tsup --treeshake",
|