@carbon/ibm-products 1.16.0 → 1.18.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. package/README.md +30 -27
  2. package/css/components/Datagrid/styles/datagrid.css +24 -4
  3. package/css/components/Datagrid/styles/datagrid.css.map +1 -1
  4. package/css/components/Datagrid/styles/index.css +24 -4
  5. package/css/components/Datagrid/styles/index.css.map +1 -1
  6. package/css/index-full-carbon.css +241 -93
  7. package/css/index-full-carbon.css.map +1 -1
  8. package/css/index-full-carbon.min.css +7 -4
  9. package/css/index-full-carbon.min.css.map +1 -1
  10. package/css/index-without-carbon-released-only.css +9 -3
  11. package/css/index-without-carbon-released-only.css.map +1 -1
  12. package/css/index-without-carbon-released-only.min.css +4 -1
  13. package/css/index-without-carbon-released-only.min.css.map +1 -1
  14. package/css/index-without-carbon.css +124 -27
  15. package/css/index-without-carbon.css.map +1 -1
  16. package/css/index-without-carbon.min.css +6 -3
  17. package/css/index-without-carbon.min.css.map +1 -1
  18. package/css/index.css +150 -58
  19. package/css/index.css.map +1 -1
  20. package/css/index.min.css +7 -4
  21. package/css/index.min.css.map +1 -1
  22. package/es/components/AddSelect/AddSelect.js +57 -8
  23. package/es/components/AddSelect/AddSelectColumn.js +31 -73
  24. package/es/components/AddSelect/AddSelectFilter.js +2 -2
  25. package/es/components/AddSelect/AddSelectList.js +32 -6
  26. package/es/components/AddSelect/AddSelectMetaPanel.js +54 -0
  27. package/es/components/AddSelect/AddSelectSidebar.js +19 -1
  28. package/es/components/AddSelect/AddSelectSort.js +61 -0
  29. package/es/components/AddSelect/add-select-utils.js +21 -0
  30. package/es/components/AddSelect/hooks/useItemSort.js +20 -0
  31. package/es/components/DataSpreadsheet/DataSpreadsheet.js +28 -13
  32. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +60 -42
  33. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +73 -6
  34. package/es/components/DataSpreadsheet/hooks/index.js +3 -1
  35. package/es/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +65 -19
  36. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +60 -0
  37. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +153 -0
  38. package/es/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +16 -0
  39. package/es/components/DataSpreadsheet/utils/createCellSelectionArea.js +11 -6
  40. package/es/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +8 -2
  41. package/es/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +7 -3
  42. package/es/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +34 -0
  43. package/es/components/Datagrid/Datagrid/Datagrid.js +25 -13
  44. package/es/components/Datagrid/Datagrid/DatagridEmptyBody.js +22 -3
  45. package/es/components/Datagrid/Datagrid/DatagridHead.js +8 -16
  46. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +10 -10
  47. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +3 -3
  48. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +1 -1
  49. package/es/components/Datagrid/Datagrid/index.js +6 -7
  50. package/es/components/Datagrid/index.js +1 -1
  51. package/es/components/ExportModal/ExportModal.js +10 -5
  52. package/es/components/SidePanel/SidePanel.js +5 -1
  53. package/es/components/WebTerminal/WebTerminal.js +36 -11
  54. package/es/components/WebTerminal/WebTerminalContentWrapper.js +49 -0
  55. package/es/components/WebTerminal/index.js +2 -1
  56. package/es/components/index.js +1 -1
  57. package/es/global/js/package-settings.js +1 -0
  58. package/lib/components/AddSelect/AddSelect.js +58 -8
  59. package/lib/components/AddSelect/AddSelectColumn.js +32 -71
  60. package/lib/components/AddSelect/AddSelectFilter.js +2 -2
  61. package/lib/components/AddSelect/AddSelectList.js +30 -4
  62. package/lib/components/AddSelect/AddSelectMetaPanel.js +77 -0
  63. package/lib/components/AddSelect/AddSelectSidebar.js +20 -1
  64. package/lib/components/AddSelect/AddSelectSort.js +79 -0
  65. package/lib/components/AddSelect/add-select-utils.js +29 -2
  66. package/lib/components/AddSelect/hooks/useItemSort.js +33 -0
  67. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +27 -12
  68. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +62 -41
  69. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +76 -6
  70. package/lib/components/DataSpreadsheet/hooks/index.js +17 -1
  71. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +68 -18
  72. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +74 -0
  73. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +161 -0
  74. package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +26 -0
  75. package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.js +11 -6
  76. package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +8 -2
  77. package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +7 -3
  78. package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +45 -0
  79. package/lib/components/Datagrid/Datagrid/Datagrid.js +26 -9
  80. package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +24 -3
  81. package/lib/components/Datagrid/Datagrid/DatagridHead.js +8 -16
  82. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +10 -10
  83. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +3 -3
  84. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +1 -1
  85. package/lib/components/Datagrid/Datagrid/index.js +3 -5
  86. package/lib/components/Datagrid/index.js +2 -2
  87. package/lib/components/ExportModal/ExportModal.js +9 -4
  88. package/lib/components/SidePanel/SidePanel.js +5 -1
  89. package/lib/components/WebTerminal/WebTerminal.js +36 -10
  90. package/lib/components/WebTerminal/WebTerminalContentWrapper.js +58 -0
  91. package/lib/components/WebTerminal/index.js +9 -1
  92. package/lib/components/index.js +6 -0
  93. package/lib/global/js/package-settings.js +1 -0
  94. package/package.json +17 -16
  95. package/scss/components/AddSelect/_add-select.scss +45 -5
  96. package/scss/components/DataSpreadsheet/_data-spreadsheet.scss +31 -13
  97. package/scss/components/Datagrid/_storybook-styles.scss +5 -0
  98. package/scss/components/Datagrid/styles/datagrid.scss +43 -5
  99. package/scss/components/SidePanel/_side-panel.scss +22 -3
  100. package/scss/components/WebTerminal/_storybook-styles.scss +5 -0
  101. package/scss/components/WebTerminal/_web-terminal.scss +14 -4
