@copilotkit/react-textarea 1.0.9 → 1.0.10-fix-append-message-pr-494.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/CHANGELOG.md +10 -0
- package/dist/index.mjs +1 -1
- package/package.json +7 -5
- package/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# ui
|
|
2
2
|
|
|
3
|
+
## 1.0.10-fix-append-message-pr-494.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Attempt to fix .appendMessage (contributed by @ranst91)
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @copilotkit/react-core@1.0.10-fix-append-message-pr-494.0
|
|
10
|
+
- @copilotkit/runtime-client-gql@1.0.10-fix-append-message-pr-494.0
|
|
11
|
+
- @copilotkit/shared@1.0.10-fix-append-message-pr-494.0
|
|
12
|
+
|
|
3
13
|
## 1.0.9
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/index.mjs
CHANGED
|
@@ -48,8 +48,8 @@ import {
|
|
|
48
48
|
} from "./chunk-4CVSOOJY.mjs";
|
|
49
49
|
import "./chunk-224UKA7C.mjs";
|
|
50
50
|
import "./chunk-XW3ICO4S.mjs";
|
|
51
|
-
import "./chunk-H4VKQGVU.mjs";
|
|
52
51
|
import "./chunk-IU3WTXLQ.mjs";
|
|
52
|
+
import "./chunk-H4VKQGVU.mjs";
|
|
53
53
|
import "./chunk-DFTV4TST.mjs";
|
|
54
54
|
import "./chunk-T6MTDQZ7.mjs";
|
|
55
55
|
import "./chunk-ECR45NSD.mjs";
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
|
-
"version": "1.0.
|
|
12
|
+
"version": "1.0.10-fix-append-message-pr-494.0",
|
|
13
13
|
"sideEffects": [
|
|
14
14
|
"**/*.css"
|
|
15
15
|
],
|
|
@@ -67,9 +67,9 @@
|
|
|
67
67
|
"slate-history": "^0.93.0",
|
|
68
68
|
"slate-react": "^0.98.1",
|
|
69
69
|
"tailwind-merge": "^1.13.2",
|
|
70
|
-
"@copilotkit/react-core": "1.0.
|
|
71
|
-
"@copilotkit/runtime-client-gql": "1.0.
|
|
72
|
-
"@copilotkit/shared": "1.0.
|
|
70
|
+
"@copilotkit/react-core": "1.0.10-fix-append-message-pr-494.0",
|
|
71
|
+
"@copilotkit/runtime-client-gql": "1.0.10-fix-append-message-pr-494.0",
|
|
72
|
+
"@copilotkit/shared": "1.0.10-fix-append-message-pr-494.0"
|
|
73
73
|
},
|
|
74
74
|
"keywords": [
|
|
75
75
|
"copilotkit",
|
|
@@ -88,6 +88,8 @@
|
|
|
88
88
|
"dev": "tsup --watch --no-splitting",
|
|
89
89
|
"test": "jest",
|
|
90
90
|
"check-types": "tsc --noEmit",
|
|
91
|
-
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf .next"
|
|
91
|
+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf .next",
|
|
92
|
+
"link:global": "pnpm link --global",
|
|
93
|
+
"unlink:global": "pnpm unlink --global"
|
|
92
94
|
}
|
|
93
95
|
}
|
package/tsconfig.json
CHANGED