@codexview/react 0.2.2 → 0.3.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/dist/styles.css CHANGED
@@ -252,8 +252,15 @@ a.cv-Markdown-module_directive_oMfF9:hover {
252
252
  transition: transform 120ms ease;
253
253
  }
254
254
  .cv-ToolCallBlock-module_block_dNRp9[open] > .cv-ToolCallBlock-module_header_--wWa::before { transform: rotate(90deg); }
255
- .cv-ToolCallBlock-module_title_F75hj { font-weight: 600; }
256
- .cv-ToolCallBlock-module_statusChip_srL2P { margin-left: auto; font-size: 0.75rem; color: var(--cv-text-muted); }
255
+ .cv-ToolCallBlock-module_title_F75hj {
256
+ font-weight: 600;
257
+ min-width: 0;
258
+ overflow: hidden;
259
+ text-overflow: ellipsis;
260
+ white-space: nowrap;
261
+ }
262
+ .cv-ToolCallBlock-module_block_dNRp9[open] .cv-ToolCallBlock-module_title_F75hj { white-space: normal; overflow: visible; }
263
+ .cv-ToolCallBlock-module_statusChip_srL2P { margin-left: auto; font-size: 0.75rem; color: var(--cv-text-muted); flex-shrink: 0; }
257
264
  .cv-ToolCallBlock-module_label_T8ftn { font-size: 0.75rem; color: var(--cv-text-muted); }
258
265
  .cv-ToolCallBlock-module_body_4IH9O {
259
266
  display: flex;
@@ -303,8 +310,15 @@ a.cv-Markdown-module_directive_oMfF9:hover {
303
310
  }
304
311
  .cv-ExecBlock-module_block_GHBDd[open] > .cv-ExecBlock-module_header_-s9DN::before { transform: rotate(90deg); }
305
312
  .cv-ExecBlock-module_body_cKLAV { display: flex; flex-direction: column; gap: var(--cv-spacing-xs); margin-top: var(--cv-spacing-xs); }
306
- .cv-ExecBlock-module_cmd_KpfNN { white-space: pre-wrap; word-break: break-word; flex: 1; }
307
- .cv-ExecBlock-module_exit_H-E6L { font-size: 0.75rem; opacity: 0.7; }
313
+ .cv-ExecBlock-module_cmd_KpfNN {
314
+ flex: 1;
315
+ min-width: 0;
316
+ white-space: nowrap;
317
+ overflow: hidden;
318
+ text-overflow: ellipsis;
319
+ }
320
+ .cv-ExecBlock-module_block_GHBDd[open] .cv-ExecBlock-module_cmd_KpfNN { white-space: pre-wrap; word-break: break-word; overflow: visible; }
321
+ .cv-ExecBlock-module_exit_H-E6L { font-size: 0.75rem; opacity: 0.7; flex-shrink: 0; }
308
322
  .cv-ExecBlock-module_stdout_IHwS1 { white-space: pre-wrap; word-break: break-word; }
309
323
  .cv-ExecBlock-module_stderr_-DESS { white-space: pre-wrap; word-break: break-word; color: var(--cv-status-failed); }
310
324
  .cv-ExecBlock-module_shimmer_e98BB {
@@ -479,6 +493,37 @@ a.cv-Markdown-module_directive_oMfF9:hover {
479
493
  .cv-StatusBar-module_errorDetails_MEtRk { margin-left: auto; max-width: 50%; }
480
494
  .cv-StatusBar-module_errorDetails_MEtRk summary { cursor: pointer; }
481
495
  .cv-StatusBar-module_errorDetails_MEtRk pre { font-size: 0.75rem; overflow-x: auto; }
496
+ .cv-ToolGroup-module_group_WufLG {
497
+ display: flex;
498
+ flex-direction: column;
499
+ }
500
+ .cv-ToolGroup-module_header_ycctp {
501
+ display: flex;
502
+ align-items: center;
503
+ gap: var(--cv-spacing-xs);
504
+ cursor: pointer;
505
+ color: var(--cv-text-muted);
506
+ list-style: none;
507
+ font-size: 0.9rem;
508
+ }
509
+ .cv-ToolGroup-module_header_ycctp::-webkit-details-marker { display: none; }
510
+ .cv-ToolGroup-module_header_ycctp::before {
511
+ content: '›';
512
+ display: inline-block;
513
+ width: 12px;
514
+ color: var(--cv-text-muted);
515
+ transform: rotate(0deg);
516
+ transition: transform 120ms ease;
517
+ }
518
+ .cv-ToolGroup-module_group_WufLG[open] > .cv-ToolGroup-module_header_ycctp::before { transform: rotate(90deg); }
519
+ .cv-ToolGroup-module_title_qIalM { font-weight: 500; }
520
+ .cv-ToolGroup-module_body_G35LW {
521
+ display: flex;
522
+ flex-direction: column;
523
+ gap: var(--cv-spacing-xs);
524
+ margin-top: var(--cv-spacing-xs);
525
+ padding-left: var(--cv-spacing-md);
526
+ }
482
527
  .cv-reset-module_root_dBpwH {
483
528
  all: initial;
484
529
  display: block;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codexview/react",
3
- "version": "0.2.2",
3
+ "version": "0.3.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },