@streamoid/ui 0.6.13 → 0.6.15

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 CHANGED
@@ -1244,6 +1244,7 @@
1244
1244
  position: relative;
1245
1245
  overflow: visible;
1246
1246
  aspect-ratio: 1;
1247
+ cursor: pointer;
1247
1248
  }
1248
1249
  .ScRadio_scRadio .ScRadio_vector {
1249
1250
  width: 100%;
@@ -1304,6 +1305,7 @@
1304
1305
  position: relative;
1305
1306
  overflow: hidden;
1306
1307
  cursor: pointer;
1308
+ transition: transform 0.2s ease, background 0.2s ease;
1307
1309
  }
1308
1310
  .ScButton_container {
1309
1311
  display: flex;
@@ -1452,6 +1454,32 @@
1452
1454
  .ScButton_scButton.ScButton_state-hover.ScButton_variant-primary {
1453
1455
  background: var(--alias-fill-base-basehover, #bfbfbf);
1454
1456
  }
1457
+ .ScButton_scButton.ScButton_variant-mono {
1458
+ background: var(--alias-surface-inverse, #f5f5f5);
1459
+ }
1460
+ .ScButton_scButton.ScButton_variant-mono .ScButton_label,
1461
+ .ScButton_scButton.ScButton_variant-mono .ScButton_container {
1462
+ color: var(--alias-text-and-icons-inverse, #101010);
1463
+ }
1464
+ .ScButton_scButton.ScButton_variant-mono:hover,
1465
+ .ScButton_scButton.ScButton_state-hover.ScButton_variant-mono {
1466
+ background: var(--alias-surface-inverse, #f5f5f5);
1467
+ transform: scale(1.03);
1468
+ }
1469
+ .ScButton_spinner {
1470
+ display: inline-block;
1471
+ width: 1.25rem;
1472
+ height: 1.25rem;
1473
+ border: 0.15rem solid currentColor;
1474
+ border-top-color: transparent;
1475
+ border-radius: 50%;
1476
+ animation: ScButton_sc-btn-spin 0.8s linear infinite;
1477
+ }
1478
+ @keyframes ScButton_sc-btn-spin {
1479
+ to {
1480
+ transform: rotate(360deg);
1481
+ }
1482
+ }
1455
1483
  .ScButton_scButton.ScButton_size-sm .ScButton_siconHomeInstance {
1456
1484
  width: 1rem !important;
1457
1485
  height: 1rem !important;
@@ -3146,6 +3174,75 @@
3146
3174
  .ScTextField_scTextField.ScTextField_label-group-none .ScTextField_labelContainer {
3147
3175
  display: none;
3148
3176
  }
3177
+ .ScTextField_required {
3178
+ color: var(--alias-text-and-icons-error, #d11a1a);
3179
+ margin-left: 0.125rem;
3180
+ }
3181
+ .ScTextField_desc {
3182
+ color: var(--alias-text-and-icons-muted, #7a7a7a);
3183
+ text-align: left;
3184
+ font-family: var(--text-text-xs-regular-font-family, "Inter-Regular", sans-serif);
3185
+ font-size: var(--text-text-xs-regular-font-size, 0.75rem);
3186
+ line-height: var(--text-text-xs-regular-line-height, 1.125rem);
3187
+ font-weight: var(--text-text-xs-regular-font-weight, 400);
3188
+ align-self: stretch;
3189
+ }
3190
+ .ScTextField_scTextField.ScTextField_tall .ScTextField_inputContainer {
3191
+ height: auto;
3192
+ min-height: 5rem;
3193
+ align-items: flex-start;
3194
+ }
3195
+
3196
+ /* src/SC-InfoPopup/ScInfoPopup.module.css */
3197
+ .ScInfoPopup_scInfoPopup,
3198
+ .ScInfoPopup_scInfoPopup * {
3199
+ box-sizing: border-box;
3200
+ }
3201
+ .ScInfoPopup_scInfoPopup {
3202
+ position: relative;
3203
+ display: inline-block;
3204
+ }
3205
+ .ScInfoPopup_infoIcon {
3206
+ display: block;
3207
+ cursor: pointer;
3208
+ margin: 0 12px;
3209
+ width: 18px;
3210
+ height: 18px;
3211
+ }
3212
+ .ScInfoPopup_content {
3213
+ position: absolute;
3214
+ top: 18px;
3215
+ right: 0;
3216
+ transform: translateX(50%);
3217
+ width: max-content;
3218
+ max-width: 300px;
3219
+ background-color: var(--alias-surface-base, #101010);
3220
+ border-radius: 6px;
3221
+ padding: 8px;
3222
+ z-index: 2;
3223
+ box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
3224
+ }
3225
+ .ScInfoPopup_closeIconContainer {
3226
+ position: relative;
3227
+ }
3228
+ .ScInfoPopup_closeIcon {
3229
+ position: absolute;
3230
+ right: 0;
3231
+ width: 18px;
3232
+ height: 18px;
3233
+ cursor: pointer;
3234
+ margin: 0;
3235
+ }
3236
+ .ScInfoPopup_contentText {
3237
+ display: block;
3238
+ font-size: 12px;
3239
+ margin-top: 0px;
3240
+ margin-right: 18px;
3241
+ max-height: 100px;
3242
+ overflow-y: auto;
3243
+ line-height: 1.4;
3244
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
3245
+ }
3149
3246
 
3150
3247
  /* src/SC-Role/ScRole.module.css */
3151
3248
  .ScRole_scRole,
@@ -5859,55 +5956,120 @@
5859
5956
  opacity: 1;
5860
5957
  }
5861
5958
 
5862
- /* src/SC-InfoPopup/ScInfoPopup.module.css */
5863
- .ScInfoPopup_scInfoPopup,
5864
- .ScInfoPopup_scInfoPopup * {
5959
+ /* src/SC-Drawer/ScDrawer.module.css */
5960
+ .ScDrawer_drawer,
5961
+ .ScDrawer_drawer * {
5865
5962
  box-sizing: border-box;
5866
5963
  }
5867
- .ScInfoPopup_scInfoPopup {
5868
- position: relative;
5869
- display: inline-block;
5964
+ .ScDrawer_drawer {
5965
+ width: 512px;
5966
+ height: 100vh;
5967
+ position: fixed;
5968
+ top: 0;
5969
+ background: var(--alias-surface-subtleraised, #1a1a1a);
5970
+ overflow: hidden;
5971
+ z-index: 10;
5870
5972
  }
5871
- .ScInfoPopup_infoIcon {
5872
- display: block;
5973
+ .ScDrawer_side-right {
5974
+ right: 0;
5975
+ border-radius: 24px 0 0 24px;
5976
+ box-shadow: -8px 0 56px 8px rgba(0, 0, 0, 0.16);
5977
+ }
5978
+ .ScDrawer_side-left {
5979
+ left: 0;
5980
+ border-radius: 0 24px 24px 0;
5981
+ box-shadow: 8px 0 56px 8px rgba(0, 0, 0, 0.16);
5982
+ }
5983
+ .ScDrawer_content {
5984
+ padding: 56px 96px 0 96px;
5985
+ height: 100%;
5986
+ display: flex;
5987
+ flex-direction: column;
5988
+ overflow: hidden;
5989
+ }
5990
+ .ScDrawer_backdrop {
5991
+ position: fixed;
5992
+ inset: 0;
5993
+ background: rgba(0, 0, 0, 0.5);
5994
+ z-index: 9;
5995
+ }
5996
+
5997
+ /* src/SC-Tabs/ScTabs.module.css */
5998
+ .ScTabs_tabs,
5999
+ .ScTabs_tabs * {
6000
+ box-sizing: border-box;
6001
+ }
6002
+ .ScTabs_tabs {
6003
+ width: 100%;
6004
+ display: flex;
6005
+ align-items: center;
6006
+ gap: 12px;
6007
+ }
6008
+ .ScTabs_tab {
6009
+ padding: 6px 12px;
5873
6010
  cursor: pointer;
5874
- margin: 0 12px;
5875
- width: 18px;
5876
- height: 18px;
6011
+ text-transform: capitalize;
6012
+ white-space: nowrap;
6013
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6014
+ font-size: 14px;
6015
+ font-weight: 400;
6016
+ line-height: 20px;
6017
+ border-radius: 100px;
6018
+ border: 1px solid var(--alias-surface-canvas, #0f0f0f);
5877
6019
  }
5878
- .ScInfoPopup_content {
5879
- position: absolute;
5880
- top: 18px;
5881
- right: 0;
5882
- transform: translateX(50%);
6020
+ .ScTabs_active {
6021
+ background: var(--alias-surface-canvas, #0f0f0f);
6022
+ }
6023
+ .ScTabs_autoWidth {
5883
6024
  width: max-content;
5884
- max-width: 300px;
5885
- background-color: var(--alias-surface-base, #101010);
5886
- border-radius: 6px;
5887
- padding: 8px;
5888
- z-index: 2;
5889
- box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
5890
6025
  }
5891
- .ScInfoPopup_closeIconContainer {
5892
- position: relative;
6026
+ .ScTabs_allowWrap {
6027
+ flex-wrap: wrap;
6028
+ row-gap: 8px;
5893
6029
  }
5894
- .ScInfoPopup_closeIcon {
5895
- position: absolute;
5896
- right: 0;
5897
- width: 18px;
5898
- height: 18px;
6030
+ .ScTabs_compact {
6031
+ gap: 8px;
6032
+ }
6033
+ .ScTabs_compact .ScTabs_tab {
6034
+ padding: 4px 10px;
6035
+ font-size: 13px;
6036
+ line-height: 18px;
6037
+ }
6038
+
6039
+ /* src/SC-Counter/ScCounter.module.css */
6040
+ .ScCounter_counter,
6041
+ .ScCounter_counter * {
6042
+ box-sizing: border-box;
6043
+ }
6044
+ .ScCounter_counter {
6045
+ display: flex;
6046
+ justify-content: space-around;
6047
+ align-items: center;
6048
+ background: var(--alias-fill-neutral-neutralplus, #151515);
6049
+ border: 1px solid var(--alias-surface-infohover, #2a2a2a);
6050
+ border-radius: 16px;
6051
+ padding: 12px 16px;
6052
+ width: 100%;
6053
+ }
6054
+ .ScCounter_step {
5899
6055
  cursor: pointer;
5900
- margin: 0;
6056
+ display: flex;
6057
+ align-items: center;
5901
6058
  }
5902
- .ScInfoPopup_contentText {
5903
- display: block;
5904
- font-size: 12px;
5905
- margin-top: 0px;
5906
- margin-right: 18px;
5907
- max-height: 100px;
5908
- overflow-y: auto;
5909
- line-height: 1.4;
5910
- color: var(--alias-text-and-icons-primary, #f5f5f5);
6059
+ .ScCounter_value {
6060
+ cursor: pointer;
6061
+ }
6062
+ .ScCounter_inputContainer {
6063
+ display: flex;
6064
+ justify-content: center;
6065
+ align-items: center;
6066
+ }
6067
+ .ScCounter_inputContainer input {
6068
+ border: none;
6069
+ outline: none;
6070
+ width: 30%;
6071
+ background-color: var(--alias-fill-neutral-neutralplus, #151515);
6072
+ color: inherit;
5911
6073
  }
5912
6074
 
5913
6075
  /* src/SC-Pagination/ScPagination.module.css */
@@ -6195,6 +6357,511 @@
6195
6357
  width: 10rem;
6196
6358
  }
6197
6359
 
6360
+ /* src/SC-DefaultCard/ScDefaultCard.module.css */
6361
+ .ScDefaultCard_scDefaultCard,
6362
+ .ScDefaultCard_scDefaultCard * {
6363
+ box-sizing: border-box;
6364
+ }
6365
+ .ScDefaultCard_scDefaultCard {
6366
+ background: var(--alias-surface-base, #101010);
6367
+ border: 0.03125rem solid var(--alias-border-subtle, #242424);
6368
+ border-radius: var(--radius-4xl, 1.125rem);
6369
+ display: flex;
6370
+ flex-direction: column;
6371
+ align-items: flex-start;
6372
+ width: 100%;
6373
+ position: relative;
6374
+ cursor: pointer;
6375
+ transition: background-color 120ms ease, border-color 120ms ease;
6376
+ }
6377
+ .ScDefaultCard_scDefaultCard:hover,
6378
+ .ScDefaultCard_scDefaultCard.ScDefaultCard_state-hover {
6379
+ background: var(--alias-surface-basesubtle, #151515);
6380
+ border-color: var(--alias-border-default, #3e3e3e);
6381
+ }
6382
+ .ScDefaultCard_content {
6383
+ display: flex;
6384
+ flex-direction: column;
6385
+ align-items: center;
6386
+ justify-content: center;
6387
+ gap: var(--spacing-md, 0.5rem);
6388
+ padding: var(--spacing-5xl, 1.25rem);
6389
+ width: 100%;
6390
+ text-align: center;
6391
+ }
6392
+ .ScDefaultCard_title {
6393
+ margin: 0;
6394
+ width: 100%;
6395
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6396
+ font-family: var(--text-text-md-regular-font-family, "Inter-Regular", sans-serif);
6397
+ font-size: var(--text-text-md-regular-font-size, 1rem);
6398
+ line-height: var(--text-text-md-regular-line-height, 1.5rem);
6399
+ font-weight: var(--text-text-md-regular-font-weight, 400);
6400
+ word-break: break-word;
6401
+ }
6402
+ .ScDefaultCard_description {
6403
+ margin: 0;
6404
+ width: 100%;
6405
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6406
+ font-family: var(--text-text-xs-regular-font-family, "Inter-Regular", sans-serif);
6407
+ font-size: var(--text-text-xs-regular-font-size, 0.75rem);
6408
+ line-height: var(--text-text-xs-regular-line-height, 1.125rem);
6409
+ font-weight: var(--text-text-xs-regular-font-weight, 400);
6410
+ word-break: break-word;
6411
+ }
6412
+
6413
+ /* src/SC-ValueMappingL1/ScValueMappingL1.module.css */
6414
+ .ScValueMappingL1_scValueMappingL1,
6415
+ .ScValueMappingL1_scValueMappingL1 * {
6416
+ box-sizing: border-box;
6417
+ }
6418
+ .ScValueMappingL1_scValueMappingL1 {
6419
+ background: var(--alias-surface-base, #101010);
6420
+ border: 0.03125rem solid var(--alias-border-subtle, #242424);
6421
+ border-radius: var(--radius-3xl, 1rem);
6422
+ display: flex;
6423
+ align-items: center;
6424
+ width: 100%;
6425
+ position: relative;
6426
+ cursor: pointer;
6427
+ transition: background-color 120ms ease, border-color 120ms ease;
6428
+ }
6429
+ .ScValueMappingL1_scValueMappingL1:hover,
6430
+ .ScValueMappingL1_scValueMappingL1.ScValueMappingL1_state-hover {
6431
+ background: var(--alias-surface-basesubtle, #151515);
6432
+ border-color: var(--alias-border-default, #3e3e3e);
6433
+ }
6434
+ .ScValueMappingL1_scValueMappingL1.ScValueMappingL1_state-active {
6435
+ background: var(--alias-surface-raisedoverlay, #313131);
6436
+ border-color: var(--alias-border-default, #3e3e3e);
6437
+ }
6438
+ .ScValueMappingL1_scValueMappingL1.ScValueMappingL1_updated {
6439
+ padding-right: var(--spacing-md, 0.5rem);
6440
+ }
6441
+ .ScValueMappingL1_labelWrap {
6442
+ display: flex;
6443
+ flex: 1 0 0;
6444
+ flex-direction: column;
6445
+ align-items: center;
6446
+ justify-content: center;
6447
+ min-width: 0;
6448
+ padding: var(--spacing-xl, 0.75rem);
6449
+ }
6450
+ .ScValueMappingL1_label {
6451
+ width: 100%;
6452
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6453
+ font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
6454
+ font-size: var(--text-text-sm-regular-font-size, 0.875rem);
6455
+ line-height: var(--text-text-sm-regular-line-height, 1.25rem);
6456
+ font-weight: var(--text-text-sm-regular-font-weight, 400);
6457
+ white-space: nowrap;
6458
+ overflow: hidden;
6459
+ text-overflow: ellipsis;
6460
+ }
6461
+ .ScValueMappingL1_dot {
6462
+ display: inline-flex;
6463
+ align-items: center;
6464
+ justify-content: center;
6465
+ width: 1.5rem;
6466
+ height: 1.5rem;
6467
+ flex-shrink: 0;
6468
+ }
6469
+ .ScValueMappingL1_dotInner {
6470
+ width: 0.5rem;
6471
+ height: 0.5rem;
6472
+ border-radius: var(--radius-full, 999px);
6473
+ background: var(--alias-text-and-icons-infocont, #6da5ff);
6474
+ }
6475
+
6476
+ /* src/SC-TaxonomyPill/ScTaxonomyPill.module.css */
6477
+ .ScTaxonomyPill_scTaxonomyPill,
6478
+ .ScTaxonomyPill_scTaxonomyPill * {
6479
+ box-sizing: border-box;
6480
+ }
6481
+ .ScTaxonomyPill_scTaxonomyPill {
6482
+ background: var(--alias-fill-neutral-neutralactive, #313131);
6483
+ border: 0.03125rem solid var(--alias-border-default, #3e3e3e);
6484
+ border-radius: var(--radius-xl, 0.75rem);
6485
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6486
+ display: inline-flex;
6487
+ flex-direction: column;
6488
+ align-items: flex-start;
6489
+ position: relative;
6490
+ cursor: pointer;
6491
+ transition: background-color 120ms ease;
6492
+ }
6493
+ .ScTaxonomyPill_scTaxonomyPill:hover,
6494
+ .ScTaxonomyPill_scTaxonomyPill.ScTaxonomyPill_state-hover {
6495
+ background: var(--alias-fill-neutral-neutralhovertoactive, #2a2a2a);
6496
+ }
6497
+ .ScTaxonomyPill_inner {
6498
+ display: flex;
6499
+ align-items: center;
6500
+ justify-content: center;
6501
+ flex-shrink: 0;
6502
+ }
6503
+ .ScTaxonomyPill_type-pill .ScTaxonomyPill_inner {
6504
+ padding: var(--spacing-md, 0.5rem) var(--spacing-3xl, 1rem);
6505
+ }
6506
+ .ScTaxonomyPill_type-expand .ScTaxonomyPill_inner {
6507
+ gap: 0;
6508
+ padding: var(--spacing-xxs, 0.125rem) var(--spacing-xs, 0.25rem) var(--spacing-xxs, 0.125rem) var(--spacing-md, 0.5rem);
6509
+ }
6510
+ .ScTaxonomyPill_type-collapse .ScTaxonomyPill_inner {
6511
+ padding: var(--spacing-xs, 0.25rem);
6512
+ }
6513
+ .ScTaxonomyPill_label {
6514
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6515
+ font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
6516
+ font-size: var(--text-text-sm-regular-font-size, 0.875rem);
6517
+ line-height: var(--text-text-sm-regular-line-height, 1.25rem);
6518
+ font-weight: var(--text-text-sm-regular-font-weight, 400);
6519
+ white-space: nowrap;
6520
+ text-align: center;
6521
+ }
6522
+ .ScTaxonomyPill_icon {
6523
+ width: 0.75rem !important;
6524
+ height: 0.75rem !important;
6525
+ flex-shrink: 0;
6526
+ color: inherit;
6527
+ }
6528
+
6529
+ /* src/SC-SelectionPill/ScSelectionPill.module.css */
6530
+ .ScSelectionPill_scSelectionPill,
6531
+ .ScSelectionPill_scSelectionPill * {
6532
+ box-sizing: border-box;
6533
+ }
6534
+ .ScSelectionPill_scSelectionPill {
6535
+ display: inline-flex;
6536
+ align-items: center;
6537
+ justify-content: center;
6538
+ padding: var(--spacing-md, 0.5rem) var(--spacing-3xl, 1rem);
6539
+ border-radius: var(--radius-3xl, 1rem);
6540
+ border: 0.03125rem solid var(--alias-border-subtle, #242424);
6541
+ background: var(--alias-fill-neutral-neutralplus, #151515);
6542
+ cursor: pointer;
6543
+ position: relative;
6544
+ font: inherit;
6545
+ transition: background-color 120ms ease, border-color 120ms ease;
6546
+ }
6547
+ .ScSelectionPill_scSelectionPill:hover,
6548
+ .ScSelectionPill_scSelectionPill.ScSelectionPill_state-hover {
6549
+ background: var(--alias-fill-neutral-neutralhovertoactive, #2a2a2a);
6550
+ }
6551
+ .ScSelectionPill_scSelectionPill:focus {
6552
+ outline: none;
6553
+ }
6554
+ .ScSelectionPill_scSelectionPill:focus-visible {
6555
+ outline: 0.125rem solid var(--alias-border-focus, #1a6fff);
6556
+ outline-offset: 0.125rem;
6557
+ }
6558
+ .ScSelectionPill_scSelectionPill.ScSelectionPill_state-selected {
6559
+ background: var(--alias-fill-base-basehover, #bfbfbf);
6560
+ border-color: transparent;
6561
+ }
6562
+ .ScSelectionPill_label {
6563
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6564
+ font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
6565
+ font-size: var(--text-text-sm-regular-font-size, 0.875rem);
6566
+ line-height: var(--text-text-sm-regular-line-height, 1.25rem);
6567
+ font-weight: var(--text-text-sm-regular-font-weight, 400);
6568
+ white-space: nowrap;
6569
+ text-align: center;
6570
+ }
6571
+ .ScSelectionPill_scSelectionPill.ScSelectionPill_state-selected .ScSelectionPill_label {
6572
+ color: var(--alias-text-and-icons-inverse, #101010);
6573
+ }
6574
+
6575
+ /* src/SC-SelectionPillGroup/ScSelectionPillGroup.module.css */
6576
+ .ScSelectionPillGroup_scSelectionPillGroup,
6577
+ .ScSelectionPillGroup_scSelectionPillGroup * {
6578
+ box-sizing: border-box;
6579
+ }
6580
+ .ScSelectionPillGroup_scSelectionPillGroup {
6581
+ display: flex;
6582
+ flex-wrap: wrap;
6583
+ align-items: center;
6584
+ gap: var(--spacing-md, 0.5rem);
6585
+ position: relative;
6586
+ width: 100%;
6587
+ }
6588
+
6589
+ /* src/SC-MappingCard/ScMappingCard.module.css */
6590
+ .ScMappingCard_scMappingCard,
6591
+ .ScMappingCard_scMappingCard * {
6592
+ box-sizing: border-box;
6593
+ }
6594
+ .ScMappingCard_scMappingCard {
6595
+ display: flex;
6596
+ align-items: flex-start;
6597
+ width: 100%;
6598
+ flex-shrink: 0;
6599
+ position: relative;
6600
+ background: var(--alias-surface-base, #101010);
6601
+ border: 0.5px solid var(--alias-border-default, #3e3e3e);
6602
+ border-radius: var(--radius-3xl, 16px);
6603
+ overflow: hidden;
6604
+ }
6605
+ .ScMappingCard_scMappingCard.ScMappingCard_status-confirmed {
6606
+ border: 1px solid var(--alias-border-success, #007d48);
6607
+ }
6608
+ .ScMappingCard_scMappingCard.ScMappingCard_status-ignored {
6609
+ border: 1px solid var(--alias-border-error, #8f1414);
6610
+ }
6611
+ .ScMappingCard_badge {
6612
+ flex: 0 0 3rem;
6613
+ width: 3rem;
6614
+ display: flex;
6615
+ align-items: center;
6616
+ justify-content: center;
6617
+ align-self: stretch;
6618
+ background: var(--alias-surface-subtle, #1a1a1a);
6619
+ }
6620
+ .ScMappingCard_badgeLetter {
6621
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6622
+ font-family: var(--text-text-md-medium-font-family, "Inter-Medium", sans-serif);
6623
+ font-size: var(--text-text-md-medium-font-size, 1rem);
6624
+ line-height: var(--text-text-md-medium-line-height, 1.5rem);
6625
+ font-weight: var(--text-text-md-medium-font-weight, 500);
6626
+ text-transform: uppercase;
6627
+ }
6628
+ .ScMappingCard_status-confirmed .ScMappingCard_badgeLetter {
6629
+ color: var(--alias-text-and-icons-success, #00b96b);
6630
+ }
6631
+ .ScMappingCard_status-ignored .ScMappingCard_badgeLetter {
6632
+ color: var(--alias-text-and-icons-error, #d11a1a);
6633
+ }
6634
+ .ScMappingCard_content {
6635
+ display: flex;
6636
+ flex: 1 1 auto;
6637
+ align-items: flex-start;
6638
+ gap: var(--spacing-6xl, 24px);
6639
+ padding: var(--spacing-6xl, 24px);
6640
+ min-width: 0;
6641
+ }
6642
+ .ScMappingCard_source {
6643
+ flex: 1 1 0;
6644
+ min-width: 0;
6645
+ }
6646
+ .ScMappingCard_sourceCard {
6647
+ display: flex;
6648
+ flex-direction: column;
6649
+ align-self: stretch;
6650
+ background: var(--alias-fill-neutral-neutral, #1a1a1a);
6651
+ border-radius: var(--radius-3xl, 16px);
6652
+ overflow: hidden;
6653
+ box-shadow: var(--alias-shadow-sm);
6654
+ }
6655
+ .ScMappingCard_sourceCard .ScMappingCard_sourceHeader {
6656
+ min-height: 3rem;
6657
+ padding: var(--spacing-xl, 12px) var(--spacing-3xl, 16px);
6658
+ background: var(--alias-surface-raised, #242424);
6659
+ border-radius: var(--radius-3xl, 16px);
6660
+ }
6661
+ .ScMappingCard_sourceCard .ScMappingCard_sampleRows {
6662
+ padding: var(--spacing-3xl, 16px);
6663
+ }
6664
+ .ScMappingCard_sourceHeader {
6665
+ display: flex;
6666
+ align-items: center;
6667
+ gap: var(--spacing-3xl, 16px);
6668
+ width: 100%;
6669
+ min-width: 0;
6670
+ }
6671
+ .ScMappingCard_columnName {
6672
+ flex: 1 1 auto;
6673
+ min-width: 0;
6674
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6675
+ font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
6676
+ font-size: var(--text-text-sm-regular-font-size, 0.875rem);
6677
+ line-height: var(--text-text-sm-regular-line-height, 1.25rem);
6678
+ font-weight: var(--text-text-sm-regular-font-weight, 400);
6679
+ white-space: nowrap;
6680
+ overflow: hidden;
6681
+ text-overflow: ellipsis;
6682
+ }
6683
+ .ScMappingCard_addBtn {
6684
+ flex: 0 0 auto;
6685
+ display: inline-flex;
6686
+ align-items: center;
6687
+ justify-content: center;
6688
+ width: 1.5rem;
6689
+ height: 1.5rem;
6690
+ padding: 0;
6691
+ margin: 0;
6692
+ border: none;
6693
+ background: transparent;
6694
+ cursor: pointer;
6695
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6696
+ }
6697
+ .ScMappingCard_sampleRows {
6698
+ display: flex;
6699
+ flex-direction: column;
6700
+ gap: var(--spacing-3xl, 16px);
6701
+ min-width: 0;
6702
+ }
6703
+ .ScMappingCard_sampleRow {
6704
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6705
+ font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
6706
+ font-size: var(--text-text-sm-regular-font-size, 0.875rem);
6707
+ line-height: var(--text-text-sm-regular-line-height, 1.25rem);
6708
+ font-weight: var(--text-text-sm-regular-font-weight, 400);
6709
+ white-space: nowrap;
6710
+ overflow: hidden;
6711
+ text-overflow: ellipsis;
6712
+ }
6713
+ .ScMappingCard_sourceCollapsed {
6714
+ display: flex;
6715
+ align-items: center;
6716
+ min-height: 3rem;
6717
+ padding: var(--spacing-xl, 12px) var(--spacing-3xl, 16px);
6718
+ background: var(--alias-surface-raised, #242424);
6719
+ border-radius: var(--radius-3xl, 16px);
6720
+ box-shadow: var(--alias-shadow-sm);
6721
+ }
6722
+ .ScMappingCard_status-ignored .ScMappingCard_sourceCollapsed .ScMappingCard_columnName {
6723
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6724
+ }
6725
+ .ScMappingCard_targetRegion {
6726
+ display: flex;
6727
+ flex-direction: column;
6728
+ gap: var(--spacing-md, 8px);
6729
+ flex: 1 1 0;
6730
+ min-width: 0;
6731
+ align-self: flex-start;
6732
+ }
6733
+ .ScMappingCard_targetRow {
6734
+ display: flex;
6735
+ align-items: center;
6736
+ gap: var(--spacing-3xl, 16px);
6737
+ min-width: 0;
6738
+ }
6739
+ .ScMappingCard_connector {
6740
+ flex: 0 0 auto;
6741
+ width: 24px;
6742
+ height: 24px;
6743
+ display: inline-flex;
6744
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6745
+ }
6746
+ .ScMappingCard_targetBox {
6747
+ flex: 1 1 auto;
6748
+ min-width: 0;
6749
+ min-height: 3rem;
6750
+ display: flex;
6751
+ align-items: center;
6752
+ padding: var(--spacing-xl, 12px) var(--spacing-3xl, 16px);
6753
+ background: var(--alias-surface-raised, #242424);
6754
+ border-radius: var(--radius-3xl, 16px);
6755
+ box-shadow: var(--alias-shadow-sm);
6756
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6757
+ font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
6758
+ font-size: var(--text-text-sm-regular-font-size, 0.875rem);
6759
+ line-height: var(--text-text-sm-regular-line-height, 1.25rem);
6760
+ white-space: nowrap;
6761
+ overflow: hidden;
6762
+ text-overflow: ellipsis;
6763
+ }
6764
+ .ScMappingCard_targetBoxDash {
6765
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6766
+ }
6767
+ .ScMappingCard_warning {
6768
+ display: flex;
6769
+ align-items: flex-start;
6770
+ gap: var(--spacing-sm, 6px);
6771
+ min-width: 0;
6772
+ padding-left: 40px;
6773
+ }
6774
+ .ScMappingCard_warningIcon {
6775
+ flex: 0 0 auto;
6776
+ width: 20px;
6777
+ height: 20px;
6778
+ display: inline-flex;
6779
+ color: var(--alias-text-and-icons-error, #d11a1a);
6780
+ }
6781
+ .ScMappingCard_warningText {
6782
+ min-width: 0;
6783
+ color: var(--alias-text-and-icons-errorcont, #eb6b6b);
6784
+ font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
6785
+ font-size: var(--text-text-sm-regular-font-size, 0.875rem);
6786
+ line-height: var(--text-text-sm-regular-line-height, 1.25rem);
6787
+ font-weight: var(--text-text-sm-regular-font-weight, 400);
6788
+ }
6789
+ .ScMappingCard_actions {
6790
+ flex: 0 0 336px;
6791
+ width: 336px;
6792
+ display: flex;
6793
+ flex-direction: column;
6794
+ align-items: flex-start;
6795
+ gap: var(--spacing-3xl, 16px);
6796
+ align-self: flex-start;
6797
+ }
6798
+ .ScMappingCard_actionRow {
6799
+ display: flex;
6800
+ align-items: center;
6801
+ gap: var(--spacing-3xl, 16px);
6802
+ width: 100%;
6803
+ }
6804
+ .ScMappingCard_btn {
6805
+ display: inline-flex;
6806
+ align-items: center;
6807
+ justify-content: center;
6808
+ gap: var(--spacing-sm, 6px);
6809
+ height: 3rem;
6810
+ padding: var(--spacing-xl, 12px) var(--spacing-3xl, 16px);
6811
+ border-radius: var(--radius-xl, 12px);
6812
+ font-family: var(--text-text-md-medium-font-family, "Inter-Medium", sans-serif);
6813
+ font-size: var(--text-text-md-medium-font-size, 1rem);
6814
+ line-height: var(--text-text-md-medium-line-height, 1.5rem);
6815
+ font-weight: var(--text-text-md-medium-font-weight, 500);
6816
+ white-space: nowrap;
6817
+ cursor: pointer;
6818
+ border: 1px solid transparent;
6819
+ }
6820
+ .ScMappingCard_ignoreBtn {
6821
+ background: transparent;
6822
+ border: 1.25px solid var(--alias-border-default, #3e3e3e);
6823
+ color: var(--alias-text-and-icons-primary, #f5f5f5);
6824
+ }
6825
+ .ScMappingCard_whiteBtn {
6826
+ background: var(--alias-fill-base-base, #f5f5f5);
6827
+ color: var(--alias-text-and-icons-inverse, #101010);
6828
+ }
6829
+ .ScMappingCard_confirmBtn {
6830
+ flex: 1 1 auto;
6831
+ }
6832
+ .ScMappingCard_statusLabel {
6833
+ flex: 1 1 auto;
6834
+ display: inline-flex;
6835
+ align-items: center;
6836
+ gap: var(--spacing-md, 8px);
6837
+ white-space: nowrap;
6838
+ font-family: var(--text-text-sm-medium-font-family, "Inter-Medium", sans-serif);
6839
+ font-size: var(--text-text-sm-medium-font-size, 0.875rem);
6840
+ line-height: var(--text-text-sm-medium-line-height, 1.25rem);
6841
+ font-weight: var(--text-text-sm-medium-font-weight, 500);
6842
+ }
6843
+ .ScMappingCard_statusIcon {
6844
+ flex: 0 0 auto;
6845
+ width: 24px;
6846
+ height: 24px;
6847
+ display: inline-flex;
6848
+ }
6849
+ .ScMappingCard_statusSuccess {
6850
+ color: var(--alias-text-and-icons-success, #00b96b);
6851
+ }
6852
+ .ScMappingCard_statusError {
6853
+ color: var(--alias-text-and-icons-error, #d11a1a);
6854
+ }
6855
+ .ScMappingCard_validityText {
6856
+ width: 100%;
6857
+ text-align: left;
6858
+ color: var(--alias-text-and-icons-tertiary, #9e9e9e);
6859
+ font-family: var(--text-text-sm-regular-font-family, "Inter-Regular", sans-serif);
6860
+ font-size: var(--text-text-sm-regular-font-size, 0.875rem);
6861
+ line-height: var(--text-text-sm-regular-line-height, 1.25rem);
6862
+ font-weight: var(--text-text-sm-regular-font-weight, 400);
6863
+ }
6864
+
6198
6865
  /* src/SC-ThinkingStepIcon/ScThinkingStepIcon.module.css */
6199
6866
  .ScThinkingStepIcon_scThinkingStepIcon,
6200
6867
  .ScThinkingStepIcon_scThinkingStepIcon * {