@streamoid/ui 0.6.7 → 0.6.9
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/index.css +501 -4
- package/dist/index.d.mts +124 -1
- package/dist/index.d.ts +124 -1
- package/dist/index.js +1666 -1112
- package/dist/index.mjs +1578 -1024
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -869,6 +869,51 @@
|
|
|
869
869
|
height: 1.25rem !important;
|
|
870
870
|
}
|
|
871
871
|
|
|
872
|
+
/* src/SC-AppCardForCopilot/ScAppCardForCopilot.module.css */
|
|
873
|
+
.ScAppCardForCopilot_card {
|
|
874
|
+
display: flex;
|
|
875
|
+
flex-direction: column;
|
|
876
|
+
align-items: stretch;
|
|
877
|
+
gap: var(--spacing-sm, 0.375rem);
|
|
878
|
+
padding: var(--spacing-xl, 0.75rem) var(--spacing-3xl, 1rem);
|
|
879
|
+
border-radius: var(--radius-3xl, 1rem);
|
|
880
|
+
background: #101010;
|
|
881
|
+
-webkit-backdrop-filter: blur(4px);
|
|
882
|
+
backdrop-filter: blur(4px);
|
|
883
|
+
border: none;
|
|
884
|
+
cursor: pointer;
|
|
885
|
+
width: fit-content;
|
|
886
|
+
text-align: left;
|
|
887
|
+
}
|
|
888
|
+
.ScAppCardForCopilot_header {
|
|
889
|
+
display: flex;
|
|
890
|
+
flex-direction: row;
|
|
891
|
+
align-items: center;
|
|
892
|
+
justify-content: space-between;
|
|
893
|
+
gap: var(--spacing-md, 0.5rem);
|
|
894
|
+
width: 100%;
|
|
895
|
+
}
|
|
896
|
+
.ScAppCardForCopilot_logo {
|
|
897
|
+
color: var(--alias-text---icons-fullwhite, #ffffff);
|
|
898
|
+
height: 14px;
|
|
899
|
+
}
|
|
900
|
+
.ScAppCardForCopilot_arrow {
|
|
901
|
+
flex-shrink: 0;
|
|
902
|
+
opacity: 0;
|
|
903
|
+
transition: opacity 120ms ease;
|
|
904
|
+
}
|
|
905
|
+
.ScAppCardForCopilot_card:hover .ScAppCardForCopilot_arrow,
|
|
906
|
+
.ScAppCardForCopilot_card:focus-visible .ScAppCardForCopilot_arrow {
|
|
907
|
+
opacity: 1;
|
|
908
|
+
}
|
|
909
|
+
.ScAppCardForCopilot_subText {
|
|
910
|
+
font-family: var(--font-family-font-family-body, "Inter", sans-serif);
|
|
911
|
+
font-size: var(--font-size-font-size-xs, 0.75rem);
|
|
912
|
+
line-height: var(--line-height-line-height-xs, 1.125rem);
|
|
913
|
+
font-weight: 400;
|
|
914
|
+
color: #9e9e9e;
|
|
915
|
+
}
|
|
916
|
+
|
|
872
917
|
/* src/SC-Badges/ScBadges.module.css */
|
|
873
918
|
.ScBadges_scBadges,
|
|
874
919
|
.ScBadges_scBadges * {
|
|
@@ -1200,8 +1245,7 @@
|
|
|
1200
1245
|
overflow: visible;
|
|
1201
1246
|
aspect-ratio: 1;
|
|
1202
1247
|
}
|
|
1203
|
-
.ScRadio_scRadio
|
|
1204
|
-
.ScRadio_scRadio.ScRadio_state-selected .ScRadio_vector {
|
|
1248
|
+
.ScRadio_scRadio .ScRadio_vector {
|
|
1205
1249
|
width: 100%;
|
|
1206
1250
|
height: 100%;
|
|
1207
1251
|
position: absolute;
|
|
@@ -1212,8 +1256,9 @@
|
|
|
1212
1256
|
overflow: visible;
|
|
1213
1257
|
aspect-ratio: 1;
|
|
1214
1258
|
}
|
|
1259
|
+
.ScRadio_scRadio.ScRadio_state-default,
|
|
1215
1260
|
.ScRadio_scRadio.ScRadio_state-selected {
|
|
1216
|
-
aspect-ratio:
|
|
1261
|
+
aspect-ratio: 1;
|
|
1217
1262
|
}
|
|
1218
1263
|
|
|
1219
1264
|
/* src/SC-checkbox/ScCheckbox.module.css */
|
|
@@ -4545,7 +4590,7 @@
|
|
|
4545
4590
|
.ScBriefCard_scBriefCard {
|
|
4546
4591
|
background: var(--alias-surface-base, #101010);
|
|
4547
4592
|
border-radius: calc(var(--radius-3xl, 1rem) - 1px);
|
|
4548
|
-
padding: var(--spacing-5xl, 1.25rem)
|
|
4593
|
+
padding: var(--spacing-5xl, 1.25rem);
|
|
4549
4594
|
display: flex;
|
|
4550
4595
|
flex-direction: column;
|
|
4551
4596
|
gap: var(--spacing-xl, 0.75rem);
|
|
@@ -5788,6 +5833,458 @@
|
|
|
5788
5833
|
background: var(--alias-fill-error-solidhover, #e04444);
|
|
5789
5834
|
}
|
|
5790
5835
|
|
|
5836
|
+
/* src/SC-ThinkingStepIcon/ScThinkingStepIcon.module.css */
|
|
5837
|
+
.ScThinkingStepIcon_scThinkingStepIcon,
|
|
5838
|
+
.ScThinkingStepIcon_scThinkingStepIcon * {
|
|
5839
|
+
box-sizing: border-box;
|
|
5840
|
+
}
|
|
5841
|
+
.ScThinkingStepIcon_scThinkingStepIcon {
|
|
5842
|
+
display: inline-flex;
|
|
5843
|
+
align-items: center;
|
|
5844
|
+
justify-content: center;
|
|
5845
|
+
flex-shrink: 0;
|
|
5846
|
+
position: relative;
|
|
5847
|
+
line-height: 0;
|
|
5848
|
+
}
|
|
5849
|
+
.ScThinkingStepIcon_glyph {
|
|
5850
|
+
display: block;
|
|
5851
|
+
overflow: visible;
|
|
5852
|
+
}
|
|
5853
|
+
.ScThinkingStepIcon_stroke {
|
|
5854
|
+
fill: none;
|
|
5855
|
+
}
|
|
5856
|
+
.ScThinkingStepIcon_scThinkingStepIcon.ScThinkingStepIcon_state-default .ScThinkingStepIcon_stroke {
|
|
5857
|
+
stroke: var(--alias-border-divider, #242424);
|
|
5858
|
+
}
|
|
5859
|
+
.ScThinkingStepIcon_scThinkingStepIcon.ScThinkingStepIcon_state-working .ScThinkingStepIcon_stroke {
|
|
5860
|
+
stroke: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
5861
|
+
}
|
|
5862
|
+
.ScThinkingStepIcon_scThinkingStepIcon.ScThinkingStepIcon_state-completed .ScThinkingStepIcon_stroke {
|
|
5863
|
+
stroke: var(--alias-text-and-icons-success, #00b96b);
|
|
5864
|
+
}
|
|
5865
|
+
.ScThinkingStepIcon_scThinkingStepIcon.ScThinkingStepIcon_state-error .ScThinkingStepIcon_stroke {
|
|
5866
|
+
stroke: var(--alias-text-and-icons-error, #d11a1a);
|
|
5867
|
+
}
|
|
5868
|
+
.ScThinkingStepIcon_spinner {
|
|
5869
|
+
transform-box: fill-box;
|
|
5870
|
+
transform-origin: center;
|
|
5871
|
+
animation: ScThinkingStepIcon_scThinkingStepIconSpin 1s linear infinite;
|
|
5872
|
+
}
|
|
5873
|
+
@keyframes ScThinkingStepIcon_scThinkingStepIconSpin {
|
|
5874
|
+
from {
|
|
5875
|
+
transform: rotate(0deg);
|
|
5876
|
+
}
|
|
5877
|
+
to {
|
|
5878
|
+
transform: rotate(360deg);
|
|
5879
|
+
}
|
|
5880
|
+
}
|
|
5881
|
+
@media (prefers-reduced-motion: reduce) {
|
|
5882
|
+
.ScThinkingStepIcon_spinner {
|
|
5883
|
+
animation: none;
|
|
5884
|
+
}
|
|
5885
|
+
}
|
|
5886
|
+
|
|
5887
|
+
/* src/SC-InChatList/ScInChatList.module.css */
|
|
5888
|
+
.ScInChatList_scInChatList,
|
|
5889
|
+
.ScInChatList_scInChatList * {
|
|
5890
|
+
box-sizing: border-box;
|
|
5891
|
+
}
|
|
5892
|
+
.ScInChatList_scInChatList {
|
|
5893
|
+
display: flex;
|
|
5894
|
+
flex-direction: row;
|
|
5895
|
+
align-items: flex-start;
|
|
5896
|
+
gap: var(--spacing-md, 8px);
|
|
5897
|
+
max-width: 600px;
|
|
5898
|
+
width: 100%;
|
|
5899
|
+
position: relative;
|
|
5900
|
+
}
|
|
5901
|
+
.ScInChatList_indicatorWrapper {
|
|
5902
|
+
display: flex;
|
|
5903
|
+
flex-direction: row;
|
|
5904
|
+
align-items: center;
|
|
5905
|
+
justify-content: flex-start;
|
|
5906
|
+
width: 20px;
|
|
5907
|
+
height: 26px;
|
|
5908
|
+
padding: var(--spacing-none, 0) 2px;
|
|
5909
|
+
flex-shrink: 0;
|
|
5910
|
+
position: relative;
|
|
5911
|
+
}
|
|
5912
|
+
.ScInChatList_content {
|
|
5913
|
+
flex: 1 0 0;
|
|
5914
|
+
min-width: 0;
|
|
5915
|
+
display: flex;
|
|
5916
|
+
flex-direction: column;
|
|
5917
|
+
gap: var(--spacing-md, 8px);
|
|
5918
|
+
position: relative;
|
|
5919
|
+
}
|
|
5920
|
+
.ScInChatList_headerArea {
|
|
5921
|
+
display: flex;
|
|
5922
|
+
flex-direction: column;
|
|
5923
|
+
width: 100%;
|
|
5924
|
+
}
|
|
5925
|
+
.ScInChatList_stepCount {
|
|
5926
|
+
font-family: "Inter", sans-serif;
|
|
5927
|
+
font-weight: 400;
|
|
5928
|
+
font-size: 12px;
|
|
5929
|
+
line-height: 18px;
|
|
5930
|
+
letter-spacing: 0;
|
|
5931
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5932
|
+
margin: 0;
|
|
5933
|
+
padding: var(--spacing-xs, 4px) var(--spacing-none, 0) var(--spacing-none, 0) var(--spacing-none, 0);
|
|
5934
|
+
}
|
|
5935
|
+
.ScInChatList_titleRow {
|
|
5936
|
+
display: flex;
|
|
5937
|
+
flex-direction: row;
|
|
5938
|
+
align-items: center;
|
|
5939
|
+
gap: var(--spacing-md, 8px);
|
|
5940
|
+
padding: var(--spacing-xs, 4px) var(--spacing-none, 0);
|
|
5941
|
+
width: 100%;
|
|
5942
|
+
}
|
|
5943
|
+
.ScInChatList_titleRowClickable {
|
|
5944
|
+
cursor: pointer;
|
|
5945
|
+
}
|
|
5946
|
+
.ScInChatList_titleRowStatic {
|
|
5947
|
+
cursor: default;
|
|
5948
|
+
}
|
|
5949
|
+
.ScInChatList_title {
|
|
5950
|
+
font-family: "Inter", sans-serif;
|
|
5951
|
+
font-weight: 400;
|
|
5952
|
+
font-size: 12px;
|
|
5953
|
+
line-height: 18px;
|
|
5954
|
+
letter-spacing: 0;
|
|
5955
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5956
|
+
margin: 0;
|
|
5957
|
+
max-width: 560px;
|
|
5958
|
+
white-space: nowrap;
|
|
5959
|
+
overflow: hidden;
|
|
5960
|
+
text-overflow: ellipsis;
|
|
5961
|
+
}
|
|
5962
|
+
.ScInChatList_chevronWrapper {
|
|
5963
|
+
display: flex;
|
|
5964
|
+
flex-direction: row;
|
|
5965
|
+
align-items: center;
|
|
5966
|
+
height: 18px;
|
|
5967
|
+
flex-shrink: 0;
|
|
5968
|
+
}
|
|
5969
|
+
.ScInChatList_chevronIcon {
|
|
5970
|
+
width: 12px;
|
|
5971
|
+
height: 12px;
|
|
5972
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5973
|
+
flex-shrink: 0;
|
|
5974
|
+
}
|
|
5975
|
+
.ScInChatList_descriptionRow {
|
|
5976
|
+
display: flex;
|
|
5977
|
+
flex-direction: row;
|
|
5978
|
+
align-items: center;
|
|
5979
|
+
justify-content: center;
|
|
5980
|
+
gap: var(--spacing-xs, 4px);
|
|
5981
|
+
width: 100%;
|
|
5982
|
+
}
|
|
5983
|
+
.ScInChatList_descriptionIcon {
|
|
5984
|
+
width: 20px;
|
|
5985
|
+
height: 20px;
|
|
5986
|
+
flex-shrink: 0;
|
|
5987
|
+
}
|
|
5988
|
+
.ScInChatList_descriptionDot {
|
|
5989
|
+
width: 20px;
|
|
5990
|
+
height: 20px;
|
|
5991
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
5992
|
+
opacity: 0.5;
|
|
5993
|
+
}
|
|
5994
|
+
.ScInChatList_descriptionText {
|
|
5995
|
+
font-family: "Inter", sans-serif;
|
|
5996
|
+
font-weight: 400;
|
|
5997
|
+
font-size: 12px;
|
|
5998
|
+
line-height: 18px;
|
|
5999
|
+
letter-spacing: 0;
|
|
6000
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6001
|
+
margin: 0;
|
|
6002
|
+
flex: 1 0 0;
|
|
6003
|
+
min-width: 0;
|
|
6004
|
+
}
|
|
6005
|
+
.ScInChatList_toolPill {
|
|
6006
|
+
display: inline-flex;
|
|
6007
|
+
flex-direction: row;
|
|
6008
|
+
align-items: center;
|
|
6009
|
+
justify-content: center;
|
|
6010
|
+
padding: var(--spacing-xs, 4px) var(--spacing-md, 8px);
|
|
6011
|
+
background-color: var(--alias-fill-neutral-neutraltohover, #1f1f1f);
|
|
6012
|
+
border-radius: var(--radius-md, 8px);
|
|
6013
|
+
align-self: flex-start;
|
|
6014
|
+
flex-shrink: 0;
|
|
6015
|
+
}
|
|
6016
|
+
.ScInChatList_toolText {
|
|
6017
|
+
font-family: "Inter", sans-serif;
|
|
6018
|
+
font-weight: 400;
|
|
6019
|
+
font-size: 12px;
|
|
6020
|
+
line-height: 18px;
|
|
6021
|
+
letter-spacing: 0;
|
|
6022
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6023
|
+
margin: 0;
|
|
6024
|
+
white-space: nowrap;
|
|
6025
|
+
}
|
|
6026
|
+
|
|
6027
|
+
/* src/SC-SubAgent/ScSubAgent.module.css */
|
|
6028
|
+
.ScSubAgent_scSubAgent,
|
|
6029
|
+
.ScSubAgent_scSubAgent * {
|
|
6030
|
+
box-sizing: border-box;
|
|
6031
|
+
}
|
|
6032
|
+
.ScSubAgent_scSubAgent {
|
|
6033
|
+
display: inline-flex;
|
|
6034
|
+
flex-direction: row;
|
|
6035
|
+
align-items: center;
|
|
6036
|
+
justify-content: center;
|
|
6037
|
+
width: fit-content;
|
|
6038
|
+
padding: var(--spacing-xs, 0.25rem) var(--spacing-md, 0.5rem);
|
|
6039
|
+
background: var(--alias-fill-neutral-neutraltohover, #1f1f1f);
|
|
6040
|
+
border-radius: var(--radius-md, 0.5rem);
|
|
6041
|
+
position: relative;
|
|
6042
|
+
}
|
|
6043
|
+
.ScSubAgent_label {
|
|
6044
|
+
margin: 0;
|
|
6045
|
+
flex-shrink: 0;
|
|
6046
|
+
position: relative;
|
|
6047
|
+
font-family: Inter, sans-serif;
|
|
6048
|
+
font-weight: 400;
|
|
6049
|
+
font-size: 0.75rem;
|
|
6050
|
+
line-height: 1.125rem;
|
|
6051
|
+
letter-spacing: 0;
|
|
6052
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6053
|
+
white-space: nowrap;
|
|
6054
|
+
}
|
|
6055
|
+
|
|
6056
|
+
/* src/SC-InChatMessage/ScInChatMessage.module.css */
|
|
6057
|
+
.ScInChatMessage_scInChatMessage,
|
|
6058
|
+
.ScInChatMessage_scInChatMessage * {
|
|
6059
|
+
box-sizing: border-box;
|
|
6060
|
+
}
|
|
6061
|
+
.ScInChatMessage_scInChatMessage {
|
|
6062
|
+
display: flex;
|
|
6063
|
+
flex-direction: column;
|
|
6064
|
+
align-items: flex-start;
|
|
6065
|
+
justify-content: center;
|
|
6066
|
+
max-width: 600px;
|
|
6067
|
+
padding: var(--spacing-xl, 12px) var(--spacing-3xl, 16px);
|
|
6068
|
+
position: relative;
|
|
6069
|
+
}
|
|
6070
|
+
.ScInChatMessage_text {
|
|
6071
|
+
margin: 0;
|
|
6072
|
+
width: 100%;
|
|
6073
|
+
position: relative;
|
|
6074
|
+
flex-shrink: 0;
|
|
6075
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6076
|
+
font-family: "Inter", sans-serif;
|
|
6077
|
+
font-weight: 400;
|
|
6078
|
+
font-size: 16px;
|
|
6079
|
+
line-height: 24px;
|
|
6080
|
+
letter-spacing: 0;
|
|
6081
|
+
word-break: break-word;
|
|
6082
|
+
}
|
|
6083
|
+
.ScInChatMessage_scInChatMessage.ScInChatMessage_type-input {
|
|
6084
|
+
background: var(--alias-surface-subtleraised, #1f1f1f);
|
|
6085
|
+
border-top-left-radius: var(--radius-4xl, 18px);
|
|
6086
|
+
border-top-right-radius: var(--radius-4xl, 18px);
|
|
6087
|
+
border-bottom-left-radius: var(--radius-4xl, 18px);
|
|
6088
|
+
border-bottom-right-radius: var(--radius-xs, 4px);
|
|
6089
|
+
}
|
|
6090
|
+
.ScInChatMessage_scInChatMessage.ScInChatMessage_type-output {
|
|
6091
|
+
background: var(--alias-surface-base, #101010);
|
|
6092
|
+
border: 1px solid var(--alias-border-divider, #242424);
|
|
6093
|
+
border-radius: var(--radius-4xl, 18px);
|
|
6094
|
+
}
|
|
6095
|
+
|
|
6096
|
+
/* src/SC-Selection/ScSelection.module.css */
|
|
6097
|
+
.ScSelection_scSelection,
|
|
6098
|
+
.ScSelection_scSelection * {
|
|
6099
|
+
box-sizing: border-box;
|
|
6100
|
+
}
|
|
6101
|
+
.ScSelection_scSelection {
|
|
6102
|
+
display: flex;
|
|
6103
|
+
align-items: flex-start;
|
|
6104
|
+
gap: var(--spacing-3xl, 16px);
|
|
6105
|
+
padding: var(--spacing-xl, 12px);
|
|
6106
|
+
border-radius: var(--radius-xl, 12px);
|
|
6107
|
+
position: relative;
|
|
6108
|
+
width: 100%;
|
|
6109
|
+
cursor: pointer;
|
|
6110
|
+
}
|
|
6111
|
+
.ScSelection_scRadioInstance {
|
|
6112
|
+
width: 1.25rem;
|
|
6113
|
+
height: 1.25rem;
|
|
6114
|
+
flex-shrink: 0;
|
|
6115
|
+
position: relative;
|
|
6116
|
+
}
|
|
6117
|
+
.ScSelection_scRadioInstance svg {
|
|
6118
|
+
width: 100%;
|
|
6119
|
+
height: 100%;
|
|
6120
|
+
display: block;
|
|
6121
|
+
}
|
|
6122
|
+
.ScSelection_wrapper {
|
|
6123
|
+
display: flex;
|
|
6124
|
+
flex: 1 0 0;
|
|
6125
|
+
flex-direction: column;
|
|
6126
|
+
align-items: stretch;
|
|
6127
|
+
justify-content: center;
|
|
6128
|
+
gap: var(--spacing-xs, 4px);
|
|
6129
|
+
min-width: 0;
|
|
6130
|
+
position: relative;
|
|
6131
|
+
word-break: break-word;
|
|
6132
|
+
}
|
|
6133
|
+
.ScSelection_title,
|
|
6134
|
+
.ScSelection_description {
|
|
6135
|
+
margin: 0;
|
|
6136
|
+
width: 100%;
|
|
6137
|
+
font-family: "Inter", sans-serif;
|
|
6138
|
+
font-weight: 400;
|
|
6139
|
+
font-size: 0.875rem;
|
|
6140
|
+
line-height: 1.25rem;
|
|
6141
|
+
letter-spacing: 0;
|
|
6142
|
+
position: relative;
|
|
6143
|
+
}
|
|
6144
|
+
.ScSelection_title {
|
|
6145
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6146
|
+
}
|
|
6147
|
+
.ScSelection_description {
|
|
6148
|
+
color: var(--alias-text-and-icons-muted, #7a7a7a);
|
|
6149
|
+
}
|
|
6150
|
+
.ScSelection_scSelection.ScSelection_state-default {
|
|
6151
|
+
background: transparent;
|
|
6152
|
+
}
|
|
6153
|
+
.ScSelection_scSelection.ScSelection_state-active {
|
|
6154
|
+
background: var(--alias-fill-neutral-neutral, #1a1a1a);
|
|
6155
|
+
}
|
|
6156
|
+
|
|
6157
|
+
/* src/SC-SelectionList/ScSelectionList.module.css */
|
|
6158
|
+
.ScSelectionList_scSelectionList,
|
|
6159
|
+
.ScSelectionList_scSelectionList * {
|
|
6160
|
+
box-sizing: border-box;
|
|
6161
|
+
}
|
|
6162
|
+
.ScSelectionList_scSelectionList {
|
|
6163
|
+
display: flex;
|
|
6164
|
+
align-items: center;
|
|
6165
|
+
gap: var(--spacing-md, 8px);
|
|
6166
|
+
width: 100%;
|
|
6167
|
+
max-width: 600px;
|
|
6168
|
+
padding: var(--spacing-none, 0);
|
|
6169
|
+
position: relative;
|
|
6170
|
+
font-family: "Inter", sans-serif;
|
|
6171
|
+
}
|
|
6172
|
+
.ScSelectionList_toggles {
|
|
6173
|
+
display: flex;
|
|
6174
|
+
align-items: center;
|
|
6175
|
+
gap: var(--spacing-md, 8px);
|
|
6176
|
+
padding: 0 2px;
|
|
6177
|
+
flex-shrink: 0;
|
|
6178
|
+
}
|
|
6179
|
+
.ScSelectionList_checkToggle,
|
|
6180
|
+
.ScSelectionList_rejectToggle {
|
|
6181
|
+
display: flex;
|
|
6182
|
+
align-items: center;
|
|
6183
|
+
justify-content: center;
|
|
6184
|
+
box-sizing: border-box;
|
|
6185
|
+
width: 20px;
|
|
6186
|
+
height: 20px;
|
|
6187
|
+
padding: 0;
|
|
6188
|
+
border-radius: 50%;
|
|
6189
|
+
border: 0.5px solid var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
6190
|
+
background: transparent;
|
|
6191
|
+
cursor: pointer;
|
|
6192
|
+
flex-shrink: 0;
|
|
6193
|
+
transition: background-color 0.15s ease, opacity 0.15s ease;
|
|
6194
|
+
}
|
|
6195
|
+
.ScSelectionList_checkToggle:disabled,
|
|
6196
|
+
.ScSelectionList_rejectToggle:disabled {
|
|
6197
|
+
cursor: default;
|
|
6198
|
+
}
|
|
6199
|
+
.ScSelectionList_checkIcon,
|
|
6200
|
+
.ScSelectionList_closeIcon {
|
|
6201
|
+
display: block;
|
|
6202
|
+
flex-shrink: 0;
|
|
6203
|
+
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
6204
|
+
}
|
|
6205
|
+
.ScSelectionList_content {
|
|
6206
|
+
flex: 1 0 0;
|
|
6207
|
+
min-width: 1px;
|
|
6208
|
+
display: flex;
|
|
6209
|
+
flex-direction: column;
|
|
6210
|
+
align-items: flex-start;
|
|
6211
|
+
justify-content: center;
|
|
6212
|
+
position: relative;
|
|
6213
|
+
}
|
|
6214
|
+
.ScSelectionList_row {
|
|
6215
|
+
display: flex;
|
|
6216
|
+
align-items: center;
|
|
6217
|
+
gap: var(--spacing-md, 8px);
|
|
6218
|
+
padding: var(--spacing-xs, 4px) var(--spacing-none, 0);
|
|
6219
|
+
width: 100%;
|
|
6220
|
+
}
|
|
6221
|
+
.ScSelectionList_label {
|
|
6222
|
+
font-size: 12px;
|
|
6223
|
+
line-height: 18px;
|
|
6224
|
+
font-weight: 400;
|
|
6225
|
+
letter-spacing: 0;
|
|
6226
|
+
color: var(--alias-text-and-icons-tertiary, #9e9e9e);
|
|
6227
|
+
white-space: nowrap;
|
|
6228
|
+
word-break: break-word;
|
|
6229
|
+
max-width: 560px;
|
|
6230
|
+
flex-shrink: 0;
|
|
6231
|
+
}
|
|
6232
|
+
.ScSelectionList_valuesPill {
|
|
6233
|
+
display: inline-flex;
|
|
6234
|
+
align-items: center;
|
|
6235
|
+
justify-content: center;
|
|
6236
|
+
padding: var(--spacing-xs, 4px) var(--spacing-md, 8px);
|
|
6237
|
+
border-radius: var(--radius-md, 8px);
|
|
6238
|
+
background: var(--alias-surface-basesubtle, #151515);
|
|
6239
|
+
flex-shrink: 0;
|
|
6240
|
+
}
|
|
6241
|
+
.ScSelectionList_valuesText {
|
|
6242
|
+
font-size: 12px;
|
|
6243
|
+
line-height: 18px;
|
|
6244
|
+
font-weight: 400;
|
|
6245
|
+
letter-spacing: 0;
|
|
6246
|
+
color: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6247
|
+
white-space: nowrap;
|
|
6248
|
+
word-break: break-word;
|
|
6249
|
+
}
|
|
6250
|
+
.ScSelectionList_scSelectionList.ScSelectionList_state-default .ScSelectionList_checkIcon,
|
|
6251
|
+
.ScSelectionList_scSelectionList.ScSelectionList_state-default .ScSelectionList_closeIcon {
|
|
6252
|
+
color: var(--alias-text-and-icons-disabled, #5c5c5c);
|
|
6253
|
+
}
|
|
6254
|
+
.ScSelectionList_scSelectionList.ScSelectionList_state-approved .ScSelectionList_checkToggle {
|
|
6255
|
+
border-color: transparent;
|
|
6256
|
+
background: var(--alias-text-and-icons-primary, #f5f5f5);
|
|
6257
|
+
}
|
|
6258
|
+
.ScSelectionList_scSelectionList.ScSelectionList_state-approved .ScSelectionList_checkIcon {
|
|
6259
|
+
color: var(--alias-text-and-icons-inverse, #101010);
|
|
6260
|
+
}
|
|
6261
|
+
.ScSelectionList_scSelectionList.ScSelectionList_state-approved .ScSelectionList_rejectToggle {
|
|
6262
|
+
opacity: 0.3;
|
|
6263
|
+
}
|
|
6264
|
+
.ScSelectionList_scSelectionList.ScSelectionList_state-rejected .ScSelectionList_rejectToggle {
|
|
6265
|
+
border-color: transparent;
|
|
6266
|
+
background: var(--alias-fill-error-solidhover, #e04444);
|
|
6267
|
+
}
|
|
6268
|
+
.ScSelectionList_scSelectionList.ScSelectionList_state-rejected .ScSelectionList_closeIcon {
|
|
6269
|
+
color: var(--alias-text-and-icons-inverse, #101010);
|
|
6270
|
+
}
|
|
6271
|
+
.ScSelectionList_scSelectionList.ScSelectionList_state-rejected .ScSelectionList_checkToggle {
|
|
6272
|
+
opacity: 0.3;
|
|
6273
|
+
}
|
|
6274
|
+
.ScSelectionList_scSelectionList.ScSelectionList_state-rejected .ScSelectionList_content {
|
|
6275
|
+
opacity: 0.5;
|
|
6276
|
+
}
|
|
6277
|
+
.ScSelectionList_scSelectionList.ScSelectionList_state-rejected .ScSelectionList_label,
|
|
6278
|
+
.ScSelectionList_scSelectionList.ScSelectionList_state-rejected .ScSelectionList_valuesText {
|
|
6279
|
+
text-decoration: line-through;
|
|
6280
|
+
text-decoration-skip-ink: none;
|
|
6281
|
+
text-underline-position: from-font;
|
|
6282
|
+
}
|
|
6283
|
+
.ScSelectionList_scSelectionList.ScSelectionList_disabled {
|
|
6284
|
+
opacity: 0.5;
|
|
6285
|
+
pointer-events: none;
|
|
6286
|
+
}
|
|
6287
|
+
|
|
5791
6288
|
/* src/SC-Role-Mobile/ScRoleMobile.module.css */
|
|
5792
6289
|
.ScRoleMobile_scRoleMobile {
|
|
5793
6290
|
display: flex;
|