@copilotkit/web-inspector 1.55.0-next.9 → 1.55.1-next.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 +17 -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/dist/index.umd.js
CHANGED
|
@@ -1879,7 +1879,11 @@ ${prettyEvent}</pre
|
|
|
1879
1879
|
this.copyToClipboard(prettyEvent, event.id);
|
|
1880
1880
|
}}
|
|
1881
1881
|
>
|
|
1882
|
-
${this.copiedEvents.has(event.id) ? lit.html
|
|
1882
|
+
${this.copiedEvents.has(event.id) ? lit.html`
|
|
1883
|
+
<span>✓ Copied</span>
|
|
1884
|
+
` : lit.html`
|
|
1885
|
+
<span>Copy</span>
|
|
1886
|
+
`}
|
|
1883
1887
|
</button>
|
|
1884
1888
|
</div>
|
|
1885
1889
|
` : inlineEvent}
|
|
@@ -2363,13 +2367,17 @@ ${prettyEvent}</pre
|
|
|
2363
2367
|
>${prop.name}</span
|
|
2364
2368
|
>
|
|
2365
2369
|
<div class="flex items-center gap-1.5 shrink-0">
|
|
2366
|
-
${prop.required ? lit.html
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2370
|
+
${prop.required ? lit.html`
|
|
2371
|
+
<span
|
|
2372
|
+
class="text-[9px] rounded border border-rose-200 bg-rose-50 px-1 py-0.5 font-medium text-rose-700"
|
|
2373
|
+
>required</span
|
|
2374
|
+
>
|
|
2375
|
+
` : lit.html`
|
|
2376
|
+
<span
|
|
2377
|
+
class="text-[9px] rounded border border-gray-200 bg-gray-50 px-1 py-0.5 font-medium text-gray-600"
|
|
2378
|
+
>optional</span
|
|
2379
|
+
>
|
|
2380
|
+
`}
|
|
2373
2381
|
${prop.type ? lit.html`<span
|
|
2374
2382
|
class="text-[9px] rounded border border-gray-200 bg-gray-50 px-1 py-0.5 font-mono text-gray-600"
|
|
2375
2383
|
>${prop.type}</span
|
|
@@ -2409,12 +2417,10 @@ ${prettyEvent}</pre
|
|
|
2409
2417
|
`)}
|
|
2410
2418
|
</div>
|
|
2411
2419
|
` : lit.html`
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
</div>
|
|
2417
|
-
`}
|
|
2420
|
+
<div class="flex items-center justify-center py-4 text-xs text-gray-500">
|
|
2421
|
+
<span>No parameters defined</span>
|
|
2422
|
+
</div>
|
|
2423
|
+
`}
|
|
2418
2424
|
</div>
|
|
2419
2425
|
` : lit.nothing}
|
|
2420
2426
|
</div>
|
|
@@ -2604,12 +2610,10 @@ ${prettyEvent}</pre
|
|
|
2604
2610
|
><code>${this.formatContextValue(context.value)}</code></pre>
|
|
2605
2611
|
</div>
|
|
2606
2612
|
` : lit.html`
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
</div>
|
|
2612
|
-
`}
|
|
2613
|
+
<div class="flex items-center justify-center py-4 text-xs text-gray-500">
|
|
2614
|
+
<span>No value available</span>
|
|
2615
|
+
</div>
|
|
2616
|
+
`}
|
|
2613
2617
|
</div>
|
|
2614
2618
|
` : lit.nothing}
|
|
2615
2619
|
</div>
|