@@ -983,20 +983,20 @@ em {
983
983
  }
984
984
 
985
985
  /* stylelint-disable */
986
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
986
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
987
987
  .bx--snippet__icon {
988
988
  fill: ButtonText;
989
989
  }
990
990
  }
991
991
 
992
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
992
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
993
993
  .bx--snippet--inline:focus {
994
994
  color: Highlight;
995
995
  outline: 1px solid Highlight;
996
996
  }
997
997
  }
998
998
 
999
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
999
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
1000
1000
  .bx--snippet--single,
1001
1001
  .bx--snippet--multi {
1002
1002
  outline: 1px solid transparent;
@@ -2729,14 +2729,14 @@ em {
2729
2729
  box-shadow: none;
2730
2730
  }
2731
2731
 
2732
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
2732
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
2733
2733
  .bx--btn:focus {
2734
2734
  color: Highlight;
2735
2735
  outline: 1px solid Highlight;
2736
2736
  }
2737
2737
  }
2738
2738
 
2739
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
2739
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
2740
2740
  .bx--btn--ghost.bx--btn--icon-only .bx--btn__icon path:not([data-icon-path]):not([fill=none]),
2741
2741
  .bx--btn--ghost.bx--btn--icon-only .bx--btn__icon {
2742
2742
  fill: ButtonText;
@@ -3265,13 +3265,13 @@ em {
3265
3265
  }
3266
3266
 
3267
3267
  /* stylelint-disable */
3268
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
3268
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
3269
3269
  .bx--modal-close__icon {
3270
3270
  fill: ButtonText;
3271
3271
  }
3272
3272
  }
3273
3273
 
3274
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
3274
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
3275
3275
  .bx--modal-close:focus {
3276
3276
  color: Highlight;
3277
3277
  outline: 1px solid Highlight;
@@ -4058,7 +4058,7 @@ fieldset[disabled] .bx--form__helper-text {
4058
4058
  background: transparent;
4059
4059
  }
4060
4060
 
4061
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
4061
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
4062
4062
  .bx--text-input--password__visibility,
4063
4063
  .bx--btn.bx--btn--icon-only.bx--text-input--password__visibility__toggle.bx--tooltip__trigger svg,
4064
4064
  .bx--btn.bx--btn--icon-only.bx--text-input--password__visibility__toggle.bx--tooltip__trigger:hover svg {
@@ -5190,14 +5190,14 @@ a.bx--tabs__nav-link:focus, a.bx--tabs__nav-link:active {
5190
5190
  white-space: nowrap;
5191
5191
  }
5192
5192
 
5193
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
5193
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
5194
5194
  .bx--tabs--scrollable__nav-item .bx--tabs__nav-item--selected .bx--tabs--scrollable__nav-item--selected {
5195
5195
  color: Highlight;
5196
5196
  outline: 1px solid Highlight;
5197
5197
  }
5198
5198
  }
5199
5199
 
5200
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
5200
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
5201
5201
  .bx--tabs--scrollable .bx--tabs--scrollable__nav-item--disabled .bx--tabs--scrollable__nav-link {
5202
5202
  color: GrayText;
5203
5203
  fill: GrayText;
@@ -7723,7 +7723,7 @@ a.bx--overflow-menu-options__btn::before {
7723
7723
  }
7724
7724
 
7725
7725
  /* stylelint-disable */
7726
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
7726
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
7727
7727
  .bx--overflow-menu:focus,
7728
7728
  .bx--overflow-menu-options__btn:focus {
7729
7729
  color: Highlight;
@@ -7731,7 +7731,7 @@ a.bx--overflow-menu-options__btn::before {
7731
7731
  }
7732
7732
  }
7733
7733
 
7734
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
7734
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
7735
7735
  .bx--overflow-menu svg {
7736
7736
  fill: ButtonText;
7737
7737
  }
@@ -9952,7 +9952,7 @@ a.bx--overflow-menu-options__btn::before {
9952
9952
  }
9953
9953
 
9954
9954
  /* stylelint-disable */
9955
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
9955
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
9956
9956
  .bx--tooltip__trigger svg,
9957
9957
  .bx--tooltip__trigger:hover svg,
9958
9958
  .bx--tooltip__trigger:focus svg {
@@ -9960,20 +9960,20 @@ a.bx--overflow-menu-options__btn::before {
9960
9960
  }
9961
9961
  }
9962
9962
 
9963
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
9963
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
9964
9964
  .bx--tooltip__trigger:focus svg {
9965
9965
  color: Highlight;
9966
9966
  outline: 1px solid Highlight;
9967
9967
  }
9968
9968
  }
9969
9969
 
9970
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
9970
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
9971
9971
  .bx--tooltip {
9972
9972
  outline: 1px solid transparent;
9973
9973
  }
9974
9974
  }
