@cloudscape-design/chat-components 1.0.147 → 1.0.149
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/internal/generated/styles/tokens.d.ts +18 -0
- package/internal/generated/styles/tokens.js +31 -13
- package/internal/generated/theming/index.cjs +438 -21
- package/internal/generated/theming/index.cjs.d.ts +135 -0
- package/internal/generated/theming/index.d.ts +135 -0
- package/internal/generated/theming/index.js +438 -21
- package/package.json +1 -1
|
@@ -1395,6 +1395,10 @@ module.exports.preset = {
|
|
|
1395
1395
|
"light": "transparent",
|
|
1396
1396
|
"dark": "transparent"
|
|
1397
1397
|
},
|
|
1398
|
+
"colorBackgroundSideNavigationItemActiveCollapsed": {
|
|
1399
|
+
"light": "{colorBackgroundControlChecked}",
|
|
1400
|
+
"dark": "{colorBackgroundControlChecked}"
|
|
1401
|
+
},
|
|
1398
1402
|
"colorBackgroundLayoutMain": {
|
|
1399
1403
|
"light": "{colorWhite}",
|
|
1400
1404
|
"dark": "{colorNeutral850}"
|
|
@@ -1479,6 +1483,22 @@ module.exports.preset = {
|
|
|
1479
1483
|
"light": "{colorWarning400}",
|
|
1480
1484
|
"dark": "{colorWarning400}"
|
|
1481
1485
|
},
|
|
1486
|
+
"colorBackgroundFlashbarSuccess": {
|
|
1487
|
+
"light": "{colorBackgroundNotificationGreen}",
|
|
1488
|
+
"dark": "{colorBackgroundNotificationGreen}"
|
|
1489
|
+
},
|
|
1490
|
+
"colorBackgroundFlashbarError": {
|
|
1491
|
+
"light": "{colorBackgroundNotificationRed}",
|
|
1492
|
+
"dark": "{colorBackgroundNotificationRed}"
|
|
1493
|
+
},
|
|
1494
|
+
"colorBackgroundFlashbarInfo": {
|
|
1495
|
+
"light": "{colorBackgroundNotificationBlue}",
|
|
1496
|
+
"dark": "{colorBackgroundNotificationBlue}"
|
|
1497
|
+
},
|
|
1498
|
+
"colorBackgroundFlashbarWarning": {
|
|
1499
|
+
"light": "{colorBackgroundNotificationYellow}",
|
|
1500
|
+
"dark": "{colorBackgroundNotificationYellow}"
|
|
1501
|
+
},
|
|
1482
1502
|
"colorBackgroundNotificationStackBar": {
|
|
1483
1503
|
"light": "{colorNeutral750}",
|
|
1484
1504
|
"dark": "{colorNeutral750}"
|
|
@@ -1735,6 +1755,14 @@ module.exports.preset = {
|
|
|
1735
1755
|
"light": "{colorTextAccent}",
|
|
1736
1756
|
"dark": "{colorTextAccent}"
|
|
1737
1757
|
},
|
|
1758
|
+
"colorTextSideNavigationItemActiveCollapsed": {
|
|
1759
|
+
"light": "{colorTextInverted}",
|
|
1760
|
+
"dark": "{colorTextInverted}"
|
|
1761
|
+
},
|
|
1762
|
+
"colorTextSideNavigationItemDefault": {
|
|
1763
|
+
"light": "{colorTextBodySecondary}",
|
|
1764
|
+
"dark": "{colorTextBodySecondary}"
|
|
1765
|
+
},
|
|
1738
1766
|
"colorBorderCalendarGrid": {
|
|
1739
1767
|
"light": "transparent",
|
|
1740
1768
|
"dark": "transparent"
|
|
@@ -2531,6 +2559,26 @@ module.exports.preset = {
|
|
|
2531
2559
|
"light": "{colorNeutral150}",
|
|
2532
2560
|
"dark": "{colorNeutral700}"
|
|
2533
2561
|
},
|
|
2562
|
+
"colorBackgroundBadgeGreen": {
|
|
2563
|
+
"light": "{colorBackgroundNotificationGreen}",
|
|
2564
|
+
"dark": "{colorBackgroundNotificationGreen}"
|
|
2565
|
+
},
|
|
2566
|
+
"colorBackgroundBadgeBlue": {
|
|
2567
|
+
"light": "{colorBackgroundNotificationBlue}",
|
|
2568
|
+
"dark": "{colorBackgroundNotificationBlue}"
|
|
2569
|
+
},
|
|
2570
|
+
"colorBackgroundBadgeRed": {
|
|
2571
|
+
"light": "{colorBackgroundNotificationRed}",
|
|
2572
|
+
"dark": "{colorBackgroundNotificationRed}"
|
|
2573
|
+
},
|
|
2574
|
+
"colorBackgroundBadgeYellow": {
|
|
2575
|
+
"light": "{colorBackgroundNotificationYellow}",
|
|
2576
|
+
"dark": "{colorBackgroundNotificationYellow}"
|
|
2577
|
+
},
|
|
2578
|
+
"colorBackgroundBadgeGrey": {
|
|
2579
|
+
"light": "{colorBackgroundNotificationGrey}",
|
|
2580
|
+
"dark": "{colorBackgroundNotificationGrey}"
|
|
2581
|
+
},
|
|
2534
2582
|
"colorBorderBadge": {
|
|
2535
2583
|
"light": "transparent",
|
|
2536
2584
|
"dark": "transparent"
|
|
@@ -2589,6 +2637,8 @@ module.exports.preset = {
|
|
|
2589
2637
|
"fontLinkButtonWeight": "{fontWeightButton}",
|
|
2590
2638
|
"fontPanelHeaderLineHeight": "{lineHeightHeadingM}",
|
|
2591
2639
|
"fontPanelHeaderSize": "{fontSizeHeadingM}",
|
|
2640
|
+
"fontSideNavigationSectionHeaderSize": "inherit",
|
|
2641
|
+
"fontSideNavigationSectionHeaderWeight": "inherit",
|
|
2592
2642
|
"fontSizeBodyM": "14px",
|
|
2593
2643
|
"fontSizeBodyS": "12px",
|
|
2594
2644
|
"fontSizeDisplayL": "42px",
|
|
@@ -2620,6 +2670,7 @@ module.exports.preset = {
|
|
|
2620
2670
|
"fontWeightHeavy": "700",
|
|
2621
2671
|
"fontWeightKeyValuePairsLabel": "{fontDisplayLabelWeight}",
|
|
2622
2672
|
"fontWeightLighter": "300",
|
|
2673
|
+
"fontWeightLinkSecondary": "inherit",
|
|
2623
2674
|
"fontWeightNormal": "400",
|
|
2624
2675
|
"fontWeightTabs": "700",
|
|
2625
2676
|
"fontWeightTabsDisabled": "{fontWayfindingLinkActiveWeight}",
|
|
@@ -2679,6 +2730,8 @@ module.exports.preset = {
|
|
|
2679
2730
|
"borderRadiusFlashbar": "12px",
|
|
2680
2731
|
"borderRadiusInput": "8px",
|
|
2681
2732
|
"borderRadiusItem": "8px",
|
|
2733
|
+
"borderRadiusSideNavigationItem": "{borderRadiusItem}",
|
|
2734
|
+
"borderRadiusSideNavigationItemCollapsed": "50%",
|
|
2682
2735
|
"borderRadiusItemCardDefault": "{borderRadiusCardDefault}",
|
|
2683
2736
|
"borderRadiusItemCardEmbedded": "{borderRadiusCardEmbedded}",
|
|
2684
2737
|
"borderRadiusPopover": "{borderRadiusInput}",
|
|
@@ -2699,6 +2752,7 @@ module.exports.preset = {
|
|
|
2699
2752
|
"borderWidthAlertBlockStart": "{borderWidthAlert}",
|
|
2700
2753
|
"borderWidthAlertInlineEnd": "{borderWidthAlert}",
|
|
2701
2754
|
"borderWidthAlertInlineStart": "{borderWidthAlert}",
|
|
2755
|
+
"borderWidthFlashbarInlineStart": "0px",
|
|
2702
2756
|
"borderWidthButton": "2px",
|
|
2703
2757
|
"borderWidthCard": "{borderDividerSectionWidth}",
|
|
2704
2758
|
"borderWidthCardSelected": "{borderItemWidth}",
|
|
@@ -4208,6 +4262,10 @@ module.exports.preset = {
|
|
|
4208
4262
|
"light": "transparent",
|
|
4209
4263
|
"dark": "transparent"
|
|
4210
4264
|
},
|
|
4265
|
+
"colorBackgroundSideNavigationItemActiveCollapsed": {
|
|
4266
|
+
"light": "{colorBackgroundControlChecked}",
|
|
4267
|
+
"dark": "{colorBackgroundControlChecked}"
|
|
4268
|
+
},
|
|
4211
4269
|
"colorBackgroundLayoutMain": {
|
|
4212
4270
|
"light": "{colorNeutral850}",
|
|
4213
4271
|
"dark": "{colorNeutral850}"
|
|
@@ -4292,6 +4350,22 @@ module.exports.preset = {
|
|
|
4292
4350
|
"light": "{colorWarning400}",
|
|
4293
4351
|
"dark": "{colorWarning400}"
|
|
4294
4352
|
},
|
|
4353
|
+
"colorBackgroundFlashbarSuccess": {
|
|
4354
|
+
"light": "{colorBackgroundNotificationGreen}",
|
|
4355
|
+
"dark": "{colorBackgroundNotificationGreen}"
|
|
4356
|
+
},
|
|
4357
|
+
"colorBackgroundFlashbarError": {
|
|
4358
|
+
"light": "{colorBackgroundNotificationRed}",
|
|
4359
|
+
"dark": "{colorBackgroundNotificationRed}"
|
|
4360
|
+
},
|
|
4361
|
+
"colorBackgroundFlashbarInfo": {
|
|
4362
|
+
"light": "{colorBackgroundNotificationBlue}",
|
|
4363
|
+
"dark": "{colorBackgroundNotificationBlue}"
|
|
4364
|
+
},
|
|
4365
|
+
"colorBackgroundFlashbarWarning": {
|
|
4366
|
+
"light": "{colorBackgroundNotificationYellow}",
|
|
4367
|
+
"dark": "{colorBackgroundNotificationYellow}"
|
|
4368
|
+
},
|
|
4295
4369
|
"colorBackgroundNotificationStackBar": {
|
|
4296
4370
|
"light": "{colorNeutral750}",
|
|
4297
4371
|
"dark": "{colorNeutral750}"
|
|
@@ -4548,6 +4622,14 @@ module.exports.preset = {
|
|
|
4548
4622
|
"light": "{colorTextAccent}",
|
|
4549
4623
|
"dark": "{colorTextAccent}"
|
|
4550
4624
|
},
|
|
4625
|
+
"colorTextSideNavigationItemActiveCollapsed": {
|
|
4626
|
+
"light": "{colorTextInverted}",
|
|
4627
|
+
"dark": "{colorTextInverted}"
|
|
4628
|
+
},
|
|
4629
|
+
"colorTextSideNavigationItemDefault": {
|
|
4630
|
+
"light": "{colorTextBodySecondary}",
|
|
4631
|
+
"dark": "{colorTextBodySecondary}"
|
|
4632
|
+
},
|
|
4551
4633
|
"colorBorderCalendarGrid": {
|
|
4552
4634
|
"light": "transparent",
|
|
4553
4635
|
"dark": "transparent"
|
|
@@ -5344,6 +5426,26 @@ module.exports.preset = {
|
|
|
5344
5426
|
"light": "{colorNeutral700}",
|
|
5345
5427
|
"dark": "{colorNeutral700}"
|
|
5346
5428
|
},
|
|
5429
|
+
"colorBackgroundBadgeGreen": {
|
|
5430
|
+
"light": "{colorBackgroundNotificationGreen}",
|
|
5431
|
+
"dark": "{colorBackgroundNotificationGreen}"
|
|
5432
|
+
},
|
|
5433
|
+
"colorBackgroundBadgeBlue": {
|
|
5434
|
+
"light": "{colorBackgroundNotificationBlue}",
|
|
5435
|
+
"dark": "{colorBackgroundNotificationBlue}"
|
|
5436
|
+
},
|
|
5437
|
+
"colorBackgroundBadgeRed": {
|
|
5438
|
+
"light": "{colorBackgroundNotificationRed}",
|
|
5439
|
+
"dark": "{colorBackgroundNotificationRed}"
|
|
5440
|
+
},
|
|
5441
|
+
"colorBackgroundBadgeYellow": {
|
|
5442
|
+
"light": "{colorBackgroundNotificationYellow}",
|
|
5443
|
+
"dark": "{colorBackgroundNotificationYellow}"
|
|
5444
|
+
},
|
|
5445
|
+
"colorBackgroundBadgeGrey": {
|
|
5446
|
+
"light": "{colorBackgroundNotificationGrey}",
|
|
5447
|
+
"dark": "{colorBackgroundNotificationGrey}"
|
|
5448
|
+
},
|
|
5347
5449
|
"colorBorderBadge": {
|
|
5348
5450
|
"light": "transparent",
|
|
5349
5451
|
"dark": "transparent"
|
|
@@ -5829,6 +5931,10 @@ module.exports.preset = {
|
|
|
5829
5931
|
"light": "transparent",
|
|
5830
5932
|
"dark": "transparent"
|
|
5831
5933
|
},
|
|
5934
|
+
"colorBackgroundSideNavigationItemActiveCollapsed": {
|
|
5935
|
+
"light": "{colorBackgroundControlChecked}",
|
|
5936
|
+
"dark": "{colorBackgroundControlChecked}"
|
|
5937
|
+
},
|
|
5832
5938
|
"colorBackgroundLayoutMain": {
|
|
5833
5939
|
"light": "{colorNeutral950}",
|
|
5834
5940
|
"dark": "{colorNeutral950}"
|
|
@@ -5913,6 +6019,22 @@ module.exports.preset = {
|
|
|
5913
6019
|
"light": "{colorWarning400}",
|
|
5914
6020
|
"dark": "{colorWarning400}"
|
|
5915
6021
|
},
|
|
6022
|
+
"colorBackgroundFlashbarSuccess": {
|
|
6023
|
+
"light": "{colorBackgroundNotificationGreen}",
|
|
6024
|
+
"dark": "{colorBackgroundNotificationGreen}"
|
|
6025
|
+
},
|
|
6026
|
+
"colorBackgroundFlashbarError": {
|
|
6027
|
+
"light": "{colorBackgroundNotificationRed}",
|
|
6028
|
+
"dark": "{colorBackgroundNotificationRed}"
|
|
6029
|
+
},
|
|
6030
|
+
"colorBackgroundFlashbarInfo": {
|
|
6031
|
+
"light": "{colorBackgroundNotificationBlue}",
|
|
6032
|
+
"dark": "{colorBackgroundNotificationBlue}"
|
|
6033
|
+
},
|
|
6034
|
+
"colorBackgroundFlashbarWarning": {
|
|
6035
|
+
"light": "{colorBackgroundNotificationYellow}",
|
|
6036
|
+
"dark": "{colorBackgroundNotificationYellow}"
|
|
6037
|
+
},
|
|
5916
6038
|
"colorBackgroundNotificationStackBar": {
|
|
5917
6039
|
"light": "{colorNeutral750}",
|
|
5918
6040
|
"dark": "{colorNeutral750}"
|
|
@@ -6169,6 +6291,14 @@ module.exports.preset = {
|
|
|
6169
6291
|
"light": "{colorTextAccent}",
|
|
6170
6292
|
"dark": "{colorTextAccent}"
|
|
6171
6293
|
},
|
|
6294
|
+
"colorTextSideNavigationItemActiveCollapsed": {
|
|
6295
|
+
"light": "{colorTextInverted}",
|
|
6296
|
+
"dark": "{colorTextInverted}"
|
|
6297
|
+
},
|
|
6298
|
+
"colorTextSideNavigationItemDefault": {
|
|
6299
|
+
"light": "{colorTextBodySecondary}",
|
|
6300
|
+
"dark": "{colorTextBodySecondary}"
|
|
6301
|
+
},
|
|
6172
6302
|
"colorBorderCalendarGrid": {
|
|
6173
6303
|
"light": "transparent",
|
|
6174
6304
|
"dark": "transparent"
|
|
@@ -6965,6 +7095,26 @@ module.exports.preset = {
|
|
|
6965
7095
|
"light": "{colorNeutral700}",
|
|
6966
7096
|
"dark": "{colorNeutral700}"
|
|
6967
7097
|
},
|
|
7098
|
+
"colorBackgroundBadgeGreen": {
|
|
7099
|
+
"light": "{colorBackgroundNotificationGreen}",
|
|
7100
|
+
"dark": "{colorBackgroundNotificationGreen}"
|
|
7101
|
+
},
|
|
7102
|
+
"colorBackgroundBadgeBlue": {
|
|
7103
|
+
"light": "{colorBackgroundNotificationBlue}",
|
|
7104
|
+
"dark": "{colorBackgroundNotificationBlue}"
|
|
7105
|
+
},
|
|
7106
|
+
"colorBackgroundBadgeRed": {
|
|
7107
|
+
"light": "{colorBackgroundNotificationRed}",
|
|
7108
|
+
"dark": "{colorBackgroundNotificationRed}"
|
|
7109
|
+
},
|
|
7110
|
+
"colorBackgroundBadgeYellow": {
|
|
7111
|
+
"light": "{colorBackgroundNotificationYellow}",
|
|
7112
|
+
"dark": "{colorBackgroundNotificationYellow}"
|
|
7113
|
+
},
|
|
7114
|
+
"colorBackgroundBadgeGrey": {
|
|
7115
|
+
"light": "{colorBackgroundNotificationGrey}",
|
|
7116
|
+
"dark": "{colorBackgroundNotificationGrey}"
|
|
7117
|
+
},
|
|
6968
7118
|
"colorBorderBadge": {
|
|
6969
7119
|
"light": "transparent",
|
|
6970
7120
|
"dark": "transparent"
|
|
@@ -7378,6 +7528,10 @@ module.exports.preset = {
|
|
|
7378
7528
|
"light": "transparent",
|
|
7379
7529
|
"dark": "transparent"
|
|
7380
7530
|
},
|
|
7531
|
+
"colorBackgroundSideNavigationItemActiveCollapsed": {
|
|
7532
|
+
"light": "{colorBackgroundControlChecked}",
|
|
7533
|
+
"dark": "{colorBackgroundControlChecked}"
|
|
7534
|
+
},
|
|
7381
7535
|
"colorBackgroundLayoutMain": {
|
|
7382
7536
|
"light": "{colorWhite}",
|
|
7383
7537
|
"dark": "{colorNeutral850}"
|
|
@@ -7462,6 +7616,22 @@ module.exports.preset = {
|
|
|
7462
7616
|
"light": "{colorWarning400}",
|
|
7463
7617
|
"dark": "{colorWarning400}"
|
|
7464
7618
|
},
|
|
7619
|
+
"colorBackgroundFlashbarSuccess": {
|
|
7620
|
+
"light": "{colorBackgroundNotificationGreen}",
|
|
7621
|
+
"dark": "{colorBackgroundNotificationGreen}"
|
|
7622
|
+
},
|
|
7623
|
+
"colorBackgroundFlashbarError": {
|
|
7624
|
+
"light": "{colorBackgroundNotificationRed}",
|
|
7625
|
+
"dark": "{colorBackgroundNotificationRed}"
|
|
7626
|
+
},
|
|
7627
|
+
"colorBackgroundFlashbarInfo": {
|
|
7628
|
+
"light": "{colorBackgroundNotificationBlue}",
|
|
7629
|
+
"dark": "{colorBackgroundNotificationBlue}"
|
|
7630
|
+
},
|
|
7631
|
+
"colorBackgroundFlashbarWarning": {
|
|
7632
|
+
"light": "{colorBackgroundNotificationYellow}",
|
|
7633
|
+
"dark": "{colorBackgroundNotificationYellow}"
|
|
7634
|
+
},
|
|
7465
7635
|
"colorBackgroundNotificationStackBar": {
|
|
7466
7636
|
"light": "{colorNeutral750}",
|
|
7467
7637
|
"dark": "{colorNeutral750}"
|
|
@@ -7718,6 +7888,14 @@ module.exports.preset = {
|
|
|
7718
7888
|
"light": "{colorTextAccent}",
|
|
7719
7889
|
"dark": "{colorTextAccent}"
|
|
7720
7890
|
},
|
|
7891
|
+
"colorTextSideNavigationItemActiveCollapsed": {
|
|
7892
|
+
"light": "{colorTextInverted}",
|
|
7893
|
+
"dark": "{colorTextInverted}"
|
|
7894
|
+
},
|
|
7895
|
+
"colorTextSideNavigationItemDefault": {
|
|
7896
|
+
"light": "{colorTextBodySecondary}",
|
|
7897
|
+
"dark": "{colorTextBodySecondary}"
|
|
7898
|
+
},
|
|
7721
7899
|
"colorBorderCalendarGrid": {
|
|
7722
7900
|
"light": "transparent",
|
|
7723
7901
|
"dark": "transparent"
|
|
@@ -8375,20 +8553,20 @@ module.exports.preset = {
|
|
|
8375
8553
|
"dark": "{colorNeutral450}"
|
|
8376
8554
|
},
|
|
8377
8555
|
"colorTextStatusError": {
|
|
8378
|
-
"light": "{
|
|
8379
|
-
"dark": "{
|
|
8556
|
+
"light": "{colorTextNotificationDefault}",
|
|
8557
|
+
"dark": "{colorTextNotificationDefault}"
|
|
8380
8558
|
},
|
|
8381
8559
|
"colorTextStatusInactive": {
|
|
8382
8560
|
"light": "{colorNeutral600}",
|
|
8383
8561
|
"dark": "{colorNeutral450}"
|
|
8384
8562
|
},
|
|
8385
8563
|
"colorTextStatusInfo": {
|
|
8386
|
-
"light": "{
|
|
8387
|
-
"dark": "{
|
|
8564
|
+
"light": "{colorTextNotificationDefault}",
|
|
8565
|
+
"dark": "{colorTextNotificationDefault}"
|
|
8388
8566
|
},
|
|
8389
8567
|
"colorTextStatusSuccess": {
|
|
8390
|
-
"light": "{
|
|
8391
|
-
"dark": "{
|
|
8568
|
+
"light": "{colorTextNotificationDefault}",
|
|
8569
|
+
"dark": "{colorTextNotificationDefault}"
|
|
8392
8570
|
},
|
|
8393
8571
|
"colorTextStatusWarning": {
|
|
8394
8572
|
"light": "{colorWarning900}",
|
|
@@ -8514,6 +8692,26 @@ module.exports.preset = {
|
|
|
8514
8692
|
"light": "{colorNeutral150}",
|
|
8515
8693
|
"dark": "{colorNeutral700}"
|
|
8516
8694
|
},
|
|
8695
|
+
"colorBackgroundBadgeGreen": {
|
|
8696
|
+
"light": "{colorBackgroundNotificationGreen}",
|
|
8697
|
+
"dark": "{colorBackgroundNotificationGreen}"
|
|
8698
|
+
},
|
|
8699
|
+
"colorBackgroundBadgeBlue": {
|
|
8700
|
+
"light": "{colorBackgroundNotificationBlue}",
|
|
8701
|
+
"dark": "{colorBackgroundNotificationBlue}"
|
|
8702
|
+
},
|
|
8703
|
+
"colorBackgroundBadgeRed": {
|
|
8704
|
+
"light": "{colorBackgroundNotificationRed}",
|
|
8705
|
+
"dark": "{colorBackgroundNotificationRed}"
|
|
8706
|
+
},
|
|
8707
|
+
"colorBackgroundBadgeYellow": {
|
|
8708
|
+
"light": "{colorBackgroundNotificationYellow}",
|
|
8709
|
+
"dark": "{colorBackgroundNotificationYellow}"
|
|
8710
|
+
},
|
|
8711
|
+
"colorBackgroundBadgeGrey": {
|
|
8712
|
+
"light": "{colorBackgroundNotificationGrey}",
|
|
8713
|
+
"dark": "{colorBackgroundNotificationGrey}"
|
|
8714
|
+
},
|
|
8517
8715
|
"colorBorderBadge": {
|
|
8518
8716
|
"light": "transparent",
|
|
8519
8717
|
"dark": "transparent"
|
|
@@ -8792,6 +8990,10 @@ module.exports.preset = {
|
|
|
8792
8990
|
"light": "transparent",
|
|
8793
8991
|
"dark": "transparent"
|
|
8794
8992
|
},
|
|
8993
|
+
"colorBackgroundSideNavigationItemActiveCollapsed": {
|
|
8994
|
+
"light": "{colorBackgroundControlChecked}",
|
|
8995
|
+
"dark": "{colorBackgroundControlChecked}"
|
|
8996
|
+
},
|
|
8795
8997
|
"colorBackgroundLayoutMain": {
|
|
8796
8998
|
"light": "{colorWhite}",
|
|
8797
8999
|
"dark": "{colorNeutral850}"
|
|
@@ -8876,6 +9078,22 @@ module.exports.preset = {
|
|
|
8876
9078
|
"light": "{colorWarning400}",
|
|
8877
9079
|
"dark": "{colorWarning400}"
|
|
8878
9080
|
},
|
|
9081
|
+
"colorBackgroundFlashbarSuccess": {
|
|
9082
|
+
"light": "{colorBackgroundNotificationGreen}",
|
|
9083
|
+
"dark": "{colorBackgroundNotificationGreen}"
|
|
9084
|
+
},
|
|
9085
|
+
"colorBackgroundFlashbarError": {
|
|
9086
|
+
"light": "{colorBackgroundNotificationRed}",
|
|
9087
|
+
"dark": "{colorBackgroundNotificationRed}"
|
|
9088
|
+
},
|
|
9089
|
+
"colorBackgroundFlashbarInfo": {
|
|
9090
|
+
"light": "{colorBackgroundNotificationBlue}",
|
|
9091
|
+
"dark": "{colorBackgroundNotificationBlue}"
|
|
9092
|
+
},
|
|
9093
|
+
"colorBackgroundFlashbarWarning": {
|
|
9094
|
+
"light": "{colorBackgroundNotificationYellow}",
|
|
9095
|
+
"dark": "{colorBackgroundNotificationYellow}"
|
|
9096
|
+
},
|
|
8879
9097
|
"colorBackgroundNotificationStackBar": {
|
|
8880
9098
|
"light": "{colorNeutral750}",
|
|
8881
9099
|
"dark": "{colorNeutral750}"
|
|
@@ -9132,6 +9350,14 @@ module.exports.preset = {
|
|
|
9132
9350
|
"light": "{colorTextAccent}",
|
|
9133
9351
|
"dark": "{colorTextAccent}"
|
|
9134
9352
|
},
|
|
9353
|
+
"colorTextSideNavigationItemActiveCollapsed": {
|
|
9354
|
+
"light": "{colorTextInverted}",
|
|
9355
|
+
"dark": "{colorTextInverted}"
|
|
9356
|
+
},
|
|
9357
|
+
"colorTextSideNavigationItemDefault": {
|
|
9358
|
+
"light": "{colorTextBodySecondary}",
|
|
9359
|
+
"dark": "{colorTextBodySecondary}"
|
|
9360
|
+
},
|
|
9135
9361
|
"colorBorderCalendarGrid": {
|
|
9136
9362
|
"light": "transparent",
|
|
9137
9363
|
"dark": "transparent"
|
|
@@ -9805,8 +10031,8 @@ module.exports.preset = {
|
|
|
9805
10031
|
"dark": "{colorSuccess500}"
|
|
9806
10032
|
},
|
|
9807
10033
|
"colorTextStatusWarning": {
|
|
9808
|
-
"light": "{
|
|
9809
|
-
"dark": "{
|
|
10034
|
+
"light": "{colorTextNotificationYellow}",
|
|
10035
|
+
"dark": "{colorTextNotificationYellow}"
|
|
9810
10036
|
},
|
|
9811
10037
|
"colorTextTopNavigationTitle": {
|
|
9812
10038
|
"light": "{colorNeutral950}",
|
|
@@ -9928,6 +10154,26 @@ module.exports.preset = {
|
|
|
9928
10154
|
"light": "{colorNeutral150}",
|
|
9929
10155
|
"dark": "{colorNeutral700}"
|
|
9930
10156
|
},
|
|
10157
|
+
"colorBackgroundBadgeGreen": {
|
|
10158
|
+
"light": "{colorBackgroundNotificationGreen}",
|
|
10159
|
+
"dark": "{colorBackgroundNotificationGreen}"
|
|
10160
|
+
},
|
|
10161
|
+
"colorBackgroundBadgeBlue": {
|
|
10162
|
+
"light": "{colorBackgroundNotificationBlue}",
|
|
10163
|
+
"dark": "{colorBackgroundNotificationBlue}"
|
|
10164
|
+
},
|
|
10165
|
+
"colorBackgroundBadgeRed": {
|
|
10166
|
+
"light": "{colorBackgroundNotificationRed}",
|
|
10167
|
+
"dark": "{colorBackgroundNotificationRed}"
|
|
10168
|
+
},
|
|
10169
|
+
"colorBackgroundBadgeYellow": {
|
|
10170
|
+
"light": "{colorBackgroundNotificationYellow}",
|
|
10171
|
+
"dark": "{colorBackgroundNotificationYellow}"
|
|
10172
|
+
},
|
|
10173
|
+
"colorBackgroundBadgeGrey": {
|
|
10174
|
+
"light": "{colorBackgroundNotificationGrey}",
|
|
10175
|
+
"dark": "{colorBackgroundNotificationGrey}"
|
|
10176
|
+
},
|
|
9931
10177
|
"colorBorderBadge": {
|
|
9932
10178
|
"light": "transparent",
|
|
9933
10179
|
"dark": "transparent"
|
|
@@ -10206,6 +10452,10 @@ module.exports.preset = {
|
|
|
10206
10452
|
"light": "transparent",
|
|
10207
10453
|
"dark": "transparent"
|
|
10208
10454
|
},
|
|
10455
|
+
"colorBackgroundSideNavigationItemActiveCollapsed": {
|
|
10456
|
+
"light": "{colorBackgroundControlChecked}",
|
|
10457
|
+
"dark": "{colorBackgroundControlChecked}"
|
|
10458
|
+
},
|
|
10209
10459
|
"colorBackgroundLayoutMain": {
|
|
10210
10460
|
"light": "{colorWhite}",
|
|
10211
10461
|
"dark": "{colorNeutral850}"
|
|
@@ -10290,6 +10540,22 @@ module.exports.preset = {
|
|
|
10290
10540
|
"light": "{colorWarning400}",
|
|
10291
10541
|
"dark": "{colorWarning400}"
|
|
10292
10542
|
},
|
|
10543
|
+
"colorBackgroundFlashbarSuccess": {
|
|
10544
|
+
"light": "{colorBackgroundNotificationGreen}",
|
|
10545
|
+
"dark": "{colorBackgroundNotificationGreen}"
|
|
10546
|
+
},
|
|
10547
|
+
"colorBackgroundFlashbarError": {
|
|
10548
|
+
"light": "{colorBackgroundNotificationRed}",
|
|
10549
|
+
"dark": "{colorBackgroundNotificationRed}"
|
|
10550
|
+
},
|
|
10551
|
+
"colorBackgroundFlashbarInfo": {
|
|
10552
|
+
"light": "{colorBackgroundNotificationBlue}",
|
|
10553
|
+
"dark": "{colorBackgroundNotificationBlue}"
|
|
10554
|
+
},
|
|
10555
|
+
"colorBackgroundFlashbarWarning": {
|
|
10556
|
+
"light": "{colorBackgroundNotificationYellow}",
|
|
10557
|
+
"dark": "{colorBackgroundNotificationYellow}"
|
|
10558
|
+
},
|
|
10293
10559
|
"colorBackgroundNotificationStackBar": {
|
|
10294
10560
|
"light": "{colorNeutral750}",
|
|
10295
10561
|
"dark": "{colorNeutral750}"
|
|
@@ -10546,6 +10812,14 @@ module.exports.preset = {
|
|
|
10546
10812
|
"light": "{colorTextAccent}",
|
|
10547
10813
|
"dark": "{colorTextAccent}"
|
|
10548
10814
|
},
|
|
10815
|
+
"colorTextSideNavigationItemActiveCollapsed": {
|
|
10816
|
+
"light": "{colorTextInverted}",
|
|
10817
|
+
"dark": "{colorTextInverted}"
|
|
10818
|
+
},
|
|
10819
|
+
"colorTextSideNavigationItemDefault": {
|
|
10820
|
+
"light": "{colorTextBodySecondary}",
|
|
10821
|
+
"dark": "{colorTextBodySecondary}"
|
|
10822
|
+
},
|
|
10549
10823
|
"colorBorderCalendarGrid": {
|
|
10550
10824
|
"light": "transparent",
|
|
10551
10825
|
"dark": "transparent"
|
|
@@ -11342,6 +11616,26 @@ module.exports.preset = {
|
|
|
11342
11616
|
"light": "{colorNeutral150}",
|
|
11343
11617
|
"dark": "{colorNeutral700}"
|
|
11344
11618
|
},
|
|
11619
|
+
"colorBackgroundBadgeGreen": {
|
|
11620
|
+
"light": "{colorBackgroundNotificationGreen}",
|
|
11621
|
+
"dark": "{colorBackgroundNotificationGreen}"
|
|
11622
|
+
},
|
|
11623
|
+
"colorBackgroundBadgeBlue": {
|
|
11624
|
+
"light": "{colorBackgroundNotificationBlue}",
|
|
11625
|
+
"dark": "{colorBackgroundNotificationBlue}"
|
|
11626
|
+
},
|
|
11627
|
+
"colorBackgroundBadgeRed": {
|
|
11628
|
+
"light": "{colorBackgroundNotificationRed}",
|
|
11629
|
+
"dark": "{colorBackgroundNotificationRed}"
|
|
11630
|
+
},
|
|
11631
|
+
"colorBackgroundBadgeYellow": {
|
|
11632
|
+
"light": "{colorBackgroundNotificationYellow}",
|
|
11633
|
+
"dark": "{colorBackgroundNotificationYellow}"
|
|
11634
|
+
},
|
|
11635
|
+
"colorBackgroundBadgeGrey": {
|
|
11636
|
+
"light": "{colorBackgroundNotificationGrey}",
|
|
11637
|
+
"dark": "{colorBackgroundNotificationGrey}"
|
|
11638
|
+
},
|
|
11345
11639
|
"colorBorderBadge": {
|
|
11346
11640
|
"light": "transparent",
|
|
11347
11641
|
"dark": "transparent"
|
|
@@ -11622,6 +11916,10 @@ module.exports.preset = {
|
|
|
11622
11916
|
"light": "transparent",
|
|
11623
11917
|
"dark": "transparent"
|
|
11624
11918
|
},
|
|
11919
|
+
"colorBackgroundSideNavigationItemActiveCollapsed": {
|
|
11920
|
+
"light": "{colorBackgroundControlChecked}",
|
|
11921
|
+
"dark": "{colorBackgroundControlChecked}"
|
|
11922
|
+
},
|
|
11625
11923
|
"colorBackgroundLayoutMain": {
|
|
11626
11924
|
"light": "{colorNeutral850}",
|
|
11627
11925
|
"dark": "{colorNeutral850}"
|
|
@@ -11706,6 +12004,22 @@ module.exports.preset = {
|
|
|
11706
12004
|
"light": "{colorWarning400}",
|
|
11707
12005
|
"dark": "{colorWarning400}"
|
|
11708
12006
|
},
|
|
12007
|
+
"colorBackgroundFlashbarSuccess": {
|
|
12008
|
+
"light": "{colorBackgroundNotificationGreen}",
|
|
12009
|
+
"dark": "{colorBackgroundNotificationGreen}"
|
|
12010
|
+
},
|
|
12011
|
+
"colorBackgroundFlashbarError": {
|
|
12012
|
+
"light": "{colorBackgroundNotificationRed}",
|
|
12013
|
+
"dark": "{colorBackgroundNotificationRed}"
|
|
12014
|
+
},
|
|
12015
|
+
"colorBackgroundFlashbarInfo": {
|
|
12016
|
+
"light": "{colorBackgroundNotificationBlue}",
|
|
12017
|
+
"dark": "{colorBackgroundNotificationBlue}"
|
|
12018
|
+
},
|
|
12019
|
+
"colorBackgroundFlashbarWarning": {
|
|
12020
|
+
"light": "{colorBackgroundNotificationYellow}",
|
|
12021
|
+
"dark": "{colorBackgroundNotificationYellow}"
|
|
12022
|
+
},
|
|
11709
12023
|
"colorBackgroundNotificationStackBar": {
|
|
11710
12024
|
"light": "{colorNeutral750}",
|
|
11711
12025
|
"dark": "{colorNeutral750}"
|
|
@@ -11962,6 +12276,14 @@ module.exports.preset = {
|
|
|
11962
12276
|
"light": "{colorTextAccent}",
|
|
11963
12277
|
"dark": "{colorTextAccent}"
|
|
11964
12278
|
},
|
|
12279
|
+
"colorTextSideNavigationItemActiveCollapsed": {
|
|
12280
|
+
"light": "{colorTextInverted}",
|
|
12281
|
+
"dark": "{colorTextInverted}"
|
|
12282
|
+
},
|
|
12283
|
+
"colorTextSideNavigationItemDefault": {
|
|
12284
|
+
"light": "{colorTextBodySecondary}",
|
|
12285
|
+
"dark": "{colorTextBodySecondary}"
|
|
12286
|
+
},
|
|
11965
12287
|
"colorBorderCalendarGrid": {
|
|
11966
12288
|
"light": "transparent",
|
|
11967
12289
|
"dark": "transparent"
|
|
@@ -12758,6 +13080,26 @@ module.exports.preset = {
|
|
|
12758
13080
|
"light": "{colorNeutral700}",
|
|
12759
13081
|
"dark": "{colorNeutral700}"
|
|
12760
13082
|
},
|
|
13083
|
+
"colorBackgroundBadgeGreen": {
|
|
13084
|
+
"light": "{colorBackgroundNotificationGreen}",
|
|
13085
|
+
"dark": "{colorBackgroundNotificationGreen}"
|
|
13086
|
+
},
|
|
13087
|
+
"colorBackgroundBadgeBlue": {
|
|
13088
|
+
"light": "{colorBackgroundNotificationBlue}",
|
|
13089
|
+
"dark": "{colorBackgroundNotificationBlue}"
|
|
13090
|
+
},
|
|
13091
|
+
"colorBackgroundBadgeRed": {
|
|
13092
|
+
"light": "{colorBackgroundNotificationRed}",
|
|
13093
|
+
"dark": "{colorBackgroundNotificationRed}"
|
|
13094
|
+
},
|
|
13095
|
+
"colorBackgroundBadgeYellow": {
|
|
13096
|
+
"light": "{colorBackgroundNotificationYellow}",
|
|
13097
|
+
"dark": "{colorBackgroundNotificationYellow}"
|
|
13098
|
+
},
|
|
13099
|
+
"colorBackgroundBadgeGrey": {
|
|
13100
|
+
"light": "{colorBackgroundNotificationGrey}",
|
|
13101
|
+
"dark": "{colorBackgroundNotificationGrey}"
|
|
13102
|
+
},
|
|
12761
13103
|
"colorBorderBadge": {
|
|
12762
13104
|
"light": "transparent",
|
|
12763
13105
|
"dark": "transparent"
|
|
@@ -13151,6 +13493,7 @@ module.exports.preset = {
|
|
|
13151
13493
|
"colorBackgroundInputDisabled": "color",
|
|
13152
13494
|
"colorBackgroundItemSelected": "color",
|
|
13153
13495
|
"colorBackgroundSideNavigationItemActive": "color",
|
|
13496
|
+
"colorBackgroundSideNavigationItemActiveCollapsed": "color",
|
|
13154
13497
|
"colorBackgroundLayoutMain": "color",
|
|
13155
13498
|
"colorBackgroundDrawer": "color",
|
|
13156
13499
|
"colorBackgroundBackdrop": "color",
|
|
@@ -13172,6 +13515,10 @@ module.exports.preset = {
|
|
|
13172
13515
|
"colorBackgroundNotificationGrey": "color",
|
|
13173
13516
|
"colorBackgroundNotificationRed": "color",
|
|
13174
13517
|
"colorBackgroundNotificationYellow": "color",
|
|
13518
|
+
"colorBackgroundFlashbarSuccess": "color",
|
|
13519
|
+
"colorBackgroundFlashbarError": "color",
|
|
13520
|
+
"colorBackgroundFlashbarInfo": "color",
|
|
13521
|
+
"colorBackgroundFlashbarWarning": "color",
|
|
13175
13522
|
"colorBackgroundNotificationStackBar": "color",
|
|
13176
13523
|
"colorBackgroundNotificationStackBarActive": "color",
|
|
13177
13524
|
"colorBackgroundNotificationStackBarHover": "color",
|
|
@@ -13236,6 +13583,8 @@ module.exports.preset = {
|
|
|
13236
13583
|
"colorTextButtonPrimaryDisabled": "color",
|
|
13237
13584
|
"colorItemSelected": "color",
|
|
13238
13585
|
"colorTextSideNavigationItemActive": "color",
|
|
13586
|
+
"colorTextSideNavigationItemActiveCollapsed": "color",
|
|
13587
|
+
"colorTextSideNavigationItemDefault": "color",
|
|
13239
13588
|
"colorBorderCalendarGrid": "color",
|
|
13240
13589
|
"colorBorderCalendarGridSelectedFocusRing": "color",
|
|
13241
13590
|
"colorBorderCellShaded": "color",
|
|
@@ -13435,6 +13784,11 @@ module.exports.preset = {
|
|
|
13435
13784
|
"colorIconActionCardDisabled": "color",
|
|
13436
13785
|
"colorBackgroundSkeleton": "color",
|
|
13437
13786
|
"colorBackgroundSkeletonWave": "color",
|
|
13787
|
+
"colorBackgroundBadgeGreen": "color",
|
|
13788
|
+
"colorBackgroundBadgeBlue": "color",
|
|
13789
|
+
"colorBackgroundBadgeRed": "color",
|
|
13790
|
+
"colorBackgroundBadgeYellow": "color",
|
|
13791
|
+
"colorBackgroundBadgeGrey": "color",
|
|
13438
13792
|
"colorBorderBadge": "color",
|
|
13439
13793
|
"colorBorderBadgeGrey": "color",
|
|
13440
13794
|
"colorBorderBadgeGreen": "color",
|
|
@@ -13969,6 +14323,7 @@ module.exports.preset = {
|
|
|
13969
14323
|
"colorBackgroundInputDisabled",
|
|
13970
14324
|
"colorBackgroundItemSelected",
|
|
13971
14325
|
"colorBackgroundSideNavigationItemActive",
|
|
14326
|
+
"colorBackgroundSideNavigationItemActiveCollapsed",
|
|
13972
14327
|
"colorBackgroundLayoutMain",
|
|
13973
14328
|
"colorBackgroundBackdrop",
|
|
13974
14329
|
"colorBackgroundLayoutPanel",
|
|
@@ -13984,6 +14339,10 @@ module.exports.preset = {
|
|
|
13984
14339
|
"colorBackgroundNotificationGrey",
|
|
13985
14340
|
"colorBackgroundNotificationRed",
|
|
13986
14341
|
"colorBackgroundNotificationYellow",
|
|
14342
|
+
"colorBackgroundFlashbarSuccess",
|
|
14343
|
+
"colorBackgroundFlashbarError",
|
|
14344
|
+
"colorBackgroundFlashbarInfo",
|
|
14345
|
+
"colorBackgroundFlashbarWarning",
|
|
13987
14346
|
"colorBackgroundPopover",
|
|
13988
14347
|
"colorBackgroundProgressBarValueDefault",
|
|
13989
14348
|
"colorBackgroundProgressBarDefault",
|
|
@@ -14031,6 +14390,8 @@ module.exports.preset = {
|
|
|
14031
14390
|
"colorTextButtonPrimaryDisabled",
|
|
14032
14391
|
"colorItemSelected",
|
|
14033
14392
|
"colorTextSideNavigationItemActive",
|
|
14393
|
+
"colorTextSideNavigationItemActiveCollapsed",
|
|
14394
|
+
"colorTextSideNavigationItemDefault",
|
|
14034
14395
|
"colorBorderCard",
|
|
14035
14396
|
"colorBorderContainerTop",
|
|
14036
14397
|
"colorBorderControlDefault",
|
|
@@ -14151,6 +14512,11 @@ module.exports.preset = {
|
|
|
14151
14512
|
"colorBorderActionCardDisabled",
|
|
14152
14513
|
"colorBackgroundActionCardDisabled",
|
|
14153
14514
|
"colorTextActionCardDisabled",
|
|
14515
|
+
"colorBackgroundBadgeGreen",
|
|
14516
|
+
"colorBackgroundBadgeBlue",
|
|
14517
|
+
"colorBackgroundBadgeRed",
|
|
14518
|
+
"colorBackgroundBadgeYellow",
|
|
14519
|
+
"colorBackgroundBadgeGrey",
|
|
14154
14520
|
"colorBorderBadge",
|
|
14155
14521
|
"colorBorderBadgeGrey",
|
|
14156
14522
|
"colorBorderBadgeGreen",
|
|
@@ -14235,6 +14601,8 @@ module.exports.preset = {
|
|
|
14235
14601
|
"borderRadiusFlashbar",
|
|
14236
14602
|
"borderRadiusInput",
|
|
14237
14603
|
"borderRadiusItem",
|
|
14604
|
+
"borderRadiusSideNavigationItem",
|
|
14605
|
+
"borderRadiusSideNavigationItemCollapsed",
|
|
14238
14606
|
"borderRadiusPopover",
|
|
14239
14607
|
"borderRadiusStatusIndicator",
|
|
14240
14608
|
"borderRadiusTabsFocusRing",
|
|
@@ -14251,6 +14619,7 @@ module.exports.preset = {
|
|
|
14251
14619
|
"borderWidthAlertBlockStart",
|
|
14252
14620
|
"borderWidthAlertInlineEnd",
|
|
14253
14621
|
"borderWidthAlertInlineStart",
|
|
14622
|
+
"borderWidthFlashbarInlineStart",
|
|
14254
14623
|
"borderWidthButton",
|
|
14255
14624
|
"borderWidthCard",
|
|
14256
14625
|
"borderWidthCardSelected",
|
|
@@ -14509,6 +14878,10 @@ module.exports.preset = {
|
|
|
14509
14878
|
"colorBackgroundNotificationGrey",
|
|
14510
14879
|
"colorBackgroundNotificationRed",
|
|
14511
14880
|
"colorBackgroundNotificationYellow",
|
|
14881
|
+
"colorBackgroundFlashbarSuccess",
|
|
14882
|
+
"colorBackgroundFlashbarError",
|
|
14883
|
+
"colorBackgroundFlashbarInfo",
|
|
14884
|
+
"colorBackgroundFlashbarWarning",
|
|
14512
14885
|
"colorBackgroundPopover",
|
|
14513
14886
|
"colorBackgroundProgressBarValueDefault",
|
|
14514
14887
|
"colorBackgroundProgressBarDefault",
|
|
@@ -14637,6 +15010,8 @@ module.exports.preset = {
|
|
|
14637
15010
|
"colorTextLayoutToggleSelected",
|
|
14638
15011
|
"colorTextLinkDefault",
|
|
14639
15012
|
"colorTextLinkHover",
|
|
15013
|
+
"colorTextLinkDecorationDefault",
|
|
15014
|
+
"colorTextLinkDecorationHover",
|
|
14640
15015
|
"colorTextLinkSecondaryDefault",
|
|
14641
15016
|
"colorTextLinkSecondaryHover",
|
|
14642
15017
|
"colorTextLinkInfoDefault",
|
|
@@ -14671,6 +15046,11 @@ module.exports.preset = {
|
|
|
14671
15046
|
"colorBorderActionCardDisabled",
|
|
14672
15047
|
"colorBackgroundActionCardDisabled",
|
|
14673
15048
|
"colorTextActionCardDisabled",
|
|
15049
|
+
"colorBackgroundBadgeGreen",
|
|
15050
|
+
"colorBackgroundBadgeBlue",
|
|
15051
|
+
"colorBackgroundBadgeRed",
|
|
15052
|
+
"colorBackgroundBadgeYellow",
|
|
15053
|
+
"colorBackgroundBadgeGrey",
|
|
14674
15054
|
"colorBorderBadge",
|
|
14675
15055
|
"colorBorderBadgeGrey",
|
|
14676
15056
|
"colorBorderBadgeGreen",
|
|
@@ -14760,6 +15140,7 @@ module.exports.preset = {
|
|
|
14760
15140
|
"borderWidthAlertBlockStart",
|
|
14761
15141
|
"borderWidthAlertInlineEnd",
|
|
14762
15142
|
"borderWidthAlertInlineStart",
|
|
15143
|
+
"borderWidthFlashbarInlineStart",
|
|
14763
15144
|
"borderWidthButton",
|
|
14764
15145
|
"borderWidthCard",
|
|
14765
15146
|
"borderWidthCardSelected",
|
|
@@ -15171,6 +15552,7 @@ module.exports.preset = {
|
|
|
15171
15552
|
"colorBackgroundInputDisabled": "color-background-input-disabled",
|
|
15172
15553
|
"colorBackgroundItemSelected": "color-background-item-selected",
|
|
15173
15554
|
"colorBackgroundSideNavigationItemActive": "color-background-side-navigation-item-active",
|
|
15555
|
+
"colorBackgroundSideNavigationItemActiveCollapsed": "color-background-side-navigation-item-active-collapsed",
|
|
15174
15556
|
"colorBackgroundLayoutMain": "color-background-layout-main",
|
|
15175
15557
|
"colorBackgroundDrawer": "color-background-drawer",
|
|
15176
15558
|
"colorBackgroundBackdrop": "color-background-backdrop",
|
|
@@ -15192,6 +15574,10 @@ module.exports.preset = {
|
|
|
15192
15574
|
"colorBackgroundNotificationGrey": "color-background-notification-grey",
|
|
15193
15575
|
"colorBackgroundNotificationRed": "color-background-notification-red",
|
|
15194
15576
|
"colorBackgroundNotificationYellow": "color-background-notification-yellow",
|
|
15577
|
+
"colorBackgroundFlashbarSuccess": "color-background-flashbar-success",
|
|
15578
|
+
"colorBackgroundFlashbarError": "color-background-flashbar-error",
|
|
15579
|
+
"colorBackgroundFlashbarInfo": "color-background-flashbar-info",
|
|
15580
|
+
"colorBackgroundFlashbarWarning": "color-background-flashbar-warning",
|
|
15195
15581
|
"colorBackgroundNotificationStackBar": "color-background-notification-stack-bar",
|
|
15196
15582
|
"colorBackgroundNotificationStackBarActive": "color-background-notification-stack-bar-active",
|
|
15197
15583
|
"colorBackgroundNotificationStackBarHover": "color-background-notification-stack-bar-hover",
|
|
@@ -15256,6 +15642,8 @@ module.exports.preset = {
|
|
|
15256
15642
|
"colorTextButtonPrimaryDisabled": "color-text-button-primary-disabled",
|
|
15257
15643
|
"colorItemSelected": "color-item-selected",
|
|
15258
15644
|
"colorTextSideNavigationItemActive": "color-text-side-navigation-item-active",
|
|
15645
|
+
"colorTextSideNavigationItemActiveCollapsed": "color-text-side-navigation-item-active-collapsed",
|
|
15646
|
+
"colorTextSideNavigationItemDefault": "color-text-side-navigation-item-default",
|
|
15259
15647
|
"colorBorderCalendarGrid": "color-border-calendar-grid",
|
|
15260
15648
|
"colorBorderCalendarGridSelectedFocusRing": "color-border-calendar-grid-selected-focus-ring",
|
|
15261
15649
|
"colorBorderCellShaded": "color-border-cell-shaded",
|
|
@@ -15455,6 +15843,11 @@ module.exports.preset = {
|
|
|
15455
15843
|
"colorIconActionCardDisabled": "color-icon-action-card-disabled",
|
|
15456
15844
|
"colorBackgroundSkeleton": "color-background-skeleton",
|
|
15457
15845
|
"colorBackgroundSkeletonWave": "color-background-skeleton-wave",
|
|
15846
|
+
"colorBackgroundBadgeGreen": "color-background-badge-green",
|
|
15847
|
+
"colorBackgroundBadgeBlue": "color-background-badge-blue",
|
|
15848
|
+
"colorBackgroundBadgeRed": "color-background-badge-red",
|
|
15849
|
+
"colorBackgroundBadgeYellow": "color-background-badge-yellow",
|
|
15850
|
+
"colorBackgroundBadgeGrey": "color-background-badge-grey",
|
|
15458
15851
|
"colorBorderBadge": "color-border-badge",
|
|
15459
15852
|
"colorBorderBadgeGrey": "color-border-badge-grey",
|
|
15460
15853
|
"colorBorderBadgeGreen": "color-border-badge-green",
|
|
@@ -15483,6 +15876,8 @@ module.exports.preset = {
|
|
|
15483
15876
|
"fontLinkButtonWeight": "font-link-button-weight",
|
|
15484
15877
|
"fontPanelHeaderLineHeight": "font-panel-header-line-height",
|
|
15485
15878
|
"fontPanelHeaderSize": "font-panel-header-size",
|
|
15879
|
+
"fontSideNavigationSectionHeaderSize": "font-side-navigation-section-header-size",
|
|
15880
|
+
"fontSideNavigationSectionHeaderWeight": "font-side-navigation-section-header-weight",
|
|
15486
15881
|
"fontSizeBodyM": "font-size-body-m",
|
|
15487
15882
|
"fontSizeBodyS": "font-size-body-s",
|
|
15488
15883
|
"fontSizeDisplayL": "font-size-display-l",
|
|
@@ -15514,6 +15909,7 @@ module.exports.preset = {
|
|
|
15514
15909
|
"fontWeightHeavy": "font-weight-heavy",
|
|
15515
15910
|
"fontWeightKeyValuePairsLabel": "font-weight-key-value-pairs-label",
|
|
15516
15911
|
"fontWeightLighter": "font-weight-lighter",
|
|
15912
|
+
"fontWeightLinkSecondary": "font-weight-link-secondary",
|
|
15517
15913
|
"fontWeightNormal": "font-weight-normal",
|
|
15518
15914
|
"fontWeightTabs": "font-weight-tabs",
|
|
15519
15915
|
"fontWeightTabsDisabled": "font-weight-tabs-disabled",
|
|
@@ -15573,6 +15969,8 @@ module.exports.preset = {
|
|
|
15573
15969
|
"borderRadiusFlashbar": "border-radius-flashbar",
|
|
15574
15970
|
"borderRadiusInput": "border-radius-input",
|
|
15575
15971
|
"borderRadiusItem": "border-radius-item",
|
|
15972
|
+
"borderRadiusSideNavigationItem": "border-radius-side-navigation-item",
|
|
15973
|
+
"borderRadiusSideNavigationItemCollapsed": "border-radius-side-navigation-item-collapsed",
|
|
15576
15974
|
"borderRadiusItemCardDefault": "border-radius-item-card-default",
|
|
15577
15975
|
"borderRadiusItemCardEmbedded": "border-radius-item-card-embedded",
|
|
15578
15976
|
"borderRadiusPopover": "border-radius-popover",
|
|
@@ -15593,6 +15991,7 @@ module.exports.preset = {
|
|
|
15593
15991
|
"borderWidthAlertBlockStart": "border-width-alert-block-start",
|
|
15594
15992
|
"borderWidthAlertInlineEnd": "border-width-alert-inline-end",
|
|
15595
15993
|
"borderWidthAlertInlineStart": "border-width-alert-inline-start",
|
|
15994
|
+
"borderWidthFlashbarInlineStart": "border-width-flashbar-inline-start",
|
|
15596
15995
|
"borderWidthButton": "border-width-button",
|
|
15597
15996
|
"borderWidthCard": "border-width-card",
|
|
15598
15997
|
"borderWidthCardSelected": "border-width-card-selected",
|
|
@@ -16118,7 +16517,7 @@ module.exports.preset = {
|
|
|
16118
16517
|
"colorBackgroundCalendarCurrentDate": "--color-background-calendar-current-date-sk0f6i",
|
|
16119
16518
|
"colorBackgroundCellShaded": "--color-background-cell-shaded-v7o6so",
|
|
16120
16519
|
"colorBackgroundCodeEditorGutterActiveLineDefault": "--color-background-code-editor-gutter-active-line-default-51v1pv",
|
|
16121
|
-
"colorBackgroundCodeEditorGutterActiveLineError": "--color-background-code-editor-gutter-active-line-error-
|
|
16520
|
+
"colorBackgroundCodeEditorGutterActiveLineError": "--color-background-code-editor-gutter-active-line-error-4tea3r",
|
|
16122
16521
|
"colorBackgroundCodeEditorGutterDefault": "--color-background-code-editor-gutter-default-15qdwh",
|
|
16123
16522
|
"colorBackgroundCodeEditorLoading": "--color-background-code-editor-loading-6nwpin",
|
|
16124
16523
|
"colorBackgroundCodeEditorPaneItemHover": "--color-background-code-editor-pane-item-hover-z6k9mr",
|
|
@@ -16141,6 +16540,7 @@ module.exports.preset = {
|
|
|
16141
16540
|
"colorBackgroundInputDisabled": "--color-background-input-disabled-dihaja",
|
|
16142
16541
|
"colorBackgroundItemSelected": "--color-background-item-selected-9gppru",
|
|
16143
16542
|
"colorBackgroundSideNavigationItemActive": "--color-background-side-navigation-item-active-adfprg",
|
|
16543
|
+
"colorBackgroundSideNavigationItemActiveCollapsed": "--color-background-side-navigation-item-active-collapsed-ceubmy",
|
|
16144
16544
|
"colorBackgroundLayoutMain": "--color-background-layout-main-5ilwcb",
|
|
16145
16545
|
"colorBackgroundDrawer": "--color-background-drawer-5hs0eh",
|
|
16146
16546
|
"colorBackgroundBackdrop": "--color-background-backdrop-33f45f",
|
|
@@ -16162,6 +16562,10 @@ module.exports.preset = {
|
|
|
16162
16562
|
"colorBackgroundNotificationGrey": "--color-background-notification-grey-x3vul6",
|
|
16163
16563
|
"colorBackgroundNotificationRed": "--color-background-notification-red-0487ea",
|
|
16164
16564
|
"colorBackgroundNotificationYellow": "--color-background-notification-yellow-y6us5r",
|
|
16565
|
+
"colorBackgroundFlashbarSuccess": "--color-background-flashbar-success-vw7ng1",
|
|
16566
|
+
"colorBackgroundFlashbarError": "--color-background-flashbar-error-q2h7ak",
|
|
16567
|
+
"colorBackgroundFlashbarInfo": "--color-background-flashbar-info-2pbjjg",
|
|
16568
|
+
"colorBackgroundFlashbarWarning": "--color-background-flashbar-warning-n9x5as",
|
|
16165
16569
|
"colorBackgroundNotificationStackBar": "--color-background-notification-stack-bar-qe5n4w",
|
|
16166
16570
|
"colorBackgroundNotificationStackBarActive": "--color-background-notification-stack-bar-active-a4h9r8",
|
|
16167
16571
|
"colorBackgroundNotificationStackBarHover": "--color-background-notification-stack-bar-hover-jh82oo",
|
|
@@ -16179,14 +16583,14 @@ module.exports.preset = {
|
|
|
16179
16583
|
"colorBackgroundSliderHandleActive": "--color-background-slider-handle-active-50ubqb",
|
|
16180
16584
|
"colorBackgroundSliderTrackDefault": "--color-background-slider-track-default-vk2c9o",
|
|
16181
16585
|
"colorBackgroundSliderHandleRing": "--color-background-slider-handle-ring-9sfenj",
|
|
16182
|
-
"colorBackgroundSliderHandleErrorDefault": "--color-background-slider-handle-error-default-
|
|
16183
|
-
"colorBackgroundSliderHandleErrorActive": "--color-background-slider-handle-error-active-
|
|
16184
|
-
"colorBackgroundSliderHandleWarningDefault": "--color-background-slider-handle-warning-default-
|
|
16185
|
-
"colorBackgroundSliderHandleWarningActive": "--color-background-slider-handle-warning-active-
|
|
16186
|
-
"colorBackgroundSliderRangeErrorDefault": "--color-background-slider-range-error-default-
|
|
16187
|
-
"colorBackgroundSliderRangeErrorActive": "--color-background-slider-range-error-active-
|
|
16188
|
-
"colorBackgroundSliderRangeWarningDefault": "--color-background-slider-range-warning-default-
|
|
16189
|
-
"colorBackgroundSliderRangeWarningActive": "--color-background-slider-range-warning-active-
|
|
16586
|
+
"colorBackgroundSliderHandleErrorDefault": "--color-background-slider-handle-error-default-lkvr7g",
|
|
16587
|
+
"colorBackgroundSliderHandleErrorActive": "--color-background-slider-handle-error-active-juz76l",
|
|
16588
|
+
"colorBackgroundSliderHandleWarningDefault": "--color-background-slider-handle-warning-default-bxdwem",
|
|
16589
|
+
"colorBackgroundSliderHandleWarningActive": "--color-background-slider-handle-warning-active-g2mc01",
|
|
16590
|
+
"colorBackgroundSliderRangeErrorDefault": "--color-background-slider-range-error-default-3mwwq7",
|
|
16591
|
+
"colorBackgroundSliderRangeErrorActive": "--color-background-slider-range-error-active-jkg6yr",
|
|
16592
|
+
"colorBackgroundSliderRangeWarningDefault": "--color-background-slider-range-warning-default-enwb8c",
|
|
16593
|
+
"colorBackgroundSliderRangeWarningActive": "--color-background-slider-range-warning-active-7pdaif",
|
|
16190
16594
|
"colorBackgroundStatusError": "--color-background-status-error-mu3lcw",
|
|
16191
16595
|
"colorBackgroundStatusInfo": "--color-background-status-info-sfobba",
|
|
16192
16596
|
"colorBackgroundDialog": "--color-background-dialog-2fj3uu",
|
|
@@ -16226,6 +16630,8 @@ module.exports.preset = {
|
|
|
16226
16630
|
"colorTextButtonPrimaryDisabled": "--color-text-button-primary-disabled-q79gms",
|
|
16227
16631
|
"colorItemSelected": "--color-item-selected-72rnwy",
|
|
16228
16632
|
"colorTextSideNavigationItemActive": "--color-text-side-navigation-item-active-w3c4dj",
|
|
16633
|
+
"colorTextSideNavigationItemActiveCollapsed": "--color-text-side-navigation-item-active-collapsed-kwpe9n",
|
|
16634
|
+
"colorTextSideNavigationItemDefault": "--color-text-side-navigation-item-default-1vcdej",
|
|
16229
16635
|
"colorBorderCalendarGrid": "--color-border-calendar-grid-67r4w4",
|
|
16230
16636
|
"colorBorderCalendarGridSelectedFocusRing": "--color-border-calendar-grid-selected-focus-ring-jk1fb0",
|
|
16231
16637
|
"colorBorderCellShaded": "--color-border-cell-shaded-0ipazf",
|
|
@@ -16390,11 +16796,11 @@ module.exports.preset = {
|
|
|
16390
16796
|
"colorTextSegmentDefault": "--color-text-segment-default-vi2vn9",
|
|
16391
16797
|
"colorTextSegmentHover": "--color-text-segment-hover-65a2x8",
|
|
16392
16798
|
"colorTextSmall": "--color-text-small-m1tr70",
|
|
16393
|
-
"colorTextStatusError": "--color-text-status-error-
|
|
16799
|
+
"colorTextStatusError": "--color-text-status-error-bwp1cm",
|
|
16394
16800
|
"colorTextStatusInactive": "--color-text-status-inactive-gy7337",
|
|
16395
|
-
"colorTextStatusInfo": "--color-text-status-info-
|
|
16396
|
-
"colorTextStatusSuccess": "--color-text-status-success-
|
|
16397
|
-
"colorTextStatusWarning": "--color-text-status-warning-
|
|
16801
|
+
"colorTextStatusInfo": "--color-text-status-info-2ftgrk",
|
|
16802
|
+
"colorTextStatusSuccess": "--color-text-status-success-r9s7ha",
|
|
16803
|
+
"colorTextStatusWarning": "--color-text-status-warning-ylxn5k",
|
|
16398
16804
|
"colorTextTopNavigationTitle": "--color-text-top-navigation-title-en0v40",
|
|
16399
16805
|
"colorTextTutorialHotspotDefault": "--color-text-tutorial-hotspot-default-xfv3ow",
|
|
16400
16806
|
"colorTextTutorialHotspotHover": "--color-text-tutorial-hotspot-hover-92pxog",
|
|
@@ -16425,6 +16831,11 @@ module.exports.preset = {
|
|
|
16425
16831
|
"colorIconActionCardDisabled": "--color-icon-action-card-disabled-wm3kyf",
|
|
16426
16832
|
"colorBackgroundSkeleton": "--color-background-skeleton-sjxg4n",
|
|
16427
16833
|
"colorBackgroundSkeletonWave": "--color-background-skeleton-wave-1dy97d",
|
|
16834
|
+
"colorBackgroundBadgeGreen": "--color-background-badge-green-1bcjh0",
|
|
16835
|
+
"colorBackgroundBadgeBlue": "--color-background-badge-blue-6346bd",
|
|
16836
|
+
"colorBackgroundBadgeRed": "--color-background-badge-red-i81nmc",
|
|
16837
|
+
"colorBackgroundBadgeYellow": "--color-background-badge-yellow-n60ths",
|
|
16838
|
+
"colorBackgroundBadgeGrey": "--color-background-badge-grey-ipi6oq",
|
|
16428
16839
|
"colorBorderBadge": "--color-border-badge-un9qea",
|
|
16429
16840
|
"colorBorderBadgeGrey": "--color-border-badge-grey-n3ma6u",
|
|
16430
16841
|
"colorBorderBadgeGreen": "--color-border-badge-green-9thsha",
|
|
@@ -16453,6 +16864,8 @@ module.exports.preset = {
|
|
|
16453
16864
|
"fontLinkButtonWeight": "--font-link-button-weight-vslyg9",
|
|
16454
16865
|
"fontPanelHeaderLineHeight": "--font-panel-header-line-height-8xb2qj",
|
|
16455
16866
|
"fontPanelHeaderSize": "--font-panel-header-size-33h9j8",
|
|
16867
|
+
"fontSideNavigationSectionHeaderSize": "--font-side-navigation-section-header-size-cnrduv",
|
|
16868
|
+
"fontSideNavigationSectionHeaderWeight": "--font-side-navigation-section-header-weight-h807bs",
|
|
16456
16869
|
"fontSizeBodyM": "--font-size-body-m-a7nh2n",
|
|
16457
16870
|
"fontSizeBodyS": "--font-size-body-s-smc8cv",
|
|
16458
16871
|
"fontSizeDisplayL": "--font-size-display-l-wa6woo",
|
|
@@ -16484,6 +16897,7 @@ module.exports.preset = {
|
|
|
16484
16897
|
"fontWeightHeavy": "--font-weight-heavy-6yh4un",
|
|
16485
16898
|
"fontWeightKeyValuePairsLabel": "--font-weight-key-value-pairs-label-zdidmd",
|
|
16486
16899
|
"fontWeightLighter": "--font-weight-lighter-ldkoj5",
|
|
16900
|
+
"fontWeightLinkSecondary": "--font-weight-link-secondary-2yfxrh",
|
|
16487
16901
|
"fontWeightNormal": "--font-weight-normal-cxw1m3",
|
|
16488
16902
|
"fontWeightTabs": "--font-weight-tabs-ichxzl",
|
|
16489
16903
|
"fontWeightTabsDisabled": "--font-weight-tabs-disabled-v5r551",
|
|
@@ -16543,6 +16957,8 @@ module.exports.preset = {
|
|
|
16543
16957
|
"borderRadiusFlashbar": "--border-radius-flashbar-pp1ptu",
|
|
16544
16958
|
"borderRadiusInput": "--border-radius-input-7q0str",
|
|
16545
16959
|
"borderRadiusItem": "--border-radius-item-iwaia5",
|
|
16960
|
+
"borderRadiusSideNavigationItem": "--border-radius-side-navigation-item-okro0s",
|
|
16961
|
+
"borderRadiusSideNavigationItemCollapsed": "--border-radius-side-navigation-item-collapsed-e8960w",
|
|
16546
16962
|
"borderRadiusItemCardDefault": "--border-radius-item-card-default-pi9u8q",
|
|
16547
16963
|
"borderRadiusItemCardEmbedded": "--border-radius-item-card-embedded-l0g6e3",
|
|
16548
16964
|
"borderRadiusPopover": "--border-radius-popover-6fqb5w",
|
|
@@ -16563,6 +16979,7 @@ module.exports.preset = {
|
|
|
16563
16979
|
"borderWidthAlertBlockStart": "--border-width-alert-block-start-5wbfsk",
|
|
16564
16980
|
"borderWidthAlertInlineEnd": "--border-width-alert-inline-end-9s426v",
|
|
16565
16981
|
"borderWidthAlertInlineStart": "--border-width-alert-inline-start-gjm6m1",
|
|
16982
|
+
"borderWidthFlashbarInlineStart": "--border-width-flashbar-inline-start-exuaev",
|
|
16566
16983
|
"borderWidthButton": "--border-width-button-jm0qg7",
|
|
16567
16984
|
"borderWidthCard": "--border-width-card-x24gzt",
|
|
16568
16985
|
"borderWidthCardSelected": "--border-width-card-selected-01i6br",
|