@streamoid/ui 0.6.14 → 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 +512 -0
- package/dist/index.d.mts +94 -2
- package/dist/index.d.ts +94 -2
- package/dist/index.js +775 -359
- package/dist/index.mjs +792 -370
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1305,6 +1305,7 @@
|
|
|
1305
1305
|
position: relative;
|
|
1306
1306
|
overflow: hidden;
|
|
1307
1307
|
cursor: pointer;
|
|
1308
|
+
transition: transform 0.2s ease, background 0.2s ease;
|
|
1308
1309
|
}
|
|
1309
1310
|
.ScButton_container {
|
|
1310
1311
|
display: flex;
|
|
@@ -5986,6 +5987,12 @@
|
|
|
5986
5987
|
flex-direction: column;
|
|
5987
5988
|
overflow: hidden;
|
|
5988
5989
|
}
|
|
5990
|
+
.ScDrawer_backdrop {
|
|
5991
|
+
position: fixed;
|
|
5992
|
+
inset: 0;
|
|
5993
|
+
background: rgba(0, 0, 0, 0.5);
|
|
5994
|
+
z-index: 9;
|
|
5995
|
+
}
|
|
5989
5996
|
|
|
5990
5997
|
/* src/SC-Tabs/ScTabs.module.css */
|
|
5991
5998
|
.ScTabs_tabs,
|
|
@@ -6350,6 +6357,511 @@
|
|
|
6350
6357
|
width: 10rem;
|
|
6351
6358
|
}
|
|
6352
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
|
+
|
|
6353
6865
|
/* src/SC-ThinkingStepIcon/ScThinkingStepIcon.module.css */
|
|
6354
6866
|
.ScThinkingStepIcon_scThinkingStepIcon,
|
|
6355
6867
|
.ScThinkingStepIcon_scThinkingStepIcon * {
|
package/dist/index.d.mts
CHANGED
|
@@ -1121,8 +1121,14 @@ interface IScDrawerProps {
|
|
|
1121
1121
|
contentStyle?: React.CSSProperties;
|
|
1122
1122
|
closeOnOutside?: boolean;
|
|
1123
1123
|
closeOnEsc?: boolean;
|
|
1124
|
+
/** Render a dim scrim behind the panel (default off, preserving the
|
|
1125
|
+
* backdrop-less SideDrawer behaviour). Clicking it closes via onClose. */
|
|
1126
|
+
backdrop?: boolean;
|
|
1127
|
+
/** Override the stacking order (panel = zIndex, backdrop = zIndex - 1).
|
|
1128
|
+
* Needed when the drawer opens over another body-level overlay/modal. */
|
|
1129
|
+
zIndex?: number;
|
|
1124
1130
|
}
|
|
1125
|
-
declare const ScDrawer: ({ children, onClose, open, side, className, style, contentClassName, contentStyle, closeOnOutside, closeOnEsc, }: IScDrawerProps) => JSX.Element | null;
|
|
1131
|
+
declare const ScDrawer: ({ children, onClose, open, side, className, style, contentClassName, contentStyle, closeOnOutside, closeOnEsc, backdrop, zIndex, }: IScDrawerProps) => JSX.Element | null;
|
|
1126
1132
|
|
|
1127
1133
|
type ScTab = string | {
|
|
1128
1134
|
label?: string;
|
|
@@ -1214,6 +1220,92 @@ interface IScCatalogixStoreTableListProps extends React.HTMLAttributes<HTMLDivEl
|
|
|
1214
1220
|
}
|
|
1215
1221
|
declare const ScCatalogixStoreTableList: ({ storeName, status, statusTone, products, assets, createdOn, createdBy, showAssets, showCreatedBy, className, ...props }: IScCatalogixStoreTableListProps) => JSX.Element;
|
|
1216
1222
|
|
|
1223
|
+
interface IScDefaultCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1224
|
+
title?: string;
|
|
1225
|
+
description?: string;
|
|
1226
|
+
/** Show the description line. When false the card renders title-only. */
|
|
1227
|
+
showDescription?: boolean;
|
|
1228
|
+
/** Force the visual state (also applied on real :hover). */
|
|
1229
|
+
state?: "default" | "hover";
|
|
1230
|
+
className?: string;
|
|
1231
|
+
}
|
|
1232
|
+
declare const ScDefaultCard: ({ title, description, showDescription, state, className, ...props }: IScDefaultCardProps) => JSX.Element;
|
|
1233
|
+
|
|
1234
|
+
interface IScValueMappingL1Props extends React.HTMLAttributes<HTMLDivElement> {
|
|
1235
|
+
label?: string;
|
|
1236
|
+
/** Force the visual state ("active" = currently-selected row; :hover also fires). */
|
|
1237
|
+
state?: "default" | "hover" | "active";
|
|
1238
|
+
/** Render the trailing "updated" dot. */
|
|
1239
|
+
updated?: boolean;
|
|
1240
|
+
className?: string;
|
|
1241
|
+
}
|
|
1242
|
+
declare const ScValueMappingL1: ({ label, state, updated, className, ...props }: IScValueMappingL1Props) => JSX.Element;
|
|
1243
|
+
|
|
1244
|
+
interface IScTaxonomyPillProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1245
|
+
/** "pill" = node label; "expand" = count + down chevron; "collapse" = up chevron. */
|
|
1246
|
+
type?: "pill" | "expand" | "collapse";
|
|
1247
|
+
/** Force the visual state (also applied on real :hover). */
|
|
1248
|
+
state?: "default" | "hover";
|
|
1249
|
+
/** Node label for type="pill". */
|
|
1250
|
+
label?: string;
|
|
1251
|
+
/** Child count for type="expand". */
|
|
1252
|
+
count?: number | string;
|
|
1253
|
+
className?: string;
|
|
1254
|
+
}
|
|
1255
|
+
declare const ScTaxonomyPill: ({ type, state, label, count, className, ...props }: IScTaxonomyPillProps) => JSX.Element;
|
|
1256
|
+
|
|
1257
|
+
interface IScSelectionPillProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onSelect"> {
|
|
1258
|
+
label?: string;
|
|
1259
|
+
/** Selected pill = dark fill + inverse text. */
|
|
1260
|
+
selected?: boolean;
|
|
1261
|
+
value?: string;
|
|
1262
|
+
onSelect?: (value?: string) => void;
|
|
1263
|
+
className?: string;
|
|
1264
|
+
}
|
|
1265
|
+
declare const ScSelectionPill: ({ label, selected, value, onSelect, onClick, className, ...props }: IScSelectionPillProps) => JSX.Element;
|
|
1266
|
+
|
|
1267
|
+
interface IScSelectionPillOption {
|
|
1268
|
+
label: string;
|
|
1269
|
+
value: string;
|
|
1270
|
+
}
|
|
1271
|
+
interface IScSelectionPillGroupProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onChange"> {
|
|
1272
|
+
options?: IScSelectionPillOption[];
|
|
1273
|
+
/** Value of the currently-selected pill. */
|
|
1274
|
+
value?: string;
|
|
1275
|
+
onChange?: (value: string) => void;
|
|
1276
|
+
className?: string;
|
|
1277
|
+
}
|
|
1278
|
+
declare const ScSelectionPillGroup: ({ options, value, onChange, className, ...props }: IScSelectionPillGroupProps) => JSX.Element;
|
|
1279
|
+
|
|
1280
|
+
interface IScMappingCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1281
|
+
/** Narrow left-gutter badge letter, e.g. "A". */
|
|
1282
|
+
badge?: string;
|
|
1283
|
+
/** Source feed-column name, e.g. "STYLE ID". */
|
|
1284
|
+
columnName: string;
|
|
1285
|
+
/** Sample-value preview lines shown under the name (default state only). */
|
|
1286
|
+
sampleRows?: string[];
|
|
1287
|
+
/** "+" add-another-target handler (default state). */
|
|
1288
|
+
onAddColumn?: () => void;
|
|
1289
|
+
/** Visual + behavioural state. */
|
|
1290
|
+
status?: "default" | "confirmed" | "ignored";
|
|
1291
|
+
/** SLOT: target dropdown rows (default state) — the host renders its selects here. */
|
|
1292
|
+
targets?: React.ReactNode;
|
|
1293
|
+
/** Confirmed state: mapped target names, rendered as read-only field boxes. */
|
|
1294
|
+
confirmedTargets?: string[];
|
|
1295
|
+
/** Validity line, e.g. "50% of rows in this column have valid data (200 out of 400)". */
|
|
1296
|
+
validityText?: string;
|
|
1297
|
+
/** Link-warning message (default state). */
|
|
1298
|
+
warning?: React.ReactNode;
|
|
1299
|
+
/** Show "Confirm Mapping" (default state). */
|
|
1300
|
+
canConfirm?: boolean;
|
|
1301
|
+
onIgnore?: () => void;
|
|
1302
|
+
onConfirm?: () => void;
|
|
1303
|
+
/** Edit handler for confirmed/ignored states. */
|
|
1304
|
+
onEdit?: () => void;
|
|
1305
|
+
className?: string;
|
|
1306
|
+
}
|
|
1307
|
+
declare const ScMappingCard: ({ badge, columnName, sampleRows, onAddColumn, status, targets, confirmedTargets, validityText, warning, canConfirm, onIgnore, onConfirm, onEdit, className, ...props }: IScMappingCardProps) => JSX.Element;
|
|
1308
|
+
|
|
1217
1309
|
interface IScThinkingStepIconProps extends Omit<React__default.HTMLAttributes<HTMLSpanElement>, "children"> {
|
|
1218
1310
|
state?: "default" | "working" | "completed" | "error";
|
|
1219
1311
|
size?: number;
|
|
@@ -1632,4 +1724,4 @@ interface IScPlanDetailsCardMobileProps extends React.HTMLAttributes<HTMLDivElem
|
|
|
1632
1724
|
}
|
|
1633
1725
|
declare const ScPlanDetailsCardMobile: ({ planName, planCredits, planPrice, badgeText, badgeSubText, currentPlanLabel, upgradeButtonText, isLoading, onUpgrade, className, ...props }: IScPlanDetailsCardMobileProps) => JSX.Element;
|
|
1634
1726
|
|
|
1635
|
-
export { type AppcardProduct, type ArtifaxMenuItem, type ArtifaxSection, type ArtifaxSidebarAssistantCta, type ArtifaxSidebarCreditWarning, type ArtifaxSidebarIconContext, type ArtifaxSidebarIconMap, type ArtifaxSidebarIconRenderer, type ArtifaxSidebarProfile, type CatalogixNavItem, type CatalogixSidebarCreditWarning, type CatalogixSidebarIconContext, type CatalogixSidebarIconMap, type CatalogixSidebarIconRenderer, type CatalogixSidebarProfile, type CatalogixSwitchApp, CreditWarningBanner, type CreditWarningBannerProps, type DescriptionVisibility, type IInvoiceHistoryMobileProps, type IScAccessProps, type IScAppCardForCopilotProps, type IScAppCardProps, type IScAppCardV3Props, type IScAppFieldProps, type IScAppListingCardProps, type IScAppSwitchPanelProps, type IScAppcardLogosProps, type IScArtifaxInviteProps, type IScArtifaxSidebarProps, type IScBadgesProps, type IScBeaconProps, type IScBillingHistoryHeaderProps, type IScBillingHistoryTableListProps, type IScBillingLogsTableHeaderProps, type IScBillingLogsTableListProps, type IScBriefCardProps, type IScButtonProps, type IScCalendarDateCompsProps, type IScCalendarProps, type IScCatalogixInviteProps, type IScCatalogixSidebarProps, type IScCatalogixStoreHeaderProps, type IScCatalogixStoreTableListProps, type IScCheckFieldProps, type IScCheckboxProps, type IScCounterProps, type IScCreditsUsageCardMobileProps, type IScCreditsUsageCardProps, type IScCxoCopilotLogoProps, type IScDrawerProps, type IScFieldButtonProps, type IScFileFieldProps, type IScGoogleSignInProps, type IScGuideProps, type IScHDividerProps, type IScHeaderProps, type IScImageFieldProps, type IScInChatListProps, type IScInChatMessageProps, type IScInfoPopupProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMediaApprovalProps, type IScMediaSelectProps, type IScMenuOptionsProps, type IScMobileBottomActionProps, type IScMobileTopNavProps, type IScModalProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPaginationProps, type IScPairtextProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanComparisonProps, type IScPlanDetailsCardMobileProps, type IScPlanDetailsCardProps, type IScPopUpMenuProps, type IScProfileImageUpdateProps, type IScProfileOptionsProps, type IScProfileProps, type IScProfileSettingsCompProps, type IScProfileV2MobileProps, type IScProgressBarProps, type IScQuickPromptProps, type IScRadioProps, type IScReferralCardMobileProps, type IScReferralTableHeaderProps, type IScReferralTableListProps, type IScRoleMobileProps, type IScRoleProps, type IScSelectOption, type IScSelectProps, type IScSelectionListProps, type IScSelectionProps, type IScSettingsNavProps, type IScSettingsTabCompProps, type IScSideBarLogoUnitProps, type IScSidebarIconsProps, type IScSidebarMenuProps, type IScSidebarProfileProps, type IScSidebarProps, type IScSidebarSwitchMenuProps, type IScSliderProps, type IScStoreCardProps, type IScStrLogoProps, type IScStreamoidMascotProps, type IScStreamoidWordmarkProps, type IScSubAgentProps, type IScTabCompProps, type IScTabFieldProps, type IScTabSwitcherProps, type IScTableHeaderProps, type IScTableListMobileProps, type IScTableListProps, type IScTabsProps, type IScTextAreaProps, type IScTextFieldProps, type IScThinkingStepIconProps, type IScTodoItem, type IScTodoListProps, type IScToggleSwitchProps, type IScVDividerProps, type IScVersionProps, type IScWorkspaceCardProps, type IScWorkspaceSettingsMobileProps, type IScWorkspaceSwitchMobileProps, type IScWorkspaceSwitchMobileV2Props, type IUsageHistoryMobileProps, type IcListIconState, InvoiceHistoryMobile, NscWorkspaceSwitch, type PlanComparisonRow, type PlanComparisonSection, type PlanFeatureSection, ProductCollapsedMark, ProductWordmark, ScAccess, ScAppCard, ScAppCardForCopilot, ScAppCardV3, ScAppField, ScAppListingCard, type ScAppSwitchItem, ScAppSwitchPanel, ScAppSwitchRow, ScAppcardLogos, ScArtifaxInvite, ScArtifaxSidebar, ScBadges, ScBeacon, type ScBeaconTone, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScBriefCard, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCatalogixSidebar, ScCatalogixStoreHeader, ScCatalogixStoreTableList, ScCheckField, ScCheckbox, ScCounter, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScCxoCopilotLogo, ScDp, type ScDpProps, ScDrawer, ScFieldButton, ScFileField, ScGoogleSignIn, ScGuide, ScHDivider, ScHeader, ScImageField, ScInChatList, ScInChatMessage, ScInfoPopup, ScIntialProfileCover, ScLogoUnit, ScMediaApproval, ScMediaSelect, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScModal, ScOnlyField, ScOnlyIcon, ScPagination, ScPairtext, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanComparison, ScPlanDetailsCard, ScPlanDetailsCardMobile, ScPopUpMenu, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSelect, ScSelection, ScSelectionList, ScSettingsNav, ScSettingsTabComp, ScSideBarLogoUnit, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSidebarSwitchMenu, ScSlider, ScStoreCard, ScStrLogo, ScStreamoidMascot, ScStreamoidWordmark, ScSubAgent, type ScTab, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTabs, ScTextArea, ScTextField, ScThinkingStepIcon, ScTodoList, ScToggleSwitch, ScVDivider, ScVersion, ScWorkspaceCard, ScWorkspaceSettingsMobile, ScWorkspaceSwitchCard, type ScWorkspaceSwitchCardProps, ScWorkspaceSwitchMobile, ScWorkspaceSwitchMobileV2, type SelectionListState, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProduct, type SidebarProfileConfig, type SidebarSectionConfig, StreamoidSidebar, type StreamoidSidebarProps, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, UsageHistoryMobile, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem, formatSubAgentLabel, hasCollapsedMark };
|
|
1727
|
+
export { type AppcardProduct, type ArtifaxMenuItem, type ArtifaxSection, type ArtifaxSidebarAssistantCta, type ArtifaxSidebarCreditWarning, type ArtifaxSidebarIconContext, type ArtifaxSidebarIconMap, type ArtifaxSidebarIconRenderer, type ArtifaxSidebarProfile, type CatalogixNavItem, type CatalogixSidebarCreditWarning, type CatalogixSidebarIconContext, type CatalogixSidebarIconMap, type CatalogixSidebarIconRenderer, type CatalogixSidebarProfile, type CatalogixSwitchApp, CreditWarningBanner, type CreditWarningBannerProps, type DescriptionVisibility, type IInvoiceHistoryMobileProps, type IScAccessProps, type IScAppCardForCopilotProps, type IScAppCardProps, type IScAppCardV3Props, type IScAppFieldProps, type IScAppListingCardProps, type IScAppSwitchPanelProps, type IScAppcardLogosProps, type IScArtifaxInviteProps, type IScArtifaxSidebarProps, type IScBadgesProps, type IScBeaconProps, type IScBillingHistoryHeaderProps, type IScBillingHistoryTableListProps, type IScBillingLogsTableHeaderProps, type IScBillingLogsTableListProps, type IScBriefCardProps, type IScButtonProps, type IScCalendarDateCompsProps, type IScCalendarProps, type IScCatalogixInviteProps, type IScCatalogixSidebarProps, type IScCatalogixStoreHeaderProps, type IScCatalogixStoreTableListProps, type IScCheckFieldProps, type IScCheckboxProps, type IScCounterProps, type IScCreditsUsageCardMobileProps, type IScCreditsUsageCardProps, type IScCxoCopilotLogoProps, type IScDefaultCardProps, type IScDrawerProps, type IScFieldButtonProps, type IScFileFieldProps, type IScGoogleSignInProps, type IScGuideProps, type IScHDividerProps, type IScHeaderProps, type IScImageFieldProps, type IScInChatListProps, type IScInChatMessageProps, type IScInfoPopupProps, type IScIntialProfileCoverProps, type IScLogoUnitProps, type IScMappingCardProps, type IScMediaApprovalProps, type IScMediaSelectProps, type IScMenuOptionsProps, type IScMobileBottomActionProps, type IScMobileTopNavProps, type IScModalProps, type IScOnlyFieldProps, type IScOnlyIconProps, type IScPaginationProps, type IScPairtextProps, type IScPendingActionProps, type IScPhtogenixInviteProps, type IScPlanCardProps, type IScPlanComparisonProps, type IScPlanDetailsCardMobileProps, type IScPlanDetailsCardProps, type IScPopUpMenuProps, type IScProfileImageUpdateProps, type IScProfileOptionsProps, type IScProfileProps, type IScProfileSettingsCompProps, type IScProfileV2MobileProps, type IScProgressBarProps, type IScQuickPromptProps, type IScRadioProps, type IScReferralCardMobileProps, type IScReferralTableHeaderProps, type IScReferralTableListProps, type IScRoleMobileProps, type IScRoleProps, type IScSelectOption, type IScSelectProps, type IScSelectionListProps, type IScSelectionPillGroupProps, type IScSelectionPillOption, type IScSelectionPillProps, type IScSelectionProps, type IScSettingsNavProps, type IScSettingsTabCompProps, type IScSideBarLogoUnitProps, type IScSidebarIconsProps, type IScSidebarMenuProps, type IScSidebarProfileProps, type IScSidebarProps, type IScSidebarSwitchMenuProps, type IScSliderProps, type IScStoreCardProps, type IScStrLogoProps, type IScStreamoidMascotProps, type IScStreamoidWordmarkProps, type IScSubAgentProps, type IScTabCompProps, type IScTabFieldProps, type IScTabSwitcherProps, type IScTableHeaderProps, type IScTableListMobileProps, type IScTableListProps, type IScTabsProps, type IScTaxonomyPillProps, type IScTextAreaProps, type IScTextFieldProps, type IScThinkingStepIconProps, type IScTodoItem, type IScTodoListProps, type IScToggleSwitchProps, type IScVDividerProps, type IScValueMappingL1Props, type IScVersionProps, type IScWorkspaceCardProps, type IScWorkspaceSettingsMobileProps, type IScWorkspaceSwitchMobileProps, type IScWorkspaceSwitchMobileV2Props, type IUsageHistoryMobileProps, type IcListIconState, InvoiceHistoryMobile, NscWorkspaceSwitch, type PlanComparisonRow, type PlanComparisonSection, type PlanFeatureSection, ProductCollapsedMark, ProductWordmark, ScAccess, ScAppCard, ScAppCardForCopilot, ScAppCardV3, ScAppField, ScAppListingCard, type ScAppSwitchItem, ScAppSwitchPanel, ScAppSwitchRow, ScAppcardLogos, ScArtifaxInvite, ScArtifaxSidebar, ScBadges, ScBeacon, type ScBeaconTone, ScBillingHistoryHeader, ScBillingHistoryTableList, ScBillingLogsTableHeader, ScBillingLogsTableList, ScBriefCard, ScButton, ScCalendar, ScCalendarDateComps, ScCatalogixInvite, ScCatalogixSidebar, ScCatalogixStoreHeader, ScCatalogixStoreTableList, ScCheckField, ScCheckbox, ScCounter, ScCreditsUsageCard, ScCreditsUsageCardMobile, ScCxoCopilotLogo, ScDefaultCard, ScDp, type ScDpProps, ScDrawer, ScFieldButton, ScFileField, ScGoogleSignIn, ScGuide, ScHDivider, ScHeader, ScImageField, ScInChatList, ScInChatMessage, ScInfoPopup, ScIntialProfileCover, ScLogoUnit, ScMappingCard, ScMediaApproval, ScMediaSelect, ScMenuOptions, ScMobileBottomAction, ScMobileTopNav, ScModal, ScOnlyField, ScOnlyIcon, ScPagination, ScPairtext, ScPendingAction, ScPhtogenixInvite, ScPlanCard, ScPlanComparison, ScPlanDetailsCard, ScPlanDetailsCardMobile, ScPopUpMenu, ScProfile, ScProfileImageUpdate, ScProfileOptions, ScProfileSettingsComp, ScProfileV2Mobile, ScProgressBar, ScQuickPrompt, ScRadio, ScReferralCardMobile, ScReferralTableHeader, ScReferralTableList, ScRole, ScRoleMobile, ScSelect, ScSelection, ScSelectionList, ScSelectionPill, ScSelectionPillGroup, ScSettingsNav, ScSettingsTabComp, ScSideBarLogoUnit, ScSidebar, ScSidebarIcons, ScSidebarMenu, ScSidebarProfile, ScSidebarSwitchMenu, ScSlider, ScStoreCard, ScStrLogo, ScStreamoidMascot, ScStreamoidWordmark, ScSubAgent, type ScTab, ScTabComp, ScTabField, ScTabSwitcher, ScTableHeader, ScTableList, ScTableListMobile, ScTabs, ScTaxonomyPill, ScTextArea, ScTextField, ScThinkingStepIcon, ScTodoList, ScToggleSwitch, ScVDivider, ScValueMappingL1, ScVersion, ScWorkspaceCard, ScWorkspaceSettingsMobile, ScWorkspaceSwitchCard, type ScWorkspaceSwitchCardProps, ScWorkspaceSwitchMobile, ScWorkspaceSwitchMobileV2, type SelectionListState, type SidebarConfig, type SidebarIconContext, type SidebarIconMap, type SidebarIconRenderer, type SidebarMenuItemConfig, type SidebarProduct, type SidebarProfileConfig, type SidebarSectionConfig, StreamoidSidebar, type StreamoidSidebarProps, StreamoidWorkspaceSwitcher, type StreamoidWorkspaceSwitcherProps, UsageHistoryMobile, type WorkspaceSwitcherConfig, type WorkspaceSwitcherItem, formatSubAgentLabel, hasCollapsedMark };
|