9975
9975
 
9976
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
9976
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
9977
9977
  .bx--assistive-text {
9978
9978
  outline: 1px solid transparent;
9979
9979
  }
@@ -11577,7 +11577,10 @@ a.bx--overflow-menu-options__btn::before {
11577
11577
  .c4p--side-panel__container .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation {
11578
11578
  position: fixed;
11579
11579
  z-index: 2;
11580
- top: calc(var(--c4p--side-panel--title-text-height) + var(--cds-spacing-09, 3rem));
11580
+ top: calc(
11581
+ var(--c4p--side-panel--title-text-height) +
11582
+ var(--c4p--side-panel--label-text-height) + var(--cds-spacing-09, 3rem)
11583
+ );
11581
11584
  background-color: var(--cds-ui-01, #f4f4f4);
11582
11585
  }
11583
11586
  .c4p--side-panel__container .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation.c4p--side-panel__subtitle-text-is-animating {
@@ -11593,12 +11596,12 @@ a.bx--overflow-menu-options__btn::before {
11593
11596
  .c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation {
11594
11597
  position: fixed;
11595
11598
  top: var(--cds-spacing-09, 3rem);
11596
- height: var(--c4p--side-panel--title-text-height);
11599
+ height: calc(var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--label-text-height));
11597
11600
  }
11598
11601
  .c4p--side-panel__container .c4p--side-panel__inner-content {
11599
11602
  overflow: auto;
11600
11603
  height: calc(100vh - 3rem);
11601
- margin-top: calc(var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--subtitle-container-height) + var(--c4p--side-panel--action-bar-container-height));
11604
+ margin-top: calc(var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--subtitle-container-height) + var(--c4p--side-panel--action-bar-container-height) + var(--c4p--side-panel--label-text-height));
11602
11605
  overflow-x: hidden;
11603
11606
  }
11604
11607
  .c4p--side-panel__container .c4p--side-panel__inner-content-with-actions {
@@ -11608,6 +11611,9 @@ a.bx--overflow-menu-options__btn::before {
11608
11611
  height: calc(100vh - (var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--subtitle-container-height) + var(--c4p--side-panel--action-bar-container-height)) + -1 * (var(--cds-spacing-09, 3rem) + var(--cds-spacing-10, 4rem)));
11609
11612
  padding-top: var(--cds-spacing-05, 1rem);
11610
11613
  }
11614
+ .c4p--side-panel__container .c4p--side-panel__inner-content.c4p--side-panel__static-inner-content-no-actions {
11615
+ height: calc(100vh - (var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--subtitle-container-height) + var(--c4p--side-panel--action-bar-container-height) + var(--c4p--side-panel--label-text-height)));
11616
+ }
11611
11617
  .c4p--side-panel__container .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation {
11612
11618
  position: fixed;
11613
11619
  top: calc(
@@ -12478,7 +12484,7 @@ a.bx--side-nav__link--current::before {
12478
12484
  fill: #525252;
12479
12485
  }
12480
12486
 
12481
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
12487
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
12482
12488
  .bx--side-nav__icon > svg,
12483
12489
  .bx--side-nav a.bx--header__menu-item:hover .bx--header__menu-arrow,
12484
12490
  .bx--side-nav a.bx--header__menu-item:focus .bx--header__menu-arrow,
@@ -13178,14 +13184,9 @@ a.bx--side-nav__link--current::before {
13178
13184
  content: "";
13179
13185
  transform: scale(0.5);
13180
13186
  }
13181
- @media screen and (-ms-high-contrast: active) {
13182
- .bx--radio-button:checked + .bx--radio-button__label .bx--radio-button__appearance::before {
13183
- background-color: WindowText;
13184
- }
13185
- }
13186
- @media screen and (prefers-contrast) {
13187
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
13187
13188
  .bx--radio-button:checked + .bx--radio-button__label .bx--radio-button__appearance::before {
13188
- border: 2px solid WindowText;
13189
+ fill: ButtonText;
13189
13190
  }
13190
13191
  }
13191
13192
 
@@ -13893,13 +13894,13 @@ a.bx--side-nav__link--current::before {
13893
13894
  }
13894
13895
 
13895
13896
  /* stylelint-disable */
13896
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
13897
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
13897
13898
  .bx--file__selected-file {
13898
13899
  outline: 1px solid transparent;
13899
13900
  }
13900
13901
  }
13901
13902
 
13902
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
13903
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
13903
13904
  .bx--file__state-container .bx--file-close svg path {
13904
13905
  fill: ButtonText;
13905
13906
  }
@@ -14250,7 +14251,7 @@ a.bx--side-nav__link--current::before {
14250
14251
  display: none;
14251
14252
  }
14252
14253
 
14253
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
14254
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
14254
14255
  .bx--structured-list-input:checked + .bx--structured-list-td .bx--structured-list-svg {
14255
14256
  fill: ButtonText;
14256
14257
  }
@@ -14290,16 +14291,16 @@ a.bx--side-nav__link--current::before {
14290
14291
  display: block;
14291
14292
  color: var(--cds-text-02, #525252);
14292
14293
  }
14293
- .c4p--add-select__selections-cell:hover .c4p--add-select__selections-dropdown {
14294
+ .c4p--add-select__selections-cell:hover .c4p--add-select__selections-hidden-hover {
14294
14295
  visibility: visible;
14295
14296
  }
14296
- .c4p--add-select__selections-dropdown {
14297
+ .c4p--add-select__selections-hidden-hover {
14297
14298
  visibility: hidden;
14298
14299
  }
14299
14300
  .c4p--add-select__selections-row-selected {
14300
14301
  background: #e5e5e5;
14301
14302
  }
14302
- .c4p--add-select__selections-row-selected .c4p--add-select__selections-dropdown {
14303
+ .c4p--add-select__selections-row-selected .c4p--add-select__selections-hidden-hover {
14303
14304
  visibility: visible;
14304
14305
  }
14305
14306
  .c4p--add-select__selections-checkbox {
@@ -14327,6 +14328,12 @@ a.bx--side-nav__link--current::before {
14327
14328
  margin-right: var(--cds-spacing-03, 0.5rem);
14328
14329
  }
14329
14330
 
14331
+ .c4p--add-select__sub-header {
14332
+ display: flex;
14333
+ align-items: flex-end;
14334
+ justify-content: space-between;
14335
+ }
14336
+
14330
14337
  .c4p--add-select__sidebar-header {
14331
14338
  display: flex;
14332
14339
  padding: var(--cds-spacing-06, 1.5rem) var(--cds-spacing-05, 1rem) var(--cds-spacing-03, 0.5rem) var(--cds-spacing-05, 1rem);
@@ -14391,7 +14398,8 @@ a.bx--side-nav__link--current::before {
14391
14398
  overflow-x: auto;
14392
14399
  }
14393
14400
 
14394
- .c4p--add-select__columns .c4p--add-select__selections-cell {
14401
+ .c4p--add-select .c4p--add-select__columns .bx--structured-list-td {
14402
+ height: 0;
14395
14403
  padding: 0 !important;
14396
14404
  }
14397
14405
 
@@ -14465,6 +14473,40 @@ button.c4p--add-select__global-filter-toggle {
14465
14473
  background: var(--cds-field-01, #f4f4f4);
14466
14474
  }
14467
14475
 
14476
+ .c4p--add-select__meta-panel {
14477
+ padding: var(--cds-spacing-05, 1rem);
14478
+ }
14479
+ .c4p--add-select__meta-panel-header {
14480
+ display: flex;
14481
+ align-items: center;
14482
+ justify-content: space-between;
14483
+ margin-bottom: var(--cds-spacing-05, 1rem);
14484
+ }
14485
+ .c4p--add-select__meta-panel-entry {
14486
+ margin-bottom: var(--cds-spacing-05, 1rem);
14487
+ }
14488
+
14489
+ .c4p--add-select__meta-panel p.c4p--add-select__meta-panel-title {
14490
+ font-size: var(--cds-productive-heading-03-font-size, 1.25rem);
14491
+ font-weight: var(--cds-productive-heading-03-font-weight, 400);
14492
+ line-height: var(--cds-productive-heading-03-line-height, 1.4);
14493
+ letter-spacing: var(--cds-productive-heading-03-letter-spacing, 0);
14494
+ }
14495
+
14496
+ .c4p--add-select__meta-panel p.c4p--add-select__meta-panel-entry-title {
14497
+ font-size: var(--cds-productive-heading-01-font-size, 0.875rem);
14498
+ font-weight: var(--cds-productive-heading-01-font-weight, 600);
14499
+ line-height: var(--cds-productive-heading-01-line-height, 1.28572);
14500
+ letter-spacing: var(--cds-productive-heading-01-letter-spacing, 0.16px);
14501
+ }
14502
+
14503
+ .c4p--add-select__meta-panel p.c4p--add-select__meta-panel-entry-body {
14504
+ font-size: var(--cds-body-short-01-font-size, 0.875rem);
14505
+ font-weight: var(--cds-body-short-01-font-weight, 400);
14506
+ line-height: var(--cds-body-short-01-line-height, 1.28572);
14507
+ letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
14508
+ }
14509
+
14468
14510
  .c4p--add-select__tag-container .bx--tag {
14469
14511
  margin: 0;
14470
14512
  }
@@ -14495,7 +14537,9 @@ button.c4p--add-select__global-filter-toggle {
14495
14537
  }
14496
14538
 
14497
14539
  .c4p--add-select .bx--structured-list-td {
14498
- padding-bottom: var(--cds-spacing-05, 1rem);
14540
+ height: 4rem;
14541
+ padding: var(--cds-spacing-05, 1rem);
14542
+ vertical-align: middle;
14499
14543
  }
14500
14544
 
14501
14545
  .c4p--add-select .bx--radio-button__appearance {
@@ -15729,20 +15773,20 @@ button.c4p--add-select__global-filter-toggle {
15729
15773
  }
15730
15774
 
15731
15775
  /* stylelint-disable */
15732
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
15776
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
15733
15777
  .bx--tag {
15734
15778
  outline: 1px solid transparent;
15735
15779
  }
15736
15780
  }
15737
15781
 
15738
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
15782
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
15739
15783
  .bx--tag__close-icon svg,
15740
15784
  .bx--tag__custom-icon svg {
15741
15785
  fill: ButtonText;
15742
15786
  }
15743
15787
  }
15744
15788
 
15745
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
15789
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
15746
15790
  .bx--tag__close-icon:focus {
15747
15791
  color: Highlight;
15748
15792
  outline: 1px solid Highlight;
@@ -16245,7 +16289,7 @@ button.c4p--add-select__global-filter-toggle {
16245
16289
  fill: var(--cds-icon-02, #525252);
16246
16290
  }
16247
16291
 
16248
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
16292
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
16249
16293
  .bx--search-close svg,
16250
16294
  .bx--search-magnifier-icon {
16251
16295
  fill: ButtonText;
@@ -17651,21 +17695,21 @@ button.c4p--add-select__global-filter-toggle {
17651
17695
  }
17652
17696
 
17653
17697
  @keyframes web-terminal-entrance {
17654
- 0% {
17698
+ from {
17655
17699
  opacity: 0;
17656
17700
  transform: translateX(36.5rem);
17657
17701
  }
17658
- 100% {
17702
+ to {
17659
17703
  opacity: 1;
17660
17704
  transform: translateX(0);
17661
17705
  }
17662
17706
  }
17663
17707
  @keyframes web-terminal-exit {
17664
- 0% {
17708
+ from {
17665
17709
  opacity: 1;
17666
17710
  transform: translateX(0);
17667
17711
  }
17668
- 100% {
17712
+ to {
17669
17713
  opacity: 0;
17670
17714
  transform: translateX(36.5rem);
17671
17715
  }
@@ -18546,6 +18590,15 @@ button.c4p--add-select__global-filter-toggle {
18546
18590
  height: 100%;
18547
18591
  }
18548
18592
 
18593
+ .c4p--web-terminal-content-wrapper {
18594
+ width: 100vw;
18595
+ height: 100%;
18596
+ }
18597
+
18598
+ .c4p--web-terminal-content-wrapper--open {
18599
+ width: calc(100vw - 36.5rem);
18600
+ }
18601
+
18549
18602
  .c4p--user-profile-image--light {
18550
18603
  color: var(--cds-ui-01, #f4f4f4);
18551
18604
  }
@@ -19395,23 +19448,13 @@ button.c4p--add-select__global-filter-toggle {
19395
19448
  text-align: left;
19396
19449
  }
19397
19450
  .c4p--data-spreadsheet .c4p--data-spreadsheet__active-cell--highlight[data-active-row-index=header], .c4p--data-spreadsheet .c4p--data-spreadsheet__active-cell--highlight[data-active-column-index=header] {
19451
+ z-index: 4;
19398
19452
  background-color: transparent;
19399
19453
  }
19400
19454
  .c4p--data-spreadsheet .c4p--data-spreadsheet__active-cell--highlight:focus {
19401
19455
  border: var(--cds-spacing-01, 0.125rem) solid var(--cds-interactive-01, #0f62fe);
19402
19456
  outline: 0;
19403
19457
  }
19404
- .c4p--data-spreadsheet .c4p--data-spreadsheet__active-cell--highlight.c4p--data-spreadsheet__active-cell--with-selection::before {
19405
- position: absolute;
19406
- top: 0;
19407
- left: 0;
19408
- display: block;
19409
- width: 100%;
19410
- height: 100%;
19411
- background-color: var(--cds-interactive-01, #0f62fe);
19412
- content: "";
19413
- opacity: 0.25;
19414
- }
19415
19458
  .c4p--data-spreadsheet .c4p--data-spreadsheet__selection-area--element {
19416
19459
  position: absolute;
19417
19460
  z-index: 2;
@@ -19429,10 +19472,39 @@ button.c4p--add-select__global-filter-toggle {
19429
19472
  content: "";
19430
19473
  opacity: 0.2;
19431
19474
  }
19475
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__selection-area--element.c4p--data-spreadsheet__selection-area--element-cloned {
19476
+ z-index: 4;
19477
+ }
19478
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__selection-area--element.c4p--data-spreadsheet__selection-area--element-cloned::before {
19479
+ background-color: var(--cds-ui-05, #161616);
19480
+ opacity: 0.25;
19481
+ }
19482
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__reorder-indicator-line {
19483
+ position: absolute;
19484
+ z-index: 4;
19485
+ width: var(--cds-spacing-01, 0.125rem);
19486
+ background-color: var(--cds-interactive-01, #0f62fe);
19487
+ }
19432
19488
  .c4p--data-spreadsheet .c4p--data-spreadsheet__th--active-header,
19433
19489
  .c4p--data-spreadsheet .c4p--data-spreadsheet__td-th--active-header.c4p--data-spreadsheet__td {
19434
19490
  background-color: var(--cds-hover-selected-ui, #cacaca);
19435
19491
  }
19492
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__th--selected-header,
19493
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__td-th--selected-header.c4p--data-spreadsheet__td {
19494
+ background-color: var(--cds-inverse-02, #393939);
19495
+ color: var(--cds-inverse-01, #ffffff);
19496
+ }
19497
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__th--selected-header:focus, .c4p--data-spreadsheet .c4p--data-spreadsheet__th--selected-header:hover,
19498
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__td-th--selected-header.c4p--data-spreadsheet__td:focus,
19499
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__td-th--selected-header.c4p--data-spreadsheet__td:hover {
19500
+ background-color: var(--cds-inverse-02, #393939);
19501
+ }
19502
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__th--selected-header.c4p--data-spreadsheet__th {
19503
+ cursor: grab;
19504
+ }
19505
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__th--selected-header-reorder-active.c4p--data-spreadsheet__th {
19506
+ cursor: grabbing;
19507
+ }
19436
19508
  .c4p--data-spreadsheet .c4p--data-spreadsheet__list--container {
19437
19509
  overscroll-behavior: none;
19438
19510
  }
@@ -19554,10 +19626,6 @@ button.c4p--add-select__global-filter-toggle {
19554
19626
  width: 1%;
19555
19627
  align-items: center;
19556
19628
  }
19557
- .c4p--datagrid__grid-container .c4p--datagrid__empty-state-body {
19558
- display: flex;
19559
- width: 100%;
19560
- }
19561
19629
  .c4p--datagrid__grid-container .c4p--datagrid__virtual-scrollbar {
19562
19630
  scrollbar-width: thin;
19563
19631
  }
@@ -19606,6 +19674,30 @@ button.c4p--add-select__global-filter-toggle {
19606
19674
  padding-right: var(--cds-spacing-06, 1.5rem) !important;
19607
19675
  }
19608
19676
 
19677
+ .c4p--datagrid__empty-state .c4p--datagrid__table-simple {
19678
+ display: table;
19679
+ height: 100%;
19680
+ }
19681
+ .c4p--datagrid__empty-state .c4p--datagrid__table-simple .c4p--empty-state {
19682
+ max-width: 280px;
19683
+ }
19684
+
19685
+ .c4p--datagrid__empty-state .c4p--datagrid__table-simple tr:hover {
19686
+ background: transparent;
19687
+ }
19688
+
19689
+ .c4p--datagrid__empty-state .c4p--datagrid__table-simple tr:hover td {
19690
+ background: transparent;
19691
+ }
19692
+
19693
+ .c4p--datagrid__empty-state .c4p--datagrid__table-simple td {
19694
+ padding: var(--cds-spacing-11, 5rem);
19695
+ }
19696
+
19697
+ .c4p--datagrid__empty-state .c4p--datagrid__grid-container {
19698
+ flex: 1 1 auto;
19699
+ }
19700
+
19609
19701
  .c4p--datagrid__resizer {
19610
19702
  position: absolute;
19611
19703
  z-index: 1;
@@ -21846,7 +21938,7 @@ li.bx--accordion__item--disabled:last-of-type {
21846
21938
  margin-bottom: 0;
21847
21939
  }
21848
21940
 
21849
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
21941
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
21850
21942
  .bx--accordion__arrow,
21851
21943
  .bx--accordion__item--active .bx--accordion__arrow {
21852
21944
  fill: ButtonText;
@@ -22753,7 +22845,7 @@ li.bx--accordion__item--disabled:last-of-type {
22753
22845
  background-color: inherit;
22754
22846
  }
22755
22847
 
22756
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
22848
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
22757
22849
  .bx--list-box__field,
22758
22850
  .bx--list-box__menu,
22759
22851
  .bx--multi-select .bx--tag--filter {
@@ -22761,7 +22853,7 @@ li.bx--accordion__item--disabled:last-of-type {
22761
22853
  }
22762
22854
  }
22763
22855
 
22764
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
22856
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
22765
22857
  .bx--list-box__field:focus,
22766
22858
  .bx--multi-select .bx--tag__close-icon:focus,
22767
22859
  .bx--list-box__menu-item--highlighted .bx--list-box__menu-item__option {
@@ -22770,7 +22862,7 @@ li.bx--accordion__item--disabled:last-of-type {
22770
22862
  }
22771
22863
  }
22772
22864
 
22773
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
22865
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
22774
22866
  .bx--list-box__menu-icon > svg,
22775
22867
  .bx--list-box__selection > svg,
22776
22868
  .bx--list-box__selection--multi > svg {
@@ -22983,7 +23075,7 @@ li.bx--accordion__item--disabled:last-of-type {
22983
23075
  fill: var(--cds-icon-inverse, #ffffff);
22984
23076
  }
22985
23077
 
22986
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
23078
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
22987
23079
  .bx--content-switcher-btn:focus {
22988
23080
  color: Highlight;
22989
23081
  outline: 1px solid Highlight;
@@ -24298,7 +24390,7 @@ tr.bx--data-table--selected:last-of-type td {
24298
24390
  margin: -0.1875rem 0;
24299
24391
  }
24300
24392
 
24301
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
24393
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
24302
24394
  .bx--data-table-content {
24303
24395
  outline: 1px solid transparent;
24304
24396
  }
@@ -24584,14 +24676,14 @@ tr.bx--parent-row.bx--data-table--selected.bx--expandable-row--hover + tr[data-c
24584
24676
  background: var(--cds-layer-selected, #e0e0e0);
24585
24677
  }
24586
24678
 
24587
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
24679
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
24588
24680
  .bx--table-expand__button:focus .bx--table-expand__svg {
24589
24681
  color: Highlight;
24590
24682
  outline: 1px solid Highlight;
24591
24683
  }
24592
24684
  }
24593
24685
 
24594
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
24686
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
24595
24687
  .bx--table-expand__svg {
24596
24688
  fill: ButtonText;
24597
24689
  }
@@ -24769,7 +24861,7 @@ th .bx--table-sort__flex {
24769
24861
  margin-top: 0.8125rem;
24770
24862
  }
24771
24863
 
24772
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
24864
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
24773
24865
  .bx--table-sort__icon,
24774
24866
  .bx--table-sort__icon-unsorted {
24775
24867
  fill: ButtonText;
@@ -25481,14 +25573,14 @@ th .bx--table-sort__flex {
25481
25573
  cursor: pointer;
25482
25574
  }
25483
25575
 
25484
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
25576
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
25485
25577
  .flatpickr-prev-month,
25486
25578
  .flatpickr-next-month {
25487
25579
  fill: ButtonText;
25488
25580
  }
25489
25581
  }
25490
25582
 
25491
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
25583
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
25492
25584
  .flatpickr-day.selected {
25493
25585
  color: Highlight;
25494
25586
  outline: 1px solid Highlight;
@@ -25496,14 +25588,14 @@ th .bx--table-sort__flex {
25496
25588
  }
25497
25589
  }
25498
25590
 
25499
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
25591
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
25500
25592
  .flatpickr-day.today,
25501
25593
  .flatpickr-day.inRange {
25502
25594
  color: Highlight;
25503
25595
  }
25504
25596
  }
25505
25597
 
25506
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
25598
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
25507
25599
  .flatpickr-calendar {
25508
25600
  outline: 1px solid transparent;
25509
25601
  }
@@ -25730,7 +25822,7 @@ th .bx--table-sort__flex {
25730
25822
  }
25731
25823
  }
25732
25824
 
25733
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
25825
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
25734
25826
  .bx--date-picker__icon {
25735
25827
  fill: ButtonText;
25736
25828
  }
@@ -26183,19 +26275,19 @@ button.bx--dropdown-text:focus {
26183
26275
  }
26184
26276
  }
26185
26277
 
26186
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
26278
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
26187
26279
  .bx--dropdown .bx--list-box__field {
26188
26280
  outline: 1px solid transparent;
26189
26281
  }
26190
26282
  }
26191
26283
 
26192
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
26284
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
26193
26285
  .bx--list-box__menu-item__option {
26194
26286
  outline: none;
26195
26287
  }
26196
26288
  }
26197
26289
 
26198
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
26290
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
26199
26291
  .bx--list-box__menu-item__selected-icon {
26200
26292
  fill: ButtonText;
26201
26293
  }
@@ -26896,13 +26988,13 @@ button.bx--dropdown-text:focus {
26896
26988
  }
26897
26989
 
26898
26990
  /* stylelint-disable */
26899
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
26991
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
26900
26992
  .bx--inline-notification {
26901
26993
  outline: 1px solid transparent;
26902
26994
  }
26903
26995
  }
26904
26996
 
26905
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
26997
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
26906
26998
  .bx--inline-notification__close-button:focus,
26907
26999
  .bx--btn.bx--btn--ghost.bx--inline-notification__action-button:focus {
26908
27000
  color: Highlight;
@@ -26910,7 +27002,7 @@ button.bx--dropdown-text:focus {
26910
27002
  }
26911
27003
  }
26912
27004
 
26913
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
27005
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
26914
27006
  .bx--inline-notification__icon {
26915
27007
  fill: ButtonText;
26916
27008
  }
@@ -27157,20 +27249,20 @@ button.bx--dropdown-text:focus {
27157
27249
  }
27158
27250
 
27159
27251
  /* stylelint-disable */
27160
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
27252
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
27161
27253
  .bx--toast-notification {
27162
27254
  outline: 1px solid transparent;
27163
27255
  }
27164
27256
  }
27165
27257
 
27166
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
27258
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
27167
27259
  .bx--toast-notification__close-button:focus {
27168
27260
  color: Highlight;
27169
27261
  outline: 1px solid Highlight;
27170
27262
  }
27171
27263
  }
27172
27264
 
27173
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
27265
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
27174
27266
  .bx--toast-notification__icon {
27175
27267
  fill: ButtonText;
27176
27268
  }
@@ -27583,7 +27675,7 @@ button.bx--dropdown-text:focus {
27583
27675
  }
27584
27676
 
27585
27677
  /* stylelint-disable */
27586
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
27678
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
27587
27679
  .bx--number__control-btn:hover,
27588
27680
  .bx--number__control-btn:focus {
27589
27681
  color: Highlight;
@@ -27591,13 +27683,13 @@ button.bx--dropdown-text:focus {
27591
27683
  }
27592
27684
  }
27593
27685
 
27594
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
27686
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
27595
27687
  .bx--number__control-btn {
27596
27688
  outline: 1px solid transparent;
27597
27689
  }
27598
27690
  }
27599
27691
 
27600
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
27692
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
27601
27693
  .bx--number__control-btn svg {
27602
27694
  fill: ButtonText;
27603
27695
  }
@@ -28028,7 +28120,7 @@ optgroup.bx--select-optgroup:disabled,
28028
28120
  display: none;
28029
28121
  }
28030
28122
 
28031
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
28123
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
28032
28124
  .bx--select__arrow {
28033
28125
  fill: ButtonText;
28034
28126
  }
@@ -28249,7 +28341,7 @@ span.bx--pagination__text {
28249
28341
  margin-bottom: 0;
28250
28342
  }
28251
28343
 
28252
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
28344
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
28253
28345
  .bx--pagination__button,
28254
28346
  .bx--btn--ghost.bx--pagination__button {
28255
28347
  outline: 1px solid transparent;
@@ -28261,14 +28353,23 @@ span.bx--pagination__text {
28261
28353
  font-weight: var(--cds-body-short-01-font-weight, 400);
28262
28354
  line-height: var(--cds-body-short-01-line-height, 1.28572);
28263
28355
  letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
28264
- display: block;
28356
+ display: flex;
28357
+ min-width: 3rem;
28358
+ justify-content: space-between;
28265
28359
  margin-bottom: var(--cds-spacing-03, 0.5rem);
28266
28360
  color: var(--cds-text-primary, #161616);
28267
28361
  }
28268
28362
 
28363
+ .bx--progress-bar__label-text {
28364
+ overflow: hidden;
28365
+ text-overflow: ellipsis;
28366
+ white-space: nowrap;
28367
+ }
28368
+
28269
28369
  .bx--progress-bar__track {
28270
28370
  position: relative;
28271
28371
  width: 100%;
28372
+ min-width: 3rem;
28272
28373
  height: 0.5rem;
28273
28374
  background-color: var(--cds-layer, #f4f4f4);
28274
28375
  }
@@ -28285,7 +28386,8 @@ span.bx--pagination__text {
28285
28386
  display: block;
28286
28387
  width: 100%;
28287
28388
  height: 100%;
28288
- background-color: var(--cds-interactive, #0f62fe);
28389
+ background-color: currentColor;
28390
+ color: var(--cds-interactive, #0f62fe);
28289
28391
  transform: scaleX(0);
28290
28392
  transform-origin: 0 center /*rtl:100% center*/;
28291
28393
  transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
@@ -28311,10 +28413,52 @@ span.bx--pagination__text {
28311
28413
  font-size: var(--cds-helper-text-01-font-size, 0.75rem);
28312
28414
  line-height: var(--cds-helper-text-01-line-height, 1.33333);
28313
28415
  letter-spacing: var(--cds-helper-text-01-letter-spacing, 0.32px);
28314
- margin-top: var(--cds-spacing-02, 0.25rem);
28416
+ margin-top: var(--cds-spacing-03, 0.5rem);
28315
28417
  color: var(--cds-text-secondary, #525252);
28316
28418
  }
28317
28419
 
28420
+ .bx--progress-bar__status-icon {
28421
+ flex-shrink: 0;
28422
+ margin-left: var(--cds-spacing-05, 1rem);
28423
+ }
28424
+
28425
+ .bx--progress-bar--finished .bx--progress-bar__bar,
28426
+ .bx--progress-bar--finished .bx--progress-bar__status-icon {
28427
+ color: var(--cds-support-success, #198038);
28428
+ }
28429
+
28430
+ .bx--progress-bar--error .bx--progress-bar__bar,
28431
+ .bx--progress-bar--error .bx--progress-bar__status-icon,
28432
+ .bx--progress-bar--error .bx--progress-bar__helper-text {
28433
+ color: var(--cds-support-error, #da1e28);
28434
+ }
28435
+
28436
+ .bx--progress-bar--finished .bx--progress-bar__bar,
28437
+ .bx--progress-bar--error .bx--progress-bar__bar {
28438
+ transform: scaleX(1);
28439
+ }
28440
+
28441
+ .bx--progress-bar--finished.bx--progress-bar--inline .bx--progress-bar__track,
28442
+ .bx--progress-bar--error.bx--progress-bar--inline .bx--progress-bar__track {
28443
+ position: absolute;
28444
+ overflow: hidden;
28445
+ width: 1px;
28446
+ height: 1px;
28447
+ padding: 0;
28448
+ border: 0;
28449
+ margin: -1px;
28450
+ clip: rect(0, 0, 0, 0);
28451
+ visibility: inherit;
28452
+ white-space: nowrap;
28453
+ }
28454
+
28455
+ .bx--progress-bar--finished.bx--progress-bar--inline .bx--progress-bar__label,
28456
+ .bx--progress-bar--error.bx--progress-bar--inline .bx--progress-bar__label {
28457
+ flex-shrink: 1;
28458
+ justify-content: flex-start;
28459
+ margin-right: 0;
28460
+ }
28461
+
28318
28462
  @keyframes progress-bar-indeterminate {
28319
28463
  0% {
28320
28464
  background-position-x: 25%;
@@ -28329,11 +28473,15 @@ span.bx--pagination__text {
28329
28473
  }
28330
28474
 
28331
28475
  .bx--progress-bar--inline .bx--progress-bar__label {
28332
- flex-shrink: 0;
28333
28476
  margin-right: var(--cds-spacing-05, 1rem);
28334
28477
  margin-bottom: 0;
28335
28478
  }
28336
28479
 
28480
+ .bx--progress-bar--inline .bx--progress-bar__track {
28481
+ flex-basis: 0;
28482
+ flex-grow: 1;
28483
+ }
28484
+
28337
28485
  .bx--progress-bar--inline .bx--progress-bar__helper-text {
28338
28486
  position: absolute;
28339
28487
  overflow: hidden;
@@ -28620,20 +28768,20 @@ span.bx--pagination__text {
28620
28768
  }
28621
28769
 
28622
28770
  /* stylelint-disable */
28623
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
28771
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
28624
28772
  .bx--slider__thumb {
28625
28773
  outline: 1px solid transparent;
28626
28774
  }
28627
28775
  }
28628
28776
 
28629
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
28777
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
28630
28778
  .bx--slider__thumb:focus {
28631
28779
  color: Highlight;
28632
28780
  outline: 1px solid Highlight;
28633
28781
  }
28634
28782
  }
28635
28783
 
28636
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
28784
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
28637
28785
  .bx--slider__track {
28638
28786
  outline: 1px solid transparent;
28639
28787
  }