@webless/agent 0.9.3 → 0.10.1
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/README.md +1 -1
- package/dist/{chunk-JIM5AOVC.js → chunk-ZYTNNMZS.js} +350 -226
- package/dist/chunk-ZYTNNMZS.js.map +1 -0
- package/dist/embed.cjs +353 -228
- package/dist/embed.cjs.map +1 -1
- package/dist/embed.css +403 -153
- package/dist/embed.css.map +1 -1
- package/dist/embed.d.cts +2 -2
- package/dist/embed.d.ts +2 -2
- package/dist/embed.js +2 -1
- package/dist/embed.js.map +1 -1
- package/dist/{panel-controller-D_XIQa1U.d.cts → panel-controller-rxR75tRa.d.cts} +5 -1
- package/dist/{panel-controller-D_XIQa1U.d.ts → panel-controller-rxR75tRa.d.ts} +5 -1
- package/dist/presentation.cjs.map +1 -1
- package/dist/presentation.js.map +1 -1
- package/dist/react.cjs +354 -230
- package/dist/react.cjs.map +1 -1
- package/dist/react.css +403 -153
- package/dist/react.css.map +1 -1
- package/dist/react.d.cts +3 -2
- package/dist/react.d.ts +3 -2
- package/dist/react.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-JIM5AOVC.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 {
|
|
@@ -819,6 +820,10 @@ summary.agent-transcript__activity-heading::before {
|
|
|
819
820
|
width: 14px;
|
|
820
821
|
height: 14px;
|
|
821
822
|
}
|
|
823
|
+
.composer__send:focus-visible {
|
|
824
|
+
outline: 2px solid var(--as-brand);
|
|
825
|
+
outline-offset: 2px;
|
|
826
|
+
}
|
|
822
827
|
.composer--dock .composer__field {
|
|
823
828
|
align-items: center;
|
|
824
829
|
padding: 5px 5px 5px 14px;
|
|
@@ -849,83 +854,181 @@ summary.agent-transcript__activity-heading::before {
|
|
|
849
854
|
max-height: min(560px, calc(100dvh - 160px));
|
|
850
855
|
flex-direction: column;
|
|
851
856
|
overflow: hidden;
|
|
852
|
-
border: 1px solid
|
|
857
|
+
border: 1px solid transparent;
|
|
853
858
|
border-radius: 22px;
|
|
854
|
-
background:
|
|
859
|
+
background:
|
|
860
|
+
linear-gradient(var(--as-surface), var(--as-surface)) padding-box,
|
|
861
|
+
linear-gradient(
|
|
862
|
+
135deg,
|
|
863
|
+
color-mix(in srgb, var(--as-brand) 42%, transparent) 0%,
|
|
864
|
+
color-mix(in srgb, var(--as-brand) 10%, transparent) 38%,
|
|
865
|
+
color-mix(in srgb, var(--as-text) 10%, transparent) 62%,
|
|
866
|
+
color-mix(in srgb, var(--as-brand) 26%, transparent) 100%) border-box;
|
|
855
867
|
box-shadow: 0 1px 2px color-mix(in srgb, var(--as-text) 5%, transparent);
|
|
856
868
|
animation: composer-form-in 180ms cubic-bezier(0.16, 1, 0.3, 1);
|
|
857
869
|
}
|
|
858
870
|
.composer--form .composer__sheet:focus-within {
|
|
859
|
-
|
|
860
|
-
|
|
871
|
+
box-shadow: 0 0 0 3px color-mix(in srgb, var(--as-brand) 10%, transparent), 0 1px 2px color-mix(in srgb, var(--as-text) 5%, transparent);
|
|
872
|
+
}
|
|
873
|
+
.composer__form-heading {
|
|
874
|
+
display: flex;
|
|
875
|
+
align-items: center;
|
|
876
|
+
flex-shrink: 0;
|
|
877
|
+
gap: 8px;
|
|
878
|
+
padding: 11px 12px 7px 16px;
|
|
879
|
+
font-size: 13px;
|
|
880
|
+
color: var(--as-text);
|
|
881
|
+
}
|
|
882
|
+
.composer__form-heading > span {
|
|
883
|
+
margin-left: auto;
|
|
884
|
+
font-size: 11px;
|
|
885
|
+
color: var(--as-text-muted);
|
|
886
|
+
background: var(--as-surface-muted);
|
|
887
|
+
border-radius: 5px;
|
|
888
|
+
padding: 3px 7px;
|
|
889
|
+
}
|
|
890
|
+
.composer__collapse {
|
|
891
|
+
appearance: none;
|
|
892
|
+
display: grid;
|
|
893
|
+
place-items: center;
|
|
894
|
+
width: 26px;
|
|
895
|
+
height: 26px;
|
|
896
|
+
border: none;
|
|
897
|
+
border-radius: 999px;
|
|
898
|
+
background: transparent;
|
|
899
|
+
color: var(--as-text-muted);
|
|
900
|
+
cursor: pointer;
|
|
901
|
+
}
|
|
902
|
+
.composer__collapse:hover:not(:disabled) {
|
|
903
|
+
background: var(--as-surface-muted);
|
|
904
|
+
color: var(--as-text);
|
|
905
|
+
}
|
|
906
|
+
.composer__collapse:focus-visible {
|
|
907
|
+
outline: 2px solid var(--as-brand);
|
|
908
|
+
outline-offset: 1px;
|
|
909
|
+
}
|
|
910
|
+
.composer__collapse:disabled {
|
|
911
|
+
opacity: 0.45;
|
|
912
|
+
cursor: not-allowed;
|
|
913
|
+
}
|
|
914
|
+
.composer__collapse svg {
|
|
915
|
+
width: 14px;
|
|
916
|
+
height: 14px;
|
|
917
|
+
}
|
|
918
|
+
.composer__fields {
|
|
919
|
+
min-height: 0;
|
|
920
|
+
overflow-y: auto;
|
|
921
|
+
overscroll-behavior: contain;
|
|
922
|
+
padding-bottom: 4px;
|
|
861
923
|
}
|
|
862
924
|
.composer__row {
|
|
863
|
-
padding:
|
|
925
|
+
padding: 2px 16px;
|
|
864
926
|
}
|
|
865
|
-
.composer__row
|
|
866
|
-
|
|
927
|
+
.composer__row:not(:last-child) {
|
|
928
|
+
border-bottom: 1px solid color-mix(in srgb, var(--as-text) 7%, transparent);
|
|
867
929
|
}
|
|
868
|
-
.
|
|
869
|
-
display:
|
|
870
|
-
|
|
930
|
+
.composer__line {
|
|
931
|
+
display: flex;
|
|
932
|
+
align-items: center;
|
|
933
|
+
gap: 10px;
|
|
934
|
+
min-height: 38px;
|
|
871
935
|
}
|
|
872
|
-
.
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
936
|
+
.composer__line:focus-within .composer__label {
|
|
937
|
+
color: var(--as-brand);
|
|
938
|
+
}
|
|
939
|
+
.composer__label {
|
|
940
|
+
flex: 0 0 auto;
|
|
941
|
+
min-width: 84px;
|
|
942
|
+
font-size: 13px;
|
|
943
|
+
font-weight: 500;
|
|
944
|
+
color: var(--as-text);
|
|
945
|
+
cursor: text;
|
|
882
946
|
}
|
|
883
947
|
.composer__control {
|
|
884
|
-
|
|
885
|
-
width: 100%;
|
|
948
|
+
flex: 1;
|
|
886
949
|
min-width: 0;
|
|
887
|
-
border:
|
|
888
|
-
border-radius: 10px;
|
|
950
|
+
border: none;
|
|
889
951
|
background: transparent;
|
|
890
|
-
padding:
|
|
952
|
+
padding: 6px 0;
|
|
891
953
|
color: var(--as-text);
|
|
892
954
|
font: inherit;
|
|
893
|
-
font-size:
|
|
955
|
+
font-size: 13px;
|
|
894
956
|
line-height: 1.45;
|
|
957
|
+
text-align: right;
|
|
958
|
+
}
|
|
959
|
+
.composer__control:focus {
|
|
960
|
+
outline: none;
|
|
961
|
+
}
|
|
962
|
+
.composer__control::placeholder {
|
|
963
|
+
color: color-mix(in srgb, var(--as-text) 55%, transparent);
|
|
895
964
|
}
|
|
896
965
|
.composer__control--area {
|
|
897
966
|
resize: none;
|
|
898
|
-
min-height:
|
|
967
|
+
min-height: 48px;
|
|
899
968
|
field-sizing: content;
|
|
900
|
-
max-height:
|
|
969
|
+
max-height: 120px;
|
|
970
|
+
text-align: left;
|
|
901
971
|
}
|
|
902
|
-
.
|
|
903
|
-
|
|
972
|
+
.composer__row--area .composer__line {
|
|
973
|
+
flex-direction: column;
|
|
974
|
+
align-items: stretch;
|
|
975
|
+
gap: 0;
|
|
976
|
+
padding: 4px 0;
|
|
904
977
|
}
|
|
905
|
-
.
|
|
906
|
-
|
|
907
|
-
|
|
978
|
+
.composer__row--area .composer__label {
|
|
979
|
+
min-width: 0;
|
|
980
|
+
}
|
|
981
|
+
.composer__check {
|
|
982
|
+
flex: 0 0 auto;
|
|
983
|
+
display: grid;
|
|
984
|
+
place-items: center;
|
|
985
|
+
width: 18px;
|
|
986
|
+
height: 18px;
|
|
987
|
+
border-radius: 999px;
|
|
988
|
+
background: var(--as-success);
|
|
989
|
+
color: var(--as-surface);
|
|
990
|
+
}
|
|
991
|
+
.composer__check svg {
|
|
992
|
+
width: 11px;
|
|
993
|
+
height: 11px;
|
|
908
994
|
}
|
|
909
995
|
.composer__error {
|
|
910
|
-
margin:
|
|
996
|
+
margin: 0;
|
|
997
|
+
padding: 0 0 7px;
|
|
911
998
|
color: var(--as-danger);
|
|
912
999
|
font-size: 12px;
|
|
913
1000
|
line-height: 1.35;
|
|
914
1001
|
}
|
|
915
|
-
.
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
1002
|
+
.composer__sr-only {
|
|
1003
|
+
position: absolute;
|
|
1004
|
+
width: 1px;
|
|
1005
|
+
height: 1px;
|
|
1006
|
+
padding: 0;
|
|
1007
|
+
margin: -1px;
|
|
1008
|
+
overflow: hidden;
|
|
1009
|
+
clip: rect(0, 0, 0, 0);
|
|
1010
|
+
white-space: nowrap;
|
|
1011
|
+
border: 0;
|
|
921
1012
|
}
|
|
922
|
-
.
|
|
923
|
-
|
|
924
|
-
|
|
1013
|
+
.composer--form .composer__field--inset {
|
|
1014
|
+
flex-shrink: 0;
|
|
1015
|
+
border: none;
|
|
1016
|
+
border-top: 1px solid color-mix(in srgb, var(--as-text) 8%, transparent);
|
|
1017
|
+
border-radius: 0;
|
|
1018
|
+
background: transparent;
|
|
1019
|
+
box-shadow: none;
|
|
1020
|
+
}
|
|
1021
|
+
.composer--form .composer__field--inset:focus-within {
|
|
1022
|
+
border-top-color: color-mix(in srgb, var(--as-text) 8%, transparent);
|
|
1023
|
+
box-shadow: none;
|
|
925
1024
|
}
|
|
926
1025
|
.composer--form .composer__send {
|
|
927
|
-
width:
|
|
928
|
-
height:
|
|
1026
|
+
width: 32px;
|
|
1027
|
+
height: 32px;
|
|
1028
|
+
}
|
|
1029
|
+
.composer--dock.composer--form .composer__send {
|
|
1030
|
+
width: 40px;
|
|
1031
|
+
height: 40px;
|
|
929
1032
|
}
|
|
930
1033
|
@keyframes composer-form-in {
|
|
931
1034
|
from {
|
|
@@ -945,70 +1048,6 @@ summary.agent-transcript__activity-heading::before {
|
|
|
945
1048
|
transition: none;
|
|
946
1049
|
}
|
|
947
1050
|
}
|
|
948
|
-
.composer--dock.composer--form .composer__control {
|
|
949
|
-
font-size: 15px;
|
|
950
|
-
}
|
|
951
|
-
.composer--dock.composer--form .composer__send {
|
|
952
|
-
width: 44px;
|
|
953
|
-
height: 44px;
|
|
954
|
-
}
|
|
955
|
-
.composer__form-heading {
|
|
956
|
-
display: flex;
|
|
957
|
-
align-items: center;
|
|
958
|
-
flex-wrap: wrap;
|
|
959
|
-
gap: 8px;
|
|
960
|
-
padding: 16px 16px 14px;
|
|
961
|
-
font-size: 14px;
|
|
962
|
-
color: var(--as-text);
|
|
963
|
-
}
|
|
964
|
-
.composer__form-heading > span {
|
|
965
|
-
margin-left: auto;
|
|
966
|
-
font-size: 11px;
|
|
967
|
-
color: var(--as-text-muted);
|
|
968
|
-
background: var(--as-surface-muted);
|
|
969
|
-
border-radius: 5px;
|
|
970
|
-
padding: 3px 7px;
|
|
971
|
-
}
|
|
972
|
-
.composer__form-heading > p {
|
|
973
|
-
flex-basis: 100%;
|
|
974
|
-
margin: 0;
|
|
975
|
-
font-size: 12px;
|
|
976
|
-
color: var(--as-text-muted);
|
|
977
|
-
}
|
|
978
|
-
.composer__field-label {
|
|
979
|
-
display: block;
|
|
980
|
-
margin-bottom: 5px;
|
|
981
|
-
font-size: 12px;
|
|
982
|
-
font-weight: 600;
|
|
983
|
-
color: var(--as-text);
|
|
984
|
-
}
|
|
985
|
-
.composer__action {
|
|
986
|
-
flex: 1 1 140px;
|
|
987
|
-
min-width: 0;
|
|
988
|
-
min-height: 42px;
|
|
989
|
-
padding: 9px 12px;
|
|
990
|
-
border: 1px solid var(--as-control-border, var(--as-border));
|
|
991
|
-
border-radius: 10px;
|
|
992
|
-
background: var(--as-surface);
|
|
993
|
-
color: var(--as-text);
|
|
994
|
-
font: inherit;
|
|
995
|
-
font-size: 13px;
|
|
996
|
-
font-weight: 600;
|
|
997
|
-
cursor: pointer;
|
|
998
|
-
}
|
|
999
|
-
.composer__action--primary {
|
|
1000
|
-
border-color: var(--as-brand);
|
|
1001
|
-
background: var(--as-brand);
|
|
1002
|
-
color: var(--as-on-brand, var(--as-surface));
|
|
1003
|
-
}
|
|
1004
|
-
.composer__action:hover:not(:disabled) {
|
|
1005
|
-
filter: brightness(0.96);
|
|
1006
|
-
}
|
|
1007
|
-
.composer__action:focus-visible,
|
|
1008
|
-
.composer__resume button:focus-visible {
|
|
1009
|
-
outline: 2px solid var(--as-brand);
|
|
1010
|
-
outline-offset: 2px;
|
|
1011
|
-
}
|
|
1012
1051
|
.composer__resume {
|
|
1013
1052
|
display: flex;
|
|
1014
1053
|
align-items: center;
|
|
@@ -1031,19 +1070,13 @@ summary.agent-transcript__activity-heading::before {
|
|
|
1031
1070
|
text-underline-offset: 3px;
|
|
1032
1071
|
cursor: pointer;
|
|
1033
1072
|
}
|
|
1034
|
-
.composer__resume button:disabled
|
|
1035
|
-
.composer__action:disabled {
|
|
1073
|
+
.composer__resume button:disabled {
|
|
1036
1074
|
opacity: 0.45;
|
|
1037
1075
|
cursor: not-allowed;
|
|
1038
1076
|
}
|
|
1039
|
-
.
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
overscroll-behavior: contain;
|
|
1043
|
-
}
|
|
1044
|
-
.composer__form-heading,
|
|
1045
|
-
.composer__toolbar {
|
|
1046
|
-
flex-shrink: 0;
|
|
1077
|
+
.composer__resume button:focus-visible {
|
|
1078
|
+
outline: 2px solid var(--as-brand);
|
|
1079
|
+
outline-offset: 2px;
|
|
1047
1080
|
}
|
|
1048
1081
|
|
|
1049
1082
|
/* src/react/components/FollowUpChips/FollowUpChips.css */
|
|
@@ -2892,12 +2925,14 @@ summary.agent-transcript__activity-heading::before {
|
|
|
2892
2925
|
}
|
|
2893
2926
|
|
|
2894
2927
|
/* src/react/components/AssistEdgeTab/AssistEdgeTab.css */
|
|
2928
|
+
@property --as-tab-beam { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
|
|
2895
2929
|
.assist-edge-tab {
|
|
2896
2930
|
--tab-ink: var(--as-brand);
|
|
2897
2931
|
--tab-fill: var(--as-surface);
|
|
2898
2932
|
--tab-line: color-mix(in srgb, var(--as-brand) 32%, var(--as-border));
|
|
2899
2933
|
--tab-along: 50%;
|
|
2900
2934
|
--tab-inset: 0px;
|
|
2935
|
+
--as-tab-beam: 0deg;
|
|
2901
2936
|
position: fixed;
|
|
2902
2937
|
top: auto;
|
|
2903
2938
|
right: auto;
|
|
@@ -2934,9 +2969,9 @@ summary.agent-transcript__activity-heading::before {
|
|
|
2934
2969
|
height: 16px;
|
|
2935
2970
|
flex-shrink: 0;
|
|
2936
2971
|
}
|
|
2937
|
-
.assist-edge-
|
|
2938
|
-
width:
|
|
2939
|
-
height:
|
|
2972
|
+
.assist-edge-tab svg.assist-edge-tab__chat-spark {
|
|
2973
|
+
width: 21px;
|
|
2974
|
+
height: 21px;
|
|
2940
2975
|
}
|
|
2941
2976
|
.assist-edge-tab__mark {
|
|
2942
2977
|
position: relative;
|
|
@@ -2948,13 +2983,22 @@ summary.agent-transcript__activity-heading::before {
|
|
|
2948
2983
|
flex: 0 0 20px;
|
|
2949
2984
|
}
|
|
2950
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 {
|
|
2951
2992
|
position: absolute;
|
|
2952
2993
|
inset: 0;
|
|
2953
2994
|
width: 100%;
|
|
2954
2995
|
height: 100%;
|
|
2955
|
-
border-radius:
|
|
2956
|
-
background: var(--tab-fill);
|
|
2957
|
-
|
|
2996
|
+
border-radius: inherit;
|
|
2997
|
+
background: var(--pill-orb-from, var(--tab-fill));
|
|
2998
|
+
}
|
|
2999
|
+
.assist-edge-tab__mark--chip > .assist-edge-tab__logo {
|
|
3000
|
+
width: 20px;
|
|
3001
|
+
height: 20px;
|
|
2958
3002
|
}
|
|
2959
3003
|
.assist-edge-tab__custom-icon {
|
|
2960
3004
|
width: 18px;
|
|
@@ -2970,6 +3014,24 @@ summary.agent-transcript__activity-heading::before {
|
|
|
2970
3014
|
line-height: 1;
|
|
2971
3015
|
white-space: nowrap;
|
|
2972
3016
|
}
|
|
3017
|
+
.assist-edge-tab__text {
|
|
3018
|
+
display: flex;
|
|
3019
|
+
min-width: 0;
|
|
3020
|
+
flex-direction: column;
|
|
3021
|
+
align-items: flex-start;
|
|
3022
|
+
gap: 2px;
|
|
3023
|
+
}
|
|
3024
|
+
.assist-edge-tab__sublabel {
|
|
3025
|
+
max-width: 180px;
|
|
3026
|
+
overflow: hidden;
|
|
3027
|
+
font-family: var(--as-font-display);
|
|
3028
|
+
font-size: 11.5px;
|
|
3029
|
+
font-weight: 500;
|
|
3030
|
+
letter-spacing: 0.01em;
|
|
3031
|
+
line-height: 1.25;
|
|
3032
|
+
text-overflow: ellipsis;
|
|
3033
|
+
white-space: nowrap;
|
|
3034
|
+
}
|
|
2973
3035
|
.assist-edge-tab--right,
|
|
2974
3036
|
.assist-edge-tab--left {
|
|
2975
3037
|
flex-direction: column;
|
|
@@ -2985,7 +3047,7 @@ summary.agent-transcript__activity-heading::before {
|
|
|
2985
3047
|
.assist-edge-tab--top,
|
|
2986
3048
|
.assist-edge-tab--bottom {
|
|
2987
3049
|
flex-direction: row;
|
|
2988
|
-
height: 40px;
|
|
3050
|
+
min-height: 40px;
|
|
2989
3051
|
min-width: 168px;
|
|
2990
3052
|
width: auto;
|
|
2991
3053
|
padding: 0 14px;
|
|
@@ -3032,6 +3094,11 @@ summary.agent-transcript__activity-heading::before {
|
|
|
3032
3094
|
.assist-edge-tab--bottom {
|
|
3033
3095
|
left: var(--tab-along);
|
|
3034
3096
|
bottom: max(calc(var(--tab-inset) + 24px), env(safe-area-inset-bottom));
|
|
3097
|
+
justify-content: flex-start;
|
|
3098
|
+
gap: 11px;
|
|
3099
|
+
min-width: 0;
|
|
3100
|
+
min-height: 56px;
|
|
3101
|
+
padding: 6px 20px 6px 6px;
|
|
3035
3102
|
border-radius: 999px;
|
|
3036
3103
|
transform: translateX(-50%) translateY(calc(100% + 18px));
|
|
3037
3104
|
}
|
|
@@ -3041,6 +3108,9 @@ summary.agent-transcript__activity-heading::before {
|
|
|
3041
3108
|
.assist-edge-tab--bottom.is-visible:hover {
|
|
3042
3109
|
transform: translateX(-50%) translateY(-2px);
|
|
3043
3110
|
}
|
|
3111
|
+
.assist-edge-tab--bottom.is-visible:active {
|
|
3112
|
+
transform: translateX(-50%) translateY(0);
|
|
3113
|
+
}
|
|
3044
3114
|
.assist-edge-tab--bottom.assist-edge-tab--align-start {
|
|
3045
3115
|
left: max(calc(var(--tab-inset) + 24px), env(safe-area-inset-left));
|
|
3046
3116
|
transform: translateY(calc(100% + 42px));
|
|
@@ -3058,6 +3128,10 @@ summary.agent-transcript__activity-heading::before {
|
|
|
3058
3128
|
.assist-edge-tab--bottom.assist-edge-tab--align-end.is-visible:hover {
|
|
3059
3129
|
transform: translateY(-2px);
|
|
3060
3130
|
}
|
|
3131
|
+
.assist-edge-tab--bottom.assist-edge-tab--align-start.is-visible:active,
|
|
3132
|
+
.assist-edge-tab--bottom.assist-edge-tab--align-end.is-visible:active {
|
|
3133
|
+
transform: translateY(0);
|
|
3134
|
+
}
|
|
3061
3135
|
.assist-edge-tab--outline {
|
|
3062
3136
|
--tab-fill: color-mix(in srgb, var(--as-surface) 96%, var(--as-text) 4%);
|
|
3063
3137
|
--tab-line: color-mix(in srgb, var(--as-brand) 42%, var(--as-border));
|
|
@@ -3069,8 +3143,7 @@ summary.agent-transcript__activity-heading::before {
|
|
|
3069
3143
|
border-right: 1px solid var(--tab-line);
|
|
3070
3144
|
border-left: 1px solid var(--tab-line);
|
|
3071
3145
|
}
|
|
3072
|
-
.assist-edge-tab--outline.assist-edge-tab--top
|
|
3073
|
-
.assist-edge-tab--outline.assist-edge-tab--bottom {
|
|
3146
|
+
.assist-edge-tab--outline.assist-edge-tab--top {
|
|
3074
3147
|
border-radius: 999px;
|
|
3075
3148
|
border-top: 1px solid var(--tab-line);
|
|
3076
3149
|
border-bottom: 1px solid var(--tab-line);
|
|
@@ -3100,13 +3173,191 @@ summary.agent-transcript__activity-heading::before {
|
|
|
3100
3173
|
.assist-edge-tab--fill.assist-edge-tab--left {
|
|
3101
3174
|
min-height: 180px;
|
|
3102
3175
|
}
|
|
3176
|
+
.webless-agent-root > .assist-edge-tab.assist-edge-tab--bottom,
|
|
3177
|
+
.webless-agent-root > .assist-edge-tab.assist-edge-tab--mobile,
|
|
3178
|
+
.assist-edge-tab.assist-edge-tab--bottom,
|
|
3179
|
+
.assist-edge-tab.assist-edge-tab--mobile {
|
|
3180
|
+
isolation: isolate;
|
|
3181
|
+
box-sizing: border-box;
|
|
3182
|
+
color-scheme: light;
|
|
3183
|
+
--tab-fill: #ffffff;
|
|
3184
|
+
--tab-ink: #171717;
|
|
3185
|
+
--tab-line: transparent;
|
|
3186
|
+
--pill-brand: var(--as-brand, #6f16ff);
|
|
3187
|
+
--pill-fill: #ffffff;
|
|
3188
|
+
--pill-label: #5f6673;
|
|
3189
|
+
--pill-title: #171717;
|
|
3190
|
+
--pill-mark: var(--pill-brand);
|
|
3191
|
+
--pill-wash-light: color-mix(in srgb, var(--pill-brand) 24%, #fff);
|
|
3192
|
+
--pill-wash-cool: color-mix(in oklab, var(--pill-brand) 32%, #d4e4ff);
|
|
3193
|
+
--pill-wash-deep: color-mix(in srgb, var(--pill-brand) 38%, #fff);
|
|
3194
|
+
--pill-orb-base: color-mix(in srgb, var(--pill-brand) 30%, #fff);
|
|
3195
|
+
--pill-beam-soft: color-mix(in srgb, var(--pill-brand) 22%, #fff);
|
|
3196
|
+
--pill-beam-mid: color-mix(in srgb, var(--pill-brand) 38%, #fff);
|
|
3197
|
+
--pill-beam-bright: color-mix(in srgb, var(--pill-brand) 54%, #fff);
|
|
3198
|
+
border: 2px solid transparent;
|
|
3199
|
+
background-color: var(--pill-fill);
|
|
3200
|
+
background-image:
|
|
3201
|
+
linear-gradient(var(--pill-fill), var(--pill-fill)),
|
|
3202
|
+
conic-gradient(
|
|
3203
|
+
from var(--as-tab-beam),
|
|
3204
|
+
var(--pill-beam-soft) 0deg,
|
|
3205
|
+
var(--pill-beam-soft) 215deg,
|
|
3206
|
+
var(--pill-beam-mid) 252deg,
|
|
3207
|
+
var(--pill-beam-bright) 278deg,
|
|
3208
|
+
var(--pill-beam-mid) 304deg,
|
|
3209
|
+
var(--pill-beam-soft) 360deg);
|
|
3210
|
+
background-origin: border-box;
|
|
3211
|
+
background-clip: padding-box, border-box;
|
|
3212
|
+
color: var(--pill-title);
|
|
3213
|
+
box-shadow: 0 10px 24px -10px rgb(15 23 42 / 10%), 0 2px 6px rgb(15 23 42 / 4%);
|
|
3214
|
+
transition:
|
|
3215
|
+
transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
|
|
3216
|
+
opacity 220ms ease,
|
|
3217
|
+
box-shadow 180ms ease;
|
|
3218
|
+
animation: assist-edge-tab-beam 9s linear infinite;
|
|
3219
|
+
}
|
|
3220
|
+
.assist-edge-tab.assist-edge-tab--bottom.is-visible:hover,
|
|
3221
|
+
.assist-edge-tab.assist-edge-tab--mobile.is-visible:hover {
|
|
3222
|
+
box-shadow: 0 12px 26px -8px rgb(15 23 42 / 16%), 0 3px 8px rgb(15 23 42 / 6%);
|
|
3223
|
+
}
|
|
3224
|
+
.assist-edge-tab--bottom .assist-edge-tab__text,
|
|
3225
|
+
.assist-edge-tab--mobile .assist-edge-tab__text {
|
|
3226
|
+
gap: 2px;
|
|
3227
|
+
padding-right: 2px;
|
|
3228
|
+
font-family: var(--as-font-body);
|
|
3229
|
+
-webkit-font-smoothing: antialiased;
|
|
3230
|
+
}
|
|
3231
|
+
.assist-edge-tab--bottom .assist-edge-tab__label,
|
|
3232
|
+
.assist-edge-tab--mobile .assist-edge-tab__label {
|
|
3233
|
+
font-family: inherit;
|
|
3234
|
+
font-size: 14px;
|
|
3235
|
+
font-weight: 500;
|
|
3236
|
+
letter-spacing: -0.008em;
|
|
3237
|
+
line-height: 1.25;
|
|
3238
|
+
color: var(--pill-label);
|
|
3239
|
+
}
|
|
3240
|
+
.assist-edge-tab--bottom .assist-edge-tab__sublabel,
|
|
3241
|
+
.assist-edge-tab--mobile .assist-edge-tab__sublabel {
|
|
3242
|
+
max-width: none;
|
|
3243
|
+
font-family: inherit;
|
|
3244
|
+
font-size: 15px;
|
|
3245
|
+
font-weight: 500;
|
|
3246
|
+
letter-spacing: -0.014em;
|
|
3247
|
+
line-height: 1.25;
|
|
3248
|
+
color: var(--pill-title);
|
|
3249
|
+
}
|
|
3250
|
+
.assist-edge-tab--bottom:not(:has(.assist-edge-tab__sublabel)) .assist-edge-tab__label,
|
|
3251
|
+
.assist-edge-tab--mobile:not(:has(.assist-edge-tab__sublabel)) .assist-edge-tab__label {
|
|
3252
|
+
font-size: 15px;
|
|
3253
|
+
font-weight: 500;
|
|
3254
|
+
letter-spacing: -0.012em;
|
|
3255
|
+
color: var(--pill-title);
|
|
3256
|
+
}
|
|
3257
|
+
.assist-edge-tab__mark--chip {
|
|
3258
|
+
isolation: isolate;
|
|
3259
|
+
overflow: hidden;
|
|
3260
|
+
width: 36px;
|
|
3261
|
+
height: 36px;
|
|
3262
|
+
flex-basis: 36px;
|
|
3263
|
+
border: none;
|
|
3264
|
+
border-radius: 50%;
|
|
3265
|
+
box-shadow: none;
|
|
3266
|
+
background:
|
|
3267
|
+
radial-gradient(
|
|
3268
|
+
ellipse 88% 52% at 50% 94%,
|
|
3269
|
+
color-mix(in srgb, var(--pill-brand) 22%, transparent) 0%,
|
|
3270
|
+
transparent 68%),
|
|
3271
|
+
radial-gradient(
|
|
3272
|
+
120% 100% at 22% 12%,
|
|
3273
|
+
var(--pill-wash-light) 0%,
|
|
3274
|
+
transparent 55%),
|
|
3275
|
+
radial-gradient(
|
|
3276
|
+
110% 95% at 88% 88%,
|
|
3277
|
+
var(--pill-wash-cool) 0%,
|
|
3278
|
+
transparent 58%),
|
|
3279
|
+
var(--pill-orb-base);
|
|
3280
|
+
color: var(--pill-mark);
|
|
3281
|
+
box-shadow: inset 0 1px 2px rgb(255 255 255 / 28%);
|
|
3282
|
+
}
|
|
3283
|
+
.assist-edge-tab__wash {
|
|
3284
|
+
position: absolute;
|
|
3285
|
+
border-radius: 50%;
|
|
3286
|
+
pointer-events: none;
|
|
3287
|
+
z-index: 0;
|
|
3288
|
+
}
|
|
3289
|
+
.assist-edge-tab__wash--light,
|
|
3290
|
+
.assist-edge-tab__wash--cool {
|
|
3291
|
+
inset: -32%;
|
|
3292
|
+
filter: blur(4px);
|
|
3293
|
+
opacity: 0.85;
|
|
3294
|
+
-webkit-mask:
|
|
3295
|
+
radial-gradient(
|
|
3296
|
+
farthest-side,
|
|
3297
|
+
transparent 40%,
|
|
3298
|
+
#000 58%);
|
|
3299
|
+
mask:
|
|
3300
|
+
radial-gradient(
|
|
3301
|
+
farthest-side,
|
|
3302
|
+
transparent 40%,
|
|
3303
|
+
#000 58%);
|
|
3304
|
+
}
|
|
3305
|
+
.assist-edge-tab__wash--light {
|
|
3306
|
+
background:
|
|
3307
|
+
radial-gradient(
|
|
3308
|
+
closest-side at 16% 50%,
|
|
3309
|
+
var(--pill-wash-light) 0%,
|
|
3310
|
+
transparent 58%);
|
|
3311
|
+
animation: assist-edge-tab-spin 7s linear infinite;
|
|
3312
|
+
}
|
|
3313
|
+
.assist-edge-tab__wash--cool {
|
|
3314
|
+
background:
|
|
3315
|
+
radial-gradient(
|
|
3316
|
+
closest-side at 84% 50%,
|
|
3317
|
+
var(--pill-wash-cool) 0%,
|
|
3318
|
+
transparent 58%);
|
|
3319
|
+
animation: assist-edge-tab-spin 9.5s linear infinite reverse;
|
|
3320
|
+
}
|
|
3321
|
+
.assist-edge-tab__mark--chip > svg,
|
|
3322
|
+
.assist-edge-tab__mark--chip > .assist-edge-tab__custom-icon,
|
|
3323
|
+
.assist-edge-tab__mark--chip > .assist-edge-tab__logo {
|
|
3324
|
+
position: relative;
|
|
3325
|
+
z-index: 2;
|
|
3326
|
+
filter: drop-shadow(0 0.5px 0 rgb(255 255 255 / 45%));
|
|
3327
|
+
}
|
|
3328
|
+
.assist-edge-tab svg.assist-edge-tab__chat-spark .assist-edge-tab__spark {
|
|
3329
|
+
transform-box: fill-box;
|
|
3330
|
+
transform-origin: center;
|
|
3331
|
+
animation: assist-edge-tab-twinkle 3.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
|
|
3332
|
+
}
|
|
3333
|
+
.assist-edge-tab svg.assist-edge-tab__chat-spark .assist-edge-tab__spark--b {
|
|
3334
|
+
animation-duration: 4.2s;
|
|
3335
|
+
animation-delay: -1.4s;
|
|
3336
|
+
}
|
|
3337
|
+
@keyframes assist-edge-tab-beam {
|
|
3338
|
+
to {
|
|
3339
|
+
--as-tab-beam: 360deg;
|
|
3340
|
+
}
|
|
3341
|
+
}
|
|
3342
|
+
@keyframes assist-edge-tab-spin {
|
|
3343
|
+
to {
|
|
3344
|
+
transform: rotate(360deg);
|
|
3345
|
+
}
|
|
3346
|
+
}
|
|
3347
|
+
@keyframes assist-edge-tab-twinkle {
|
|
3348
|
+
0%, 100% {
|
|
3349
|
+
opacity: 0.7;
|
|
3350
|
+
}
|
|
3351
|
+
50% {
|
|
3352
|
+
opacity: 1;
|
|
3353
|
+
}
|
|
3354
|
+
}
|
|
3103
3355
|
.assist-edge-tab__dots {
|
|
3104
3356
|
display: grid;
|
|
3105
3357
|
grid-template-columns: repeat(3, 3px);
|
|
3106
3358
|
gap: 3px;
|
|
3107
3359
|
}
|
|
3108
|
-
.assist-edge-tab--top .assist-edge-tab__dots
|
|
3109
|
-
.assist-edge-tab--bottom .assist-edge-tab__dots {
|
|
3360
|
+
.assist-edge-tab--top .assist-edge-tab__dots {
|
|
3110
3361
|
grid-template-columns: repeat(4, 3px);
|
|
3111
3362
|
grid-template-rows: repeat(3, 3px);
|
|
3112
3363
|
}
|
|
@@ -3137,48 +3388,41 @@ summary.agent-transcript__activity-heading::before {
|
|
|
3137
3388
|
left: auto;
|
|
3138
3389
|
width: auto;
|
|
3139
3390
|
min-width: 0;
|
|
3140
|
-
max-width: min(
|
|
3141
|
-
height:
|
|
3142
|
-
min-height:
|
|
3143
|
-
padding:
|
|
3391
|
+
max-width: min(240px, calc(100vw - 28px));
|
|
3392
|
+
height: auto;
|
|
3393
|
+
min-height: 54px;
|
|
3394
|
+
padding: 6px 16px 6px 6px;
|
|
3144
3395
|
flex-direction: row;
|
|
3145
|
-
justify-content:
|
|
3146
|
-
gap:
|
|
3147
|
-
border: 1px solid color-mix(in srgb, var(--as-brand) 18%, var(--as-border));
|
|
3396
|
+
justify-content: flex-start;
|
|
3397
|
+
gap: 10px;
|
|
3148
3398
|
border-radius: 999px;
|
|
3149
|
-
background: var(--as-surface);
|
|
3150
|
-
color: var(--as-text);
|
|
3151
|
-
box-shadow: 0 1px 2px color-mix(in srgb, var(--as-text) 8%, transparent), 0 12px 32px -12px color-mix(in srgb, var(--as-text) 32%, transparent);
|
|
3152
3399
|
transform: translateY(calc(100% + 24px));
|
|
3153
3400
|
}
|
|
3154
3401
|
.assist-edge-tab--mobile.is-visible,
|
|
3155
3402
|
.assist-edge-tab--mobile.is-visible:hover {
|
|
3156
3403
|
transform: translateY(0);
|
|
3157
3404
|
}
|
|
3158
|
-
.assist-edge-tab--mobile.is-visible:hover {
|
|
3159
|
-
box-shadow: 0 1px 2px color-mix(in srgb, var(--as-text) 8%, transparent), 0 14px 36px -12px color-mix(in srgb, var(--as-text) 38%, transparent);
|
|
3160
|
-
}
|
|
3161
3405
|
.assist-edge-tab--mobile .assist-edge-tab__mark {
|
|
3162
|
-
width:
|
|
3163
|
-
height:
|
|
3164
|
-
flex-basis:
|
|
3165
|
-
border-radius:
|
|
3166
|
-
background: var(--as-brand);
|
|
3167
|
-
color: var(--as-visitor-text);
|
|
3406
|
+
width: 34px;
|
|
3407
|
+
height: 34px;
|
|
3408
|
+
flex-basis: 34px;
|
|
3409
|
+
border-radius: 50%;
|
|
3168
3410
|
font-size: 10px;
|
|
3169
3411
|
font-weight: 750;
|
|
3170
3412
|
}
|
|
3171
3413
|
.assist-edge-tab--mobile .assist-edge-tab__label {
|
|
3172
3414
|
min-width: 0;
|
|
3173
3415
|
overflow: hidden;
|
|
3174
|
-
color: var(--as-text);
|
|
3175
|
-
font-size: 14px;
|
|
3176
|
-
letter-spacing: -0.01em;
|
|
3177
3416
|
text-overflow: ellipsis;
|
|
3178
3417
|
white-space: nowrap;
|
|
3179
3418
|
writing-mode: initial;
|
|
3180
3419
|
transform: none;
|
|
3181
3420
|
}
|
|
3421
|
+
.assist-edge-tab--mobile .assist-edge-tab__sublabel {
|
|
3422
|
+
max-width: min(170px, calc(100vw - 150px));
|
|
3423
|
+
overflow: hidden;
|
|
3424
|
+
text-overflow: ellipsis;
|
|
3425
|
+
}
|
|
3182
3426
|
}
|
|
3183
3427
|
@media (prefers-reduced-motion: reduce) {
|
|
3184
3428
|
.assist-edge-tab,
|
|
@@ -3186,5 +3430,11 @@ summary.agent-transcript__activity-heading::before {
|
|
|
3186
3430
|
.assist-edge-tab.is-visible:hover {
|
|
3187
3431
|
transition: none;
|
|
3188
3432
|
}
|
|
3433
|
+
.assist-edge-tab.assist-edge-tab--bottom,
|
|
3434
|
+
.assist-edge-tab.assist-edge-tab--mobile,
|
|
3435
|
+
.assist-edge-tab .assist-edge-tab__wash,
|
|
3436
|
+
.assist-edge-tab .assist-edge-tab__spark {
|
|
3437
|
+
animation: none;
|
|
3438
|
+
}
|
|
3189
3439
|
}
|
|
3190
3440
|
/*# sourceMappingURL=embed.css.map */
|