@copilotkit/web-inspector 1.55.0-next.9 → 1.55.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 +11 -2
- package/dist/index.cjs +24 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +24 -20
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +24 -20
- package/dist/index.umd.js.map +1 -1
- package/package.json +8 -11
- package/src/__tests__/web-inspector.spec.ts +19 -1
- package/src/index.ts +201 -140
- package/eslint.config.mjs +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
# @copilotkit/web-inspector
|
|
2
2
|
|
|
3
|
-
## 1.55.0
|
|
3
|
+
## 1.55.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1ceb963: refactor: consolidate V1/V2 packages into flat @copilotkit/\* structure
|
|
4
8
|
|
|
5
9
|
### Patch Changes
|
|
6
10
|
|
|
7
|
-
-
|
|
11
|
+
- 52a9322: Fixing license warnings, barrel export and typing
|
|
12
|
+
- Updated dependencies [1ceb963]
|
|
13
|
+
- Updated dependencies [b4a8b7a]
|
|
14
|
+
- Updated dependencies [1ceb963]
|
|
15
|
+
- Updated dependencies [1ceb963]
|
|
16
|
+
- @copilotkit/core@1.55.0
|
|
8
17
|
|
|
9
18
|
## 1.55.0-next.8
|
|
10
19
|
|
package/dist/index.cjs
CHANGED
|
@@ -1935,7 +1935,11 @@ ${prettyEvent}</pre
|
|
|
1935
1935
|
this.copyToClipboard(prettyEvent, event.id);
|
|
1936
1936
|
}}
|
|
1937
1937
|
>
|
|
1938
|
-
${this.copiedEvents.has(event.id) ? lit.html
|
|
1938
|
+
${this.copiedEvents.has(event.id) ? lit.html`
|
|
1939
|
+
<span>✓ Copied</span>
|
|
1940
|
+
` : lit.html`
|
|
1941
|
+
<span>Copy</span>
|
|
1942
|
+
`}
|
|
1939
1943
|
</button>
|
|
1940
1944
|
</div>
|
|
1941
1945
|
` : inlineEvent}
|
|
@@ -2408,13 +2412,17 @@ ${prettyEvent}</pre
|
|
|
2408
2412
|
>${prop.name}</span
|
|
2409
2413
|
>
|
|
2410
2414
|
<div class="flex items-center gap-1.5 shrink-0">
|
|
2411
|
-
${prop.required ? lit.html
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2415
|
+
${prop.required ? lit.html`
|
|
2416
|
+
<span
|
|
2417
|
+
class="text-[9px] rounded border border-rose-200 bg-rose-50 px-1 py-0.5 font-medium text-rose-700"
|
|
2418
|
+
>required</span
|
|
2419
|
+
>
|
|
2420
|
+
` : lit.html`
|
|
2421
|
+
<span
|
|
2422
|
+
class="text-[9px] rounded border border-gray-200 bg-gray-50 px-1 py-0.5 font-medium text-gray-600"
|
|
2423
|
+
>optional</span
|
|
2424
|
+
>
|
|
2425
|
+
`}
|
|
2418
2426
|
${prop.type ? lit.html`<span
|
|
2419
2427
|
class="text-[9px] rounded border border-gray-200 bg-gray-50 px-1 py-0.5 font-mono text-gray-600"
|
|
2420
2428
|
>${prop.type}</span
|
|
@@ -2454,12 +2462,10 @@ ${prettyEvent}</pre
|
|
|
2454
2462
|
`)}
|
|
2455
2463
|
</div>
|
|
2456
2464
|
` : lit.html`
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
</div>
|
|
2462
|
-
`}
|
|
2465
|
+
<div class="flex items-center justify-center py-4 text-xs text-gray-500">
|
|
2466
|
+
<span>No parameters defined</span>
|
|
2467
|
+
</div>
|
|
2468
|
+
`}
|
|
2463
2469
|
</div>
|
|
2464
2470
|
` : lit.nothing}
|
|
2465
2471
|
</div>
|
|
@@ -2647,12 +2653,10 @@ ${prettyEvent}</pre
|
|
|
2647
2653
|
><code>${this.formatContextValue(context.value)}</code></pre>
|
|
2648
2654
|
</div>
|
|
2649
2655
|
` : lit.html`
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
</div>
|
|
2655
|
-
`}
|
|
2656
|
+
<div class="flex items-center justify-center py-4 text-xs text-gray-500">
|
|
2657
|
+
<span>No value available</span>
|
|
2658
|
+
</div>
|
|
2659
|
+
`}
|
|
2656
2660
|
</div>
|
|
2657
2661
|
` : lit.nothing}
|
|
2658
2662
|
</div>
|