@codexview/react 0.2.2 → 0.2.3

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.
Files changed (2) hide show
  1. package/dist/styles.css +18 -4
  2. package/package.json +1 -1
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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codexview/react",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },