@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 CHANGED
@@ -1,10 +1,25 @@
1
1
  # @copilotkit/web-inspector
2
2
 
3
- ## 1.55.0-next.9
3
+ ## 1.55.1-next.0
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - @copilotkit/core@1.55.0-next.9
7
+ - @copilotkit/core@1.55.1-next.0
8
+
9
+ ## 1.55.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 1ceb963: refactor: consolidate V1/V2 packages into flat @copilotkit/\* structure
14
+
15
+ ### Patch Changes
16
+
17
+ - 52a9322: Fixing license warnings, barrel export and typing
18
+ - Updated dependencies [1ceb963]
19
+ - Updated dependencies [b4a8b7a]
20
+ - Updated dependencies [1ceb963]
21
+ - Updated dependencies [1ceb963]
22
+ - @copilotkit/core@1.55.0
8
23
 
9
24
  ## 1.55.0-next.8
10
25
 
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`<span>✓ Copied</span>` : lit.html`<span>Copy</span>`}
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`<span
2412
- class="text-[9px] rounded border border-rose-200 bg-rose-50 px-1 py-0.5 font-medium text-rose-700"
2413
- >required</span
2414
- >` : lit.html`<span
2415
- class="text-[9px] rounded border border-gray-200 bg-gray-50 px-1 py-0.5 font-medium text-gray-600"
2416
- >optional</span
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
- <div
2458
- class="flex items-center justify-center py-4 text-xs text-gray-500"
2459
- >
2460
- <span>No parameters defined</span>
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
- <div
2651
- class="flex items-center justify-center py-4 text-xs text-gray-500"
2652
- >
2653
- <span>No value available</span>
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>