@copilotkit/web-inspector 1.55.1 → 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 +18 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.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 +3 -3
- package/src/index.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @copilotkit/web-inspector
|
|
2
2
|
|
|
3
|
+
## 1.55.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @copilotkit/core@1.55.2
|
|
8
|
+
|
|
9
|
+
## 1.55.2-next.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- @copilotkit/core@1.55.2-next.1
|
|
14
|
+
|
|
15
|
+
## 1.55.2-next.0
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- @copilotkit/core@1.55.2-next.0
|
|
20
|
+
|
|
3
21
|
## 1.55.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
|
@@ -2837,7 +2837,7 @@ ${this.announcementMarkdown}</pre
|
|
|
2837
2837
|
}
|
|
2838
2838
|
}
|
|
2839
2839
|
escapeHtmlAttr(value) {
|
|
2840
|
-
return value.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(
|
|
2840
|
+
return value.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """).replace(/'/g, "'");
|
|
2841
2841
|
}
|
|
2842
2842
|
loadStoredAnnouncementTimestamp() {
|
|
2843
2843
|
if (typeof window === "undefined" || !window.localStorage) return null;
|