@webless/agent 0.8.0 → 0.9.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/embed.css CHANGED
@@ -344,6 +344,9 @@ html.webless-agent-page-shift {
344
344
  font-size: 12px;
345
345
  line-height: 1.5;
346
346
  }
347
+ .agent-transcript__message--visitor .agent-transcript__meta {
348
+ justify-content: flex-end;
349
+ }
347
350
  .agent-transcript__meta time {
348
351
  font-variant-numeric: tabular-nums;
349
352
  }
@@ -362,6 +365,45 @@ html.webless-agent-page-shift {
362
365
  max-width: 100%;
363
366
  overflow-x: auto;
364
367
  }
368
+ .agent-transcript__activity {
369
+ min-width: 0;
370
+ color: var(--as-text-muted);
371
+ font-size: 12px;
372
+ line-height: 1.5;
373
+ border-left: 2px solid var(--as-border);
374
+ padding-left: 12px;
375
+ }
376
+ .agent-transcript__activity-heading {
377
+ display: flex;
378
+ align-items: baseline;
379
+ flex-wrap: wrap;
380
+ gap: 4px 12px;
381
+ overflow-wrap: anywhere;
382
+ }
383
+ summary.agent-transcript__activity-heading {
384
+ cursor: pointer;
385
+ }
386
+ summary.agent-transcript__activity-heading::before {
387
+ content: "\203a";
388
+ }
389
+ .agent-transcript__activity details[open] > summary::before {
390
+ content: "\2304";
391
+ }
392
+ .agent-transcript__activity-heading time {
393
+ margin-left: auto;
394
+ font-variant-numeric: tabular-nums;
395
+ }
396
+ .agent-transcript__activity-status {
397
+ font-weight: 500;
398
+ }
399
+ .agent-transcript__activity[data-status=failed],
400
+ .agent-transcript__activity[data-status=rejected] {
401
+ border-color: var(--as-error, #b91c1c);
402
+ }
403
+ .agent-transcript__activity-result {
404
+ margin-top: 12px;
405
+ color: var(--as-text);
406
+ }
365
407
 
366
408
  /* src/react/styles/all.css */
367
409