@webless/agent 0.10.0 → 0.10.2
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/{chunk-6OCODDRO.js → chunk-Q7H4RRS4.js} +83 -81
- package/dist/chunk-Q7H4RRS4.js.map +1 -0
- package/dist/embed.cjs +83 -81
- package/dist/embed.cjs.map +1 -1
- package/dist/embed.css +27 -8
- package/dist/embed.css.map +1 -1
- package/dist/embed.js +1 -1
- package/dist/react.cjs +85 -83
- package/dist/react.cjs.map +1 -1
- package/dist/react.css +27 -8
- package/dist/react.css.map +1 -1
- package/dist/react.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-6OCODDRO.js.map +0 -1
package/dist/embed.css
CHANGED
|
@@ -424,7 +424,8 @@ summary.agent-transcript__activity-heading::before {
|
|
|
424
424
|
margin: 0;
|
|
425
425
|
color: var(--as-text-muted);
|
|
426
426
|
font-size: 12.5px;
|
|
427
|
-
font-weight:
|
|
427
|
+
font-weight: 400;
|
|
428
|
+
font-style: italic;
|
|
428
429
|
line-height: 1.4;
|
|
429
430
|
}
|
|
430
431
|
.agent-activity-bubble__pulse {
|
|
@@ -2982,13 +2983,22 @@ summary.agent-transcript__activity-heading::before {
|
|
|
2982
2983
|
flex: 0 0 20px;
|
|
2983
2984
|
}
|
|
2984
2985
|
.assist-edge-tab__logo {
|
|
2986
|
+
width: 18px;
|
|
2987
|
+
height: 18px;
|
|
2988
|
+
flex-shrink: 0;
|
|
2989
|
+
object-fit: contain;
|
|
2990
|
+
}
|
|
2991
|
+
.assist-edge-tab__mark:not(.assist-edge-tab__mark--chip) .assist-edge-tab__logo {
|
|
2985
2992
|
position: absolute;
|
|
2986
2993
|
inset: 0;
|
|
2987
2994
|
width: 100%;
|
|
2988
2995
|
height: 100%;
|
|
2989
2996
|
border-radius: inherit;
|
|
2990
2997
|
background: var(--pill-orb-from, var(--tab-fill));
|
|
2991
|
-
|
|
2998
|
+
}
|
|
2999
|
+
.assist-edge-tab__mark--chip > .assist-edge-tab__logo {
|
|
3000
|
+
width: 20px;
|
|
3001
|
+
height: 20px;
|
|
2992
3002
|
}
|
|
2993
3003
|
.assist-edge-tab__custom-icon {
|
|
2994
3004
|
width: 18px;
|
|
@@ -3163,15 +3173,21 @@ summary.agent-transcript__activity-heading::before {
|
|
|
3163
3173
|
.assist-edge-tab--fill.assist-edge-tab--left {
|
|
3164
3174
|
min-height: 180px;
|
|
3165
3175
|
}
|
|
3176
|
+
.webless-agent-root > .assist-edge-tab.assist-edge-tab--bottom,
|
|
3177
|
+
.webless-agent-root > .assist-edge-tab.assist-edge-tab--mobile,
|
|
3166
3178
|
.assist-edge-tab.assist-edge-tab--bottom,
|
|
3167
3179
|
.assist-edge-tab.assist-edge-tab--mobile {
|
|
3168
3180
|
isolation: isolate;
|
|
3169
3181
|
box-sizing: border-box;
|
|
3182
|
+
color-scheme: light;
|
|
3183
|
+
--tab-fill: #ffffff;
|
|
3184
|
+
--tab-ink: #171717;
|
|
3185
|
+
--tab-line: transparent;
|
|
3170
3186
|
--pill-brand: var(--as-brand, #6f16ff);
|
|
3171
3187
|
--pill-fill: #ffffff;
|
|
3172
3188
|
--pill-label: #5f6673;
|
|
3173
3189
|
--pill-title: #171717;
|
|
3174
|
-
--pill-mark:
|
|
3190
|
+
--pill-mark: var(--pill-brand);
|
|
3175
3191
|
--pill-wash-light: color-mix(in srgb, var(--pill-brand) 24%, #fff);
|
|
3176
3192
|
--pill-wash-cool: color-mix(in oklab, var(--pill-brand) 32%, #d4e4ff);
|
|
3177
3193
|
--pill-wash-deep: color-mix(in srgb, var(--pill-brand) 38%, #fff);
|
|
@@ -3180,9 +3196,9 @@ summary.agent-transcript__activity-heading::before {
|
|
|
3180
3196
|
--pill-beam-mid: color-mix(in srgb, var(--pill-brand) 38%, #fff);
|
|
3181
3197
|
--pill-beam-bright: color-mix(in srgb, var(--pill-brand) 54%, #fff);
|
|
3182
3198
|
border: 2px solid transparent;
|
|
3183
|
-
background: var(--pill-fill);
|
|
3184
|
-
background:
|
|
3185
|
-
linear-gradient(var(--pill-fill), var(--pill-fill))
|
|
3199
|
+
background-color: var(--pill-fill);
|
|
3200
|
+
background-image:
|
|
3201
|
+
linear-gradient(var(--pill-fill), var(--pill-fill)),
|
|
3186
3202
|
conic-gradient(
|
|
3187
3203
|
from var(--as-tab-beam),
|
|
3188
3204
|
var(--pill-beam-soft) 0deg,
|
|
@@ -3190,7 +3206,9 @@ summary.agent-transcript__activity-heading::before {
|
|
|
3190
3206
|
var(--pill-beam-mid) 252deg,
|
|
3191
3207
|
var(--pill-beam-bright) 278deg,
|
|
3192
3208
|
var(--pill-beam-mid) 304deg,
|
|
3193
|
-
var(--pill-beam-soft) 360deg)
|
|
3209
|
+
var(--pill-beam-soft) 360deg);
|
|
3210
|
+
background-origin: border-box;
|
|
3211
|
+
background-clip: padding-box, border-box;
|
|
3194
3212
|
color: var(--pill-title);
|
|
3195
3213
|
box-shadow: 0 10px 24px -10px rgb(15 23 42 / 10%), 0 2px 6px rgb(15 23 42 / 4%);
|
|
3196
3214
|
transition:
|
|
@@ -3242,8 +3260,9 @@ summary.agent-transcript__activity-heading::before {
|
|
|
3242
3260
|
width: 36px;
|
|
3243
3261
|
height: 36px;
|
|
3244
3262
|
flex-basis: 36px;
|
|
3245
|
-
border:
|
|
3263
|
+
border: none;
|
|
3246
3264
|
border-radius: 50%;
|
|
3265
|
+
box-shadow: none;
|
|
3247
3266
|
background:
|
|
3248
3267
|
radial-gradient(
|
|
3249
3268
|
ellipse 88% 52% at 50% 94%,
|