@webless/agent 0.7.5 → 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/react.css CHANGED
@@ -3039,4 +3039,102 @@ html.webless-agent-page-shift {
3039
3039
  transition: none;
3040
3040
  }
3041
3041
  }
3042
+
3043
+ /* src/react/components/AgentTranscript/AgentTranscript.css */
3044
+ .webless-agent-root.agent-transcript {
3045
+ position: static;
3046
+ inset: auto;
3047
+ pointer-events: auto;
3048
+ z-index: auto;
3049
+ display: flex;
3050
+ flex-direction: column;
3051
+ gap: 24px;
3052
+ width: 100%;
3053
+ min-width: 0;
3054
+ margin: 0;
3055
+ padding: 0;
3056
+ list-style: none;
3057
+ color: var(--as-text);
3058
+ font-family: var(--as-font-body);
3059
+ }
3060
+ .agent-transcript__message {
3061
+ display: flex;
3062
+ flex-direction: column;
3063
+ gap: 6px;
3064
+ min-width: 0;
3065
+ max-width: 100%;
3066
+ }
3067
+ .agent-transcript__message--visitor {
3068
+ align-self: flex-end;
3069
+ width: 88%;
3070
+ }
3071
+ .agent-transcript__meta {
3072
+ display: flex;
3073
+ flex-wrap: wrap;
3074
+ justify-content: space-between;
3075
+ gap: 4px 12px;
3076
+ color: var(--as-text-muted);
3077
+ font-size: 12px;
3078
+ line-height: 1.5;
3079
+ }
3080
+ .agent-transcript__message--visitor .agent-transcript__meta {
3081
+ justify-content: flex-end;
3082
+ }
3083
+ .agent-transcript__meta time {
3084
+ font-variant-numeric: tabular-nums;
3085
+ }
3086
+ .agent-transcript .message-bubble {
3087
+ max-width: 100%;
3088
+ }
3089
+ .agent-transcript .message-bubble--visitor {
3090
+ align-self: stretch;
3091
+ }
3092
+ .agent-transcript .message-bubble__markdown {
3093
+ overflow-wrap: anywhere;
3094
+ }
3095
+ .agent-transcript .message-bubble__markdown pre,
3096
+ .agent-transcript .message-bubble__markdown table {
3097
+ display: block;
3098
+ max-width: 100%;
3099
+ overflow-x: auto;
3100
+ }
3101
+ .agent-transcript__activity {
3102
+ min-width: 0;
3103
+ color: var(--as-text-muted);
3104
+ font-size: 12px;
3105
+ line-height: 1.5;
3106
+ border-left: 2px solid var(--as-border);
3107
+ padding-left: 12px;
3108
+ }
3109
+ .agent-transcript__activity-heading {
3110
+ display: flex;
3111
+ align-items: baseline;
3112
+ flex-wrap: wrap;
3113
+ gap: 4px 12px;
3114
+ overflow-wrap: anywhere;
3115
+ }
3116
+ summary.agent-transcript__activity-heading {
3117
+ cursor: pointer;
3118
+ }
3119
+ summary.agent-transcript__activity-heading::before {
3120
+ content: "\203a";
3121
+ }
3122
+ .agent-transcript__activity details[open] > summary::before {
3123
+ content: "\2304";
3124
+ }
3125
+ .agent-transcript__activity-heading time {
3126
+ margin-left: auto;
3127
+ font-variant-numeric: tabular-nums;
3128
+ }
3129
+ .agent-transcript__activity-status {
3130
+ font-weight: 500;
3131
+ }
3132
+ .agent-transcript__activity[data-status=failed],
3133
+ .agent-transcript__activity[data-status=rejected] {
3134
+ border-color: var(--as-error, #b91c1c);
3135
+ }
3136
+ .agent-transcript__activity-result {
3137
+ margin-top: 12px;
3138
+ color: var(--as-text);
3139
+ }
3042
3140
  /*# sourceMappingURL=react.css.map */