@carbon/ibm-products 1.15.0 → 1.18.0

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.
Files changed (98) hide show
  1. package/README.md +30 -27
  2. package/css/components/Datagrid/styles/datagrid.css +4 -0
  3. package/css/components/Datagrid/styles/datagrid.css.map +1 -1
  4. package/css/components/Datagrid/styles/index.css +5 -1
  5. package/css/components/Datagrid/styles/index.css.map +1 -1
  6. package/css/components/Datagrid/styles/useNestedRows.css +1 -1
  7. package/css/index-full-carbon.css +195 -88
  8. package/css/index-full-carbon.css.map +1 -1
  9. package/css/index-full-carbon.min.css +7 -4
  10. package/css/index-full-carbon.min.css.map +1 -1
  11. package/css/index-without-carbon-released-only.css +9 -3
  12. package/css/index-without-carbon-released-only.css.map +1 -1
  13. package/css/index-without-carbon-released-only.min.css +4 -1
  14. package/css/index-without-carbon-released-only.min.css.map +1 -1
  15. package/css/index-without-carbon.css +78 -22
  16. package/css/index-without-carbon.css.map +1 -1
  17. package/css/index-without-carbon.min.css +6 -3
  18. package/css/index-without-carbon.min.css.map +1 -1
  19. package/css/index.css +104 -53
  20. package/css/index.css.map +1 -1
  21. package/css/index.min.css +7 -4
  22. package/css/index.min.css.map +1 -1
  23. package/es/components/AddSelect/AddSelect.js +39 -10
  24. package/es/components/AddSelect/AddSelectColumn.js +31 -73
  25. package/es/components/AddSelect/AddSelectFilter.js +48 -5
  26. package/es/components/AddSelect/AddSelectSort.js +61 -0
  27. package/es/components/AddSelect/add-select-utils.js +21 -0
  28. package/es/components/AddSelect/hooks/useItemSort.js +20 -0
  29. package/es/components/DataSpreadsheet/DataSpreadsheet.js +38 -15
  30. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +93 -46
  31. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +82 -6
  32. package/es/components/DataSpreadsheet/hooks/index.js +3 -1
  33. package/es/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +65 -19
  34. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +60 -0
  35. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +153 -0
  36. package/es/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +16 -0
  37. package/es/components/DataSpreadsheet/utils/createCellSelectionArea.js +11 -6
  38. package/es/components/DataSpreadsheet/utils/generateData.js +17 -9
  39. package/es/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +30 -0
  40. package/es/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +6 -2
  41. package/es/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +34 -0
  42. package/es/components/Datagrid/Datagrid/Datagrid.js +24 -12
  43. package/es/components/Datagrid/Datagrid/DatagridHead.js +8 -16
  44. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +10 -10
  45. package/es/components/Datagrid/Datagrid/DatagridRow.js +12 -2
  46. package/es/components/Datagrid/Datagrid/index.js +6 -7
  47. package/es/components/Datagrid/index.js +1 -1
  48. package/es/components/Datagrid/useNestedRows.js +3 -3
  49. package/es/components/Datagrid/useRowExpander.js +1 -1
  50. package/es/components/ExportModal/ExportModal.js +10 -5
  51. package/es/components/SidePanel/SidePanel.js +5 -1
  52. package/es/components/WebTerminal/WebTerminal.js +36 -11
  53. package/es/components/WebTerminal/WebTerminalContentWrapper.js +49 -0
  54. package/es/components/WebTerminal/index.js +2 -1
  55. package/es/components/index.js +1 -1
  56. package/es/global/js/package-settings.js +1 -0
  57. package/lib/components/AddSelect/AddSelect.js +40 -10
  58. package/lib/components/AddSelect/AddSelectColumn.js +32 -71
  59. package/lib/components/AddSelect/AddSelectFilter.js +47 -4
  60. package/lib/components/AddSelect/AddSelectSort.js +79 -0
  61. package/lib/components/AddSelect/add-select-utils.js +29 -2
  62. package/lib/components/AddSelect/hooks/useItemSort.js +33 -0
  63. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +37 -14
  64. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +96 -45
  65. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +85 -6
  66. package/lib/components/DataSpreadsheet/hooks/index.js +17 -1
  67. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +68 -18
  68. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +74 -0
  69. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +161 -0
  70. package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +26 -0
  71. package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.js +11 -6
  72. package/lib/components/DataSpreadsheet/utils/generateData.js +17 -9
  73. package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +40 -0
  74. package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +6 -2
  75. package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +45 -0
  76. package/lib/components/Datagrid/Datagrid/Datagrid.js +25 -8
  77. package/lib/components/Datagrid/Datagrid/DatagridHead.js +8 -16
  78. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +10 -10
  79. package/lib/components/Datagrid/Datagrid/DatagridRow.js +14 -2
  80. package/lib/components/Datagrid/Datagrid/index.js +3 -5
  81. package/lib/components/Datagrid/index.js +2 -2
  82. package/lib/components/Datagrid/useNestedRows.js +3 -3
  83. package/lib/components/Datagrid/useRowExpander.js +1 -1
  84. package/lib/components/ExportModal/ExportModal.js +9 -4
  85. package/lib/components/SidePanel/SidePanel.js +5 -1
  86. package/lib/components/WebTerminal/WebTerminal.js +36 -10
  87. package/lib/components/WebTerminal/WebTerminalContentWrapper.js +58 -0
  88. package/lib/components/WebTerminal/index.js +9 -1
  89. package/lib/components/index.js +6 -0
  90. package/lib/global/js/package-settings.js +1 -0
  91. package/package.json +14 -13
  92. package/scss/components/AddSelect/_add-select.scss +15 -2
  93. package/scss/components/DataSpreadsheet/_data-spreadsheet.scss +38 -14
  94. package/scss/components/Datagrid/styles/datagrid.scss +8 -0
  95. package/scss/components/Datagrid/styles/useNestedRows.scss +1 -1
  96. package/scss/components/SidePanel/_side-panel.scss +22 -3
  97. package/scss/components/WebTerminal/_storybook-styles.scss +5 -0
  98. 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
  }
