@kite-copilot/chat-panel 0.2.40 → 0.2.42
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/dist/auto.cjs +1 -1
- package/dist/auto.js +1 -1
- package/dist/{chunk-XMA5S556.js → chunk-XP6Y7EP7.js} +1 -1
- package/dist/embed.global.js +27 -33
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -2
package/dist/index.cjs
CHANGED
|
@@ -1021,7 +1021,7 @@ function TypingIndicator({ className = "" }) {
|
|
|
1021
1021
|
|
|
1022
1022
|
// src/ChatPanel.tsx
|
|
1023
1023
|
var import_jsx_runtime10 = require("react/jsx-runtime");
|
|
1024
|
-
var CHAT_PANEL_VERSION = true ? "0.2.
|
|
1024
|
+
var CHAT_PANEL_VERSION = true ? "0.2.42" : "dev";
|
|
1025
1025
|
var DEFAULT_AGENT_URL = "http://localhost:5002";
|
|
1026
1026
|
var PANEL_WIDTH = 340;
|
|
1027
1027
|
function unescapeJsonString(str) {
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kite-copilot/chat-panel",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.42",
|
|
4
4
|
"description": "AI-powered chat panel SDK with programmatic lifecycle control",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -45,7 +45,8 @@
|
|
|
45
45
|
"dev": "tsup --watch",
|
|
46
46
|
"clean": "rm -rf dist",
|
|
47
47
|
"typecheck": "tsc --noEmit",
|
|
48
|
-
"prepublishOnly": "npm run build"
|
|
48
|
+
"prepublishOnly": "npm run build",
|
|
49
|
+
"release": "./scripts/publish.sh"
|
|
49
50
|
},
|
|
50
51
|
"peerDependencies": {
|
|
51
52
|
"react": ">=18.0.0",
|