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