@@ -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: 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);
@@ -14448,6 +14455,12 @@ a.bx--side-nav__link--current::before {
14448
14455
  grid-gap: var(--cds-spacing-05, 1rem) 2rem;
14449
14456
  grid-template-columns: repeat(2, 1fr);
14450
14457
  }
14458
+ .c4p--add-select__global-filter-applied {
14459
+ display: flex;
14460
+ align-items: center;
14461
+ padding: var(--cds-spacing-03, 0.5rem);
14462
+ background: var(--cds-ui-01, #f4f4f4);
14463
+ }
14451
14464
 
14452
14465
  .c4p--add-select__global-filter-button-set button.c4p--add-select__global-filter-button {
14453
14466
  max-width: none;
@@ -14463,7 +14476,7 @@ button.c4p--add-select__global-filter-toggle {
14463
14476
  margin: 0;
14464
14477
  }
14465
14478
 
14466
- .c4p--add-select .c4p--tearsheet .c4p--tearsheet__influencer {
14479
+ .c4p--add-select .c4p--tearsheet__influencer {
14467
14480
  max-width: 29rem;
14468
14481
  flex: 0 0 50%;
14469
14482
  }
@@ -14472,7 +14485,7 @@ button.c4p--add-select__global-filter-toggle {
14472
14485
  color: var(--cds-text-02, #525252);
14473
14486
  }
14474
14487
 
14475
- .c4p--add-select .c4p--tearsheet .c4p--tearsheet__content {
14488
+ .c4p--add-select .c4p--tearsheet__content {
14476
14489
  display: flex;
14477
14490
  flex-direction: column;
14478
14491
  }
@@ -15723,20 +15736,20 @@ button.c4p--add-select__global-filter-toggle {
15723
15736
  }
15724
15737
 
15725
15738
  /* stylelint-disable */
15726
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
15739
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
15727
15740
  .bx--tag {
15728
15741
  outline: 1px solid transparent;
15729
15742
  }
15730
15743
  }
15731
15744
 
15732
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
15745
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
15733
15746
  .bx--tag__close-icon svg,
15734
15747
  .bx--tag__custom-icon svg {
15735
15748
  fill: ButtonText;
15736
15749
  }
15737
15750
  }
15738
15751
 
15739
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
15752
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
15740
15753
  .bx--tag__close-icon:focus {
15741
15754
  color: Highlight;
15742
15755
  outline: 1px solid Highlight;
@@ -16239,7 +16252,7 @@ button.c4p--add-select__global-filter-toggle {
16239
16252
  fill: var(--cds-icon-02, #525252);
16240
16253
  }
16241
16254
 
16242
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
16255
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
16243
16256
  .bx--search-close svg,
16244
16257
  .bx--search-magnifier-icon {
16245
16258
  fill: ButtonText;
@@ -17645,21 +17658,21 @@ button.c4p--add-select__global-filter-toggle {
17645
17658
  }
17646
17659
 
17647
17660
  @keyframes web-terminal-entrance {
17648
- 0% {
17661
+ from {
17649
17662
  opacity: 0;
17650
17663
  transform: translateX(36.5rem);
17651
17664
  }
17652
- 100% {
17665
+ to {
17653
17666
  opacity: 1;
17654
17667
  transform: translateX(0);
17655
17668
  }
17656
17669
  }
17657
17670
  @keyframes web-terminal-exit {
17658
- 0% {
17671
+ from {
17659
17672
  opacity: 1;
17660
17673
  transform: translateX(0);
17661
17674
  }
17662
- 100% {
17675
+ to {
17663
17676
  opacity: 0;
17664
17677
  transform: translateX(36.5rem);
17665
17678
  }
@@ -18540,6 +18553,15 @@ button.c4p--add-select__global-filter-toggle {
18540
18553
  height: 100%;
18541
18554
  }
18542
18555
 
18556
+ .c4p--web-terminal-content-wrapper {
18557
+ width: 100vw;
18558
+ height: 100%;
18559
+ }
18560
+
18561
+ .c4p--web-terminal-content-wrapper--open {
18562
+ width: calc(100vw - 36.5rem);
18563
+ }
18564
+
18543
18565
  .c4p--user-profile-image--light {
18544
18566
  color: var(--cds-ui-01, #f4f4f4);
18545
18567
  }
@@ -19296,7 +19318,13 @@ button.c4p--add-select__global-filter-toggle {
19296
19318
  background-color: var(--cds-hover-selected-ui, #cacaca);
19297
19319
  }
19298
19320
  .c4p--data-spreadsheet .c4p--data-spreadsheet__th--select-all {
19299
- min-width: calc(var(--cds-spacing-10, 4rem) - var(--cds-spacing-02, 0.25rem));
19321
+ width: var(--cds-spacing-10, 4rem);
19322
+ }
19323
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__td-th--cell-container,
19324
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__select-all-cell-container {
19325
+ position: sticky;
19326
+ z-index: 4;
19327
+ left: 0;
19300
19328
  }
19301
19329
  .c4p--data-spreadsheet .c4p--data-spreadsheet__td-th.c4p--data-spreadsheet__td {
19302
19330
  font-weight: 600;
@@ -19383,23 +19411,13 @@ button.c4p--add-select__global-filter-toggle {
19383
19411
  text-align: left;
19384
19412
  }
19385
19413
  .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] {
19414
+ z-index: 4;
19386
19415
  background-color: transparent;
19387
19416
  }
19388
19417
  .c4p--data-spreadsheet .c4p--data-spreadsheet__active-cell--highlight:focus {
19389
19418
  border: var(--cds-spacing-01, 0.125rem) solid var(--cds-interactive-01, #0f62fe);
19390
19419
  outline: 0;
19391
19420
  }
19392
- .c4p--data-spreadsheet .c4p--data-spreadsheet__active-cell--highlight.c4p--data-spreadsheet__active-cell--with-selection::before {
19393
- position: absolute;
19394
- top: 0;
19395
- left: 0;
19396
- display: block;
19397
- width: 100%;
19398
- height: 100%;
19399
- background-color: var(--cds-interactive-01, #0f62fe);
19400
- content: "";
19401
- opacity: 0.25;
19402
- }
19403
19421
  .c4p--data-spreadsheet .c4p--data-spreadsheet__selection-area--element {
19404
19422
  position: absolute;
19405
19423
  z-index: 2;
@@ -19417,10 +19435,39 @@ button.c4p--add-select__global-filter-toggle {
19417
19435
  content: "";
19418
19436
  opacity: 0.2;
19419
19437
  }
19438
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__selection-area--element.c4p--data-spreadsheet__selection-area--element-cloned {
19439
+ z-index: 4;
19440
+ }
19441
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__selection-area--element.c4p--data-spreadsheet__selection-area--element-cloned::before {
19442
+ background-color: var(--cds-ui-05, #161616);
19443
+ opacity: 0.25;
19444
+ }
19445
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__reorder-indicator-line {
19446
+ position: absolute;
19447
+ z-index: 4;
19448
+ width: var(--cds-spacing-01, 0.125rem);
19449
+ background-color: var(--cds-interactive-01, #0f62fe);
19450
+ }
19420
19451
  .c4p--data-spreadsheet .c4p--data-spreadsheet__th--active-header,
19421
19452
  .c4p--data-spreadsheet .c4p--data-spreadsheet__td-th--active-header.c4p--data-spreadsheet__td {
19422
19453
  background-color: var(--cds-hover-selected-ui, #cacaca);
19423
19454
  }
19455
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__th--selected-header,
19456
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__td-th--selected-header.c4p--data-spreadsheet__td {
19457
+ background-color: var(--cds-inverse-02, #393939);
19458
+ color: var(--cds-text-04, #ffffff);
19459
+ }
19460
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__th--selected-header:focus, .c4p--data-spreadsheet .c4p--data-spreadsheet__th--selected-header:hover,
19461
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__td-th--selected-header.c4p--data-spreadsheet__td:focus,
19462
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__td-th--selected-header.c4p--data-spreadsheet__td:hover {
19463
+ background-color: var(--cds-inverse-02, #393939);
19464
+ }
19465
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__th--selected-header.c4p--data-spreadsheet__th {
19466
+ cursor: grab;
19467
+ }
19468
+ .c4p--data-spreadsheet .c4p--data-spreadsheet__th--selected-header-reorder-active.c4p--data-spreadsheet__th {
19469
+ cursor: grabbing;
19470
+ }
19424
19471
  .c4p--data-spreadsheet .c4p--data-spreadsheet__list--container {
19425
19472
  overscroll-behavior: none;
19426
19473
  }
@@ -19688,6 +19735,10 @@ button.c4p--add-select__global-filter-toggle {
19688
19735
  flex-direction: column;
19689
19736
  }
19690
19737
 
19738
+ .c4p--datagrid__carbon-row-expanded.c4p--datagrid__carbon-row-expanded-hover-active ~ .c4p--datagrid__carbon-nested-row {
19739
+ border-left: 1px solid var(--cds-interactive-01, #0f62fe);
19740
+ }
19741
+
19691
19742
  /*
19692
19743
  * Licensed Materials - Property of IBM
19693
19744
  * 5724-Q36
@@ -19696,7 +19747,7 @@ button.c4p--add-select__global-filter-toggle {
19696
19747
  * restricted by GSA ADP Schedule Contract with IBM Corp.
19697
19748
  */
19698
19749
  .bx--data-table tr.c4p--datagrid__carbon-nested-row {
19699
- border-left: 2px solid var(--cds-interactive-01, #0f62fe);
19750
+ border-left: 1px solid transparent;
19700
19751
  }
19701
19752
  .bx--data-table tr.c4p--datagrid__carbon-nested-row .c4p--datagrid__cell {
19702
19753
  border-bottom: 1px solid var(--cds-ui-03, #e0e0e0);
@@ -21830,7 +21881,7 @@ li.bx--accordion__item--disabled:last-of-type {
21830
21881
  margin-bottom: 0;
21831
21882
  }
21832
21883
 
21833
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
21884
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
21834
21885
  .bx--accordion__arrow,
21835
21886
  .bx--accordion__item--active .bx--accordion__arrow {
21836
21887
  fill: ButtonText;
@@ -22737,7 +22788,7 @@ li.bx--accordion__item--disabled:last-of-type {
22737
22788
  background-color: inherit;
22738
22789
  }
22739
22790
 
22740
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
22791
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
22741
22792
  .bx--list-box__field,
22742
22793
  .bx--list-box__menu,
22743
22794
  .bx--multi-select .bx--tag--filter {
@@ -22745,7 +22796,7 @@ li.bx--accordion__item--disabled:last-of-type {
22745
22796
  }
22746
22797
  }
22747
22798
 
22748
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
22799
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
22749
22800
  .bx--list-box__field:focus,
22750
22801
  .bx--multi-select .bx--tag__close-icon:focus,
22751
22802
  .bx--list-box__menu-item--highlighted .bx--list-box__menu-item__option {
@@ -22754,7 +22805,7 @@ li.bx--accordion__item--disabled:last-of-type {
22754
22805
  }
22755
22806
  }
22756
22807
 
22757
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
22808
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
22758
22809
  .bx--list-box__menu-icon > svg,
22759
22810
  .bx--list-box__selection > svg,
22760
22811
  .bx--list-box__selection--multi > svg {
@@ -22967,7 +23018,7 @@ li.bx--accordion__item--disabled:last-of-type {
22967
23018
  fill: var(--cds-icon-inverse, #ffffff);
22968
23019
  }
22969
23020
 
22970
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
23021
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
22971
23022
  .bx--content-switcher-btn:focus {
22972
23023
  color: Highlight;
22973
23024
  outline: 1px solid Highlight;
@@ -24282,7 +24333,7 @@ tr.bx--data-table--selected:last-of-type td {
24282
24333
  margin: -0.1875rem 0;
24283
24334
  }
24284
24335
 
24285
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
24336
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
24286
24337
  .bx--data-table-content {
24287
24338
  outline: 1px solid transparent;
24288
24339
  }
@@ -24568,14 +24619,14 @@ tr.bx--parent-row.bx--data-table--selected.bx--expandable-row--hover + tr[data-c
24568
24619
  background: var(--cds-layer-selected, #e0e0e0);
24569
24620
  }
24570
24621
 
24571
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
24622
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
24572
24623
  .bx--table-expand__button:focus .bx--table-expand__svg {
24573
24624
  color: Highlight;
24574
24625
  outline: 1px solid Highlight;
24575
24626
  }
24576
24627
  }
24577
24628
 
24578
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
24629
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
24579
24630
  .bx--table-expand__svg {
24580
24631
  fill: ButtonText;
24581
24632
  }
@@ -24753,7 +24804,7 @@ th .bx--table-sort__flex {
24753
24804
  margin-top: 0.8125rem;
24754
24805
  }
24755
24806
 
24756
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
24807
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
24757
24808
  .bx--table-sort__icon,
24758
24809
  .bx--table-sort__icon-unsorted {
24759
24810
  fill: ButtonText;
@@ -25465,14 +25516,14 @@ th .bx--table-sort__flex {
25465
25516
  cursor: pointer;
25466
25517
  }
25467
25518
 
25468
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
25519
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
25469
25520
  .flatpickr-prev-month,
25470
25521
  .flatpickr-next-month {
25471
25522
  fill: ButtonText;
25472
25523
  }
25473
25524
  }
25474
25525
 
25475
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
25526
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
25476
25527
  .flatpickr-day.selected {
25477
25528
  color: Highlight;
25478
25529
  outline: 1px solid Highlight;
@@ -25480,14 +25531,14 @@ th .bx--table-sort__flex {
25480
25531
  }
25481
25532
  }
25482
25533
 
25483
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
25534
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
25484
25535
  .flatpickr-day.today,
25485
25536
  .flatpickr-day.inRange {
25486
25537
  color: Highlight;
25487
25538
  }
25488
25539
  }
25489
25540
 
25490
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
25541
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
25491
25542
  .flatpickr-calendar {
25492
25543
  outline: 1px solid transparent;
25493
25544
  }
@@ -25714,7 +25765,7 @@ th .bx--table-sort__flex {
25714
25765
  }
25715
25766
  }
25716
25767
 
25717
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
25768
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
25718
25769
  .bx--date-picker__icon {
25719
25770
  fill: ButtonText;
25720
25771
  }
@@ -26167,19 +26218,19 @@ button.bx--dropdown-text:focus {
26167
26218
  }
26168
26219
  }
26169
26220
 
26170
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
26221
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
26171
26222
  .bx--dropdown .bx--list-box__field {
26172
26223
  outline: 1px solid transparent;
26173
26224
  }
26174
26225
  }
26175
26226
 
26176
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
26227
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
26177
26228
  .bx--list-box__menu-item__option {
26178
26229
  outline: none;
26179
26230
  }
26180
26231
  }
26181
26232
 
26182
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
26233
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
26183
26234
  .bx--list-box__menu-item__selected-icon {
26184
26235
  fill: ButtonText;
26185
26236
  }
@@ -26880,13 +26931,13 @@ button.bx--dropdown-text:focus {
26880
26931
  }
26881
26932
 
26882
26933
  /* stylelint-disable */
26883
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
26934
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
26884
26935
  .bx--inline-notification {
26885
26936
  outline: 1px solid transparent;
26886
26937
  }
26887
26938
  }
26888
26939
 
26889
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
26940
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
26890
26941
  .bx--inline-notification__close-button:focus,
26891
26942
  .bx--btn.bx--btn--ghost.bx--inline-notification__action-button:focus {
26892
26943
  color: Highlight;
@@ -26894,7 +26945,7 @@ button.bx--dropdown-text:focus {
26894
26945
  }
26895
26946
  }
26896
26947
 
26897
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
26948
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
26898
26949
  .bx--inline-notification__icon {
26899
26950
  fill: ButtonText;
26900
26951
  }
@@ -27141,20 +27192,20 @@ button.bx--dropdown-text:focus {
27141
27192
  }
27142
27193
 
27143
27194
  /* stylelint-disable */
27144
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
27195
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
27145
27196
  .bx--toast-notification {
27146
27197
  outline: 1px solid transparent;
27147
27198
  }
27148
27199
  }
27149
27200
 
27150
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
27201
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
27151
27202
  .bx--toast-notification__close-button:focus {
27152
27203
  color: Highlight;
27153
27204
  outline: 1px solid Highlight;
27154
27205
  }
27155
27206
  }
27156
27207
 
27157
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
27208
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
27158
27209
  .bx--toast-notification__icon {
27159
27210
  fill: ButtonText;
27160
27211
  }
@@ -27567,7 +27618,7 @@ button.bx--dropdown-text:focus {
27567
27618
  }
27568
27619
 
27569
27620
  /* stylelint-disable */
27570
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
27621
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
27571
27622
  .bx--number__control-btn:hover,
27572
27623
  .bx--number__control-btn:focus {
27573
27624
  color: Highlight;
@@ -27575,13 +27626,13 @@ button.bx--dropdown-text:focus {
27575
27626
  }
27576
27627
  }
27577
27628
 
27578
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
27629
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
27579
27630
  .bx--number__control-btn {
27580
27631
  outline: 1px solid transparent;
27581
27632
  }
27582
27633
  }
27583
27634
 
27584
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
27635
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
27585
27636
  .bx--number__control-btn svg {
27586
27637
  fill: ButtonText;
27587
27638
  }
@@ -28012,7 +28063,7 @@ optgroup.bx--select-optgroup:disabled,
28012
28063
  display: none;
28013
28064
  }
28014
28065
 
28015
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
28066
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
28016
28067
  .bx--select__arrow {
28017
28068
  fill: ButtonText;
28018
28069
  }
@@ -28233,7 +28284,7 @@ span.bx--pagination__text {
28233
28284
  margin-bottom: 0;
28234
28285
  }
28235
28286
 
28236
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
28287
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
28237
28288
  .bx--pagination__button,
28238
28289
  .bx--btn--ghost.bx--pagination__button {
28239
28290
  outline: 1px solid transparent;
@@ -28245,14 +28296,23 @@ span.bx--pagination__text {
28245
28296
  font-weight: var(--cds-body-short-01-font-weight, 400);
28246
28297
  line-height: var(--cds-body-short-01-line-height, 1.28572);
28247
28298
  letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
28248
- display: block;
28299
+ display: flex;
28300
+ min-width: 3rem;
28301
+ justify-content: space-between;
28249
28302
  margin-bottom: var(--cds-spacing-03, 0.5rem);
28250
28303
  color: var(--cds-text-primary, #161616);
28251
28304
  }
28252
28305
 
28306
+ .bx--progress-bar__label-text {
28307
+ overflow: hidden;
28308
+ text-overflow: ellipsis;
28309
+ white-space: nowrap;
28310
+ }
28311
+
28253
28312
  .bx--progress-bar__track {
28254
28313
  position: relative;
28255
28314
  width: 100%;
28315
+ min-width: 3rem;
28256
28316
  height: 0.5rem;
28257
28317
  background-color: var(--cds-layer, #f4f4f4);
28258
28318
  }
@@ -28269,7 +28329,8 @@ span.bx--pagination__text {
28269
28329
  display: block;
28270
28330
  width: 100%;
28271
28331
  height: 100%;
28272
- background-color: var(--cds-interactive, #0f62fe);
28332
+ background-color: currentColor;
28333
+ color: var(--cds-interactive, #0f62fe);
28273
28334
  transform: scaleX(0);
28274
28335
  transform-origin: 0 center /*rtl:100% center*/;
28275
28336
  transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
@@ -28295,10 +28356,52 @@ span.bx--pagination__text {
28295
28356
  font-size: var(--cds-helper-text-01-font-size, 0.75rem);
28296
28357
  line-height: var(--cds-helper-text-01-line-height, 1.33333);
28297
28358
  letter-spacing: var(--cds-helper-text-01-letter-spacing, 0.32px);
28298
- margin-top: var(--cds-spacing-02, 0.25rem);
28359
+ margin-top: var(--cds-spacing-03, 0.5rem);
28299
28360
  color: var(--cds-text-secondary, #525252);
28300
28361
  }
28301
28362
 
28363
+ .bx--progress-bar__status-icon {
28364
+ flex-shrink: 0;
28365
+ margin-left: var(--cds-spacing-05, 1rem);
28366
+ }
28367
+
28368
+ .bx--progress-bar--finished .bx--progress-bar__bar,
28369
+ .bx--progress-bar--finished .bx--progress-bar__status-icon {
28370
+ color: var(--cds-support-success, #198038);
28371
+ }
28372
+
28373
+ .bx--progress-bar--error .bx--progress-bar__bar,
28374
+ .bx--progress-bar--error .bx--progress-bar__status-icon,
28375
+ .bx--progress-bar--error .bx--progress-bar__helper-text {
28376
+ color: var(--cds-support-error, #da1e28);
28377
+ }
28378
+
28379
+ .bx--progress-bar--finished .bx--progress-bar__bar,
28380
+ .bx--progress-bar--error .bx--progress-bar__bar {
28381
+ transform: scaleX(1);
28382
+ }
28383
+
28384
+ .bx--progress-bar--finished.bx--progress-bar--inline .bx--progress-bar__track,
28385
+ .bx--progress-bar--error.bx--progress-bar--inline .bx--progress-bar__track {
28386
+ position: absolute;
28387
+ overflow: hidden;
28388
+ width: 1px;
28389
+ height: 1px;
28390
+ padding: 0;
28391
+ border: 0;
28392
+ margin: -1px;
28393
+ clip: rect(0, 0, 0, 0);
28394
+ visibility: inherit;
28395
+ white-space: nowrap;
28396
+ }
28397
+
28398
+ .bx--progress-bar--finished.bx--progress-bar--inline .bx--progress-bar__label,
28399
+ .bx--progress-bar--error.bx--progress-bar--inline .bx--progress-bar__label {
28400
+ flex-shrink: 1;
28401
+ justify-content: flex-start;
28402
+ margin-right: 0;
28403
+ }
28404
+
28302
28405
  @keyframes progress-bar-indeterminate {
28303
28406
  0% {
28304
28407
  background-position-x: 25%;
@@ -28313,11 +28416,15 @@ span.bx--pagination__text {
28313
28416
  }
28314
28417
 
28315
28418
  .bx--progress-bar--inline .bx--progress-bar__label {
28316
- flex-shrink: 0;
28317
28419
  margin-right: var(--cds-spacing-05, 1rem);
28318
28420
  margin-bottom: 0;
28319
28421
  }
28320
28422
 
28423
+ .bx--progress-bar--inline .bx--progress-bar__track {
28424
+ flex-basis: 0;
28425
+ flex-grow: 1;
28426
+ }
28427
+
28321
28428
  .bx--progress-bar--inline .bx--progress-bar__helper-text {
28322
28429
  position: absolute;
28323
28430
  overflow: hidden;
@@ -28604,20 +28711,20 @@ span.bx--pagination__text {
28604
28711
  }
28605
28712
 
28606
28713
  /* stylelint-disable */
28607
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
28714
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
28608
28715
  .bx--slider__thumb {
28609
28716
  outline: 1px solid transparent;
28610
28717
  }
28611
28718
  }
28612
28719
 
28613
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
28720
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
28614
28721
  .bx--slider__thumb:focus {
28615
28722
  color: Highlight;
28616
28723
  outline: 1px solid Highlight;
28617
28724
  }
28618
28725
  }
28619
28726
 
28620
- @media screen and (-ms-high-contrast: active), (forced-colors: active), (prefers-contrast) {
28727
+ @media screen and (-ms-high-contrast: active), (forced-colors: active) {
28621
28728
  .bx--slider__track {
28622
28729
  outline: 1px solid transparent;
28623
28730
  }