@carbon/ibm-products 1.35.2 → 1.37.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. package/README.md +3 -3
  2. package/css/index-full-carbon.css +288 -265
  3. package/css/index-full-carbon.css.map +1 -1
  4. package/css/index-full-carbon.min.css +3 -3
  5. package/css/index-full-carbon.min.css.map +1 -1
  6. package/css/index-without-carbon-released-only.css +65 -68
  7. package/css/index-without-carbon-released-only.css.map +1 -1
  8. package/css/index-without-carbon-released-only.min.css +3 -3
  9. package/css/index-without-carbon-released-only.min.css.map +1 -1
  10. package/css/index-without-carbon.css +90 -70
  11. package/css/index-without-carbon.css.map +1 -1
  12. package/css/index-without-carbon.min.css +2 -2
  13. package/css/index-without-carbon.min.css.map +1 -1
  14. package/css/index.css +257 -237
  15. package/css/index.css.map +1 -1
  16. package/css/index.min.css +2 -2
  17. package/css/index.min.css.map +1 -1
  18. package/es/components/ActionSet/ActionSet.js +6 -3
  19. package/es/components/AddSelect/add-select-utils.js +2 -2
  20. package/es/components/DataSpreadsheet/DataSpreadsheet.js +2 -1
  21. package/es/components/DataSpreadsheet/utils/handleCellDeletion.js +8 -1
  22. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +88 -0
  23. package/es/components/Datagrid/useNestedRowExpander.js +8 -3
  24. package/es/components/FilterSummary/FilterSummary.js +54 -0
  25. package/es/components/FilterSummary/index.js +7 -0
  26. package/es/components/OptionsTile/OptionsTile.js +25 -10
  27. package/es/components/PageHeader/PageHeaderTitle.js +2 -4
  28. package/es/global/js/hooks/index.js +2 -1
  29. package/es/global/js/hooks/useControllableState.js +74 -0
  30. package/lib/components/ActionSet/ActionSet.js +6 -3
  31. package/lib/components/AddSelect/add-select-utils.js +2 -2
  32. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +2 -1
  33. package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +8 -1
  34. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +101 -0
  35. package/lib/components/Datagrid/useNestedRowExpander.js +7 -2
  36. package/lib/components/FilterSummary/FilterSummary.js +63 -0
  37. package/lib/components/FilterSummary/index.js +13 -0
  38. package/lib/components/OptionsTile/OptionsTile.js +25 -10
  39. package/lib/components/PageHeader/PageHeaderTitle.js +2 -4
  40. package/lib/global/js/hooks/index.js +8 -1
  41. package/lib/global/js/hooks/useControllableState.js +80 -0
  42. package/package.json +15 -15
  43. package/scss/components/ActionSet/_action-set.scss +9 -4
  44. package/scss/components/Datagrid/styles/_useNestedRows.scss +17 -0
  45. package/scss/components/FilterSummary/_filter-summary.scss +17 -0
  46. package/scss/components/FilterSummary/_index.scss +10 -0
  47. package/scss/components/FilterSummary/_storybook-styles.scss +14 -0
  48. package/scss/components/PageHeader/_page-header.scss +0 -4
  49. package/scss/components/_index.scss +1 -0
@@ -227,14 +227,17 @@
227
227
  font-weight: var(--cds-body-short-01-font-weight, 400);
228
228
  line-height: var(--cds-body-short-01-line-height, 1.28572);
229
229
  letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
230
- height: var(--cds-spacing-10, 4rem);
231
230
  align-items: center;
231
+ margin: 0;
232
+ }
233
+ .c4p--action-set .c4p--action-set__action-button.c4p--action-set__action-button--expressive {
234
+ height: var(--cds-spacing-10, 4rem);
232
235
  padding-top: var(--cds-spacing-05, 1rem);
233
236
  padding-bottom: var(--cds-spacing-07, 2rem);
234
- margin: 0;
235
237
  }
236
238
 
237
- .c4p--action-set.bx--btn-set .c4p--action-set__action-button.bx--btn.bx--btn--expressive {
239
+ .c4p--action-set.bx--btn-set .c4p--action-set__action-button.bx--btn.bx--btn--expressive,
240
+ .c4p--action-set.bx--btn-set .c4p--action-set__action-button.bx--btn {
238
241
  max-width: none;
239
242
  }
240
243
 
@@ -293,7 +296,7 @@
293
296
  }
294
297
  @media (prefers-reduced-motion: no-preference) {
295
298
  .c4p--cascade__element,
296
- .c4p--cascade__col {
299
+ .c4p--cascade__col {
297
300
  animation: 240ms cubic-bezier(0.2, 0, 0.38, 0.9) 0s 1 fade;
298
301
  animation-fill-mode: forwards;
299
302
  opacity: 0;
@@ -467,9 +470,9 @@
467
470
 
468
471
  @media (prefers-reduced-motion) {
469
472
  .c4p--create-influencer__side-nav-opening,
470
- .c4p--create-influencer__progress-indicator-opening,
471
- .c4p--create-influencer__side-nav-closing,
472
- .c4p--create-influencer__progress-indicator-closing {
473
+ .c4p--create-influencer__progress-indicator-opening,
474
+ .c4p--create-influencer__side-nav-closing,
475
+ .c4p--create-influencer__progress-indicator-closing {
473
476
  animation: none;
474
477
  opacity: 1;
475
478
  }
@@ -1960,7 +1963,7 @@
1960
1963
 
1961
1964
  .c4p--http-errors .c4p--http-errors__title {
1962
1965
  font-size: var(--cds-productive-heading-05-font-size, 2rem);
1963
- font-weight: var(--cds-productive-heading-05-font-weight, 300);
1966
+ font-weight: var(--cds-productive-heading-05-font-weight, 400);
1964
1967
  line-height: var(--cds-productive-heading-05-line-height, 1.25);
1965
1968
  letter-spacing: var(--cds-productive-heading-05-letter-spacing, 0);
1966
1969
  margin-bottom: var(--cds-spacing-04, 0.75rem);
@@ -2580,7 +2583,7 @@
2580
2583
  --cds-productive-heading-04-line-height: 1.28572;
2581
2584
  --cds-productive-heading-04-letter-spacing: 0;
2582
2585
  --cds-productive-heading-05-font-size: 2rem;
2583
- --cds-productive-heading-05-font-weight: 300;
2586
+ --cds-productive-heading-05-font-weight: 400;
2584
2587
  --cds-productive-heading-05-line-height: 1.25;
2585
2588
  --cds-productive-heading-05-letter-spacing: 0;
2586
2589
  --cds-productive-heading-06-font-size: 2.625rem;
@@ -2608,7 +2611,7 @@
2608
2611
  --cds-expressive-heading-04-line-height: 1.28572;
2609
2612
  --cds-expressive-heading-04-letter-spacing: 0;
2610
2613
  --cds-expressive-heading-05-font-size: 2rem;
2611
- --cds-expressive-heading-05-font-weight: 300;
2614
+ --cds-expressive-heading-05-font-weight: 400;
2612
2615
  --cds-expressive-heading-05-line-height: 1.25;
2613
2616
  --cds-expressive-heading-05-letter-spacing: 0;
2614
2617
  --cds-expressive-heading-06-font-size: 2rem;
@@ -2686,7 +2689,7 @@
2686
2689
  --cds-heading-04-line-height: 1.28572;
2687
2690
  --cds-heading-04-letter-spacing: 0;
2688
2691
  --cds-heading-05-font-size: 2rem;
2689
- --cds-heading-05-font-weight: 300;
2692
+ --cds-heading-05-font-weight: 400;
2690
2693
  --cds-heading-05-line-height: 1.25;
2691
2694
  --cds-heading-05-letter-spacing: 0;
2692
2695
  --cds-heading-06-font-size: 2.625rem;
@@ -2706,7 +2709,7 @@
2706
2709
  --cds-fluid-heading-04-line-height: 1.28572;
2707
2710
  --cds-fluid-heading-04-letter-spacing: 0;
2708
2711
  --cds-fluid-heading-05-font-size: 2rem;
2709
- --cds-fluid-heading-05-font-weight: 300;
2712
+ --cds-fluid-heading-05-font-weight: 400;
2710
2713
  --cds-fluid-heading-05-line-height: 1.25;
2711
2714
  --cds-fluid-heading-05-letter-spacing: 0;
2712
2715
  --cds-fluid-heading-06-font-size: 2rem;
@@ -2927,7 +2930,7 @@
2927
2930
  }
2928
2931
  @media (prefers-reduced-motion: reduce) {
2929
2932
  .c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-more-button .bx--btn__icon,
2930
- .c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-less-button .bx--btn__icon {
2933
+ .c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-content .c4p--notifications-panel__notification-read-less-button .bx--btn__icon {
2931
2934
  transition: none;
2932
2935
  }
2933
2936
  }
@@ -3089,7 +3092,7 @@
3089
3092
  display: none;
3090
3093
  }
3091
3094
  .c4p--breadcrumb-with-overflow .c4p--breadcrumb-with-overflow__breadcrumb-back,
3092
- .c4p--breadcrumb-with-overflow .bx--breadcrumb-item:last-child {
3095
+ .c4p--breadcrumb-with-overflow .bx--breadcrumb-item:last-child {
3093
3096
  display: inline-flex;
3094
3097
  vertical-align: middle;
3095
3098
  }
@@ -3603,12 +3606,6 @@
3603
3606
  transform: translateY(-2px);
3604
3607
  vertical-align: middle;
3605
3608
  }
3606
- .c4p--page-header .c4p--page-header__title-wrapper {
3607
- font-size: var(--cds-productive-heading-04-font-size, 1.75rem);
3608
- font-weight: var(--cds-productive-heading-04-font-weight, 400);
3609
- line-height: var(--cds-productive-heading-04-line-height, 1.28572);
3610
- letter-spacing: var(--cds-productive-heading-04-letter-spacing, 0);
3611
- }
3612
3609
  .c4p--page-header .c4p--page-header__page-actions {
3613
3610
  flex: 0 0 100%;
3614
3611
  margin-top: var(--cds-spacing-05, 1rem);
@@ -3999,7 +3996,7 @@
3999
3996
  }
4000
3997
  @media (prefers-reduced-motion) {
4001
3998
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-fatal .c4p--status-icon--light.c4p--status-icon--light-in-progress,
4002
- .c4p--status-icon--light.c4p--status-icon--light-fatal .c4p--status-icon--light.c4p--status-icon--light-in-progress {
3999
+ .c4p--status-icon--light.c4p--status-icon--light-fatal .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4003
4000
  animation: none;
4004
4001
  }
4005
4002
  }
@@ -4010,7 +4007,7 @@
4010
4007
  }
4011
4008
  @media (prefers-reduced-motion) {
4012
4009
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-fatal .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
4013
- .c4p--status-icon--light.c4p--status-icon--dark-fatal .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4010
+ .c4p--status-icon--light.c4p--status-icon--dark-fatal .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4014
4011
  animation: none;
4015
4012
  }
4016
4013
  }
@@ -4021,7 +4018,7 @@
4021
4018
  }
4022
4019
  @media (prefers-reduced-motion) {
4023
4020
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-critical .c4p--status-icon--light.c4p--status-icon--light-in-progress,
4024
- .c4p--status-icon--light.c4p--status-icon--light-critical .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4021
+ .c4p--status-icon--light.c4p--status-icon--light-critical .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4025
4022
  animation: none;
4026
4023
  }
4027
4024
  }
@@ -4032,7 +4029,7 @@
4032
4029
  }
4033
4030
  @media (prefers-reduced-motion) {
4034
4031
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-critical .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
4035
- .c4p--status-icon--light.c4p--status-icon--dark-critical .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4032
+ .c4p--status-icon--light.c4p--status-icon--dark-critical .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4036
4033
  animation: none;
4037
4034
  }
4038
4035
  }
@@ -4043,7 +4040,7 @@
4043
4040
  }
4044
4041
  @media (prefers-reduced-motion) {
4045
4042
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-major-warning .c4p--status-icon--light.c4p--status-icon--light-in-progress,
4046
- .c4p--status-icon--light.c4p--status-icon--light-major-warning .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4043
+ .c4p--status-icon--light.c4p--status-icon--light-major-warning .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4047
4044
  animation: none;
4048
4045
  }
4049
4046
  }
@@ -4054,7 +4051,7 @@
4054
4051
  }
4055
4052
  @media (prefers-reduced-motion) {
4056
4053
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-major-warning .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
4057
- .c4p--status-icon--light.c4p--status-icon--dark-major-warning .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4054
+ .c4p--status-icon--light.c4p--status-icon--dark-major-warning .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4058
4055
  animation: none;
4059
4056
  }
4060
4057
  }
@@ -4065,7 +4062,7 @@
4065
4062
  }
4066
4063
  @media (prefers-reduced-motion) {
4067
4064
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-minor-warning .c4p--status-icon--light.c4p--status-icon--light-in-progress,
4068
- .c4p--status-icon--light.c4p--status-icon--light-minor-warning .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4065
+ .c4p--status-icon--light.c4p--status-icon--light-minor-warning .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4069
4066
  animation: none;
4070
4067
  }
4071
4068
  }
@@ -4076,7 +4073,7 @@
4076
4073
  }
4077
4074
  @media (prefers-reduced-motion) {
4078
4075
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-minor-warning .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
4079
- .c4p--status-icon--light.c4p--status-icon--dark-minor-warning .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4076
+ .c4p--status-icon--light.c4p--status-icon--dark-minor-warning .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4080
4077
  animation: none;
4081
4078
  }
4082
4079
  }
@@ -4087,7 +4084,7 @@
4087
4084
  }
4088
4085
  @media (prefers-reduced-motion) {
4089
4086
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-undefined .c4p--status-icon--light.c4p--status-icon--light-in-progress,
4090
- .c4p--status-icon--light.c4p--status-icon--light-undefined .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4087
+ .c4p--status-icon--light.c4p--status-icon--light-undefined .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4091
4088
  animation: none;
4092
4089
  }
4093
4090
  }
@@ -4098,7 +4095,7 @@
4098
4095
  }
4099
4096
  @media (prefers-reduced-motion) {
4100
4097
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-undefined .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
4101
- .c4p--status-icon--light.c4p--status-icon--dark-undefined .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4098
+ .c4p--status-icon--light.c4p--status-icon--dark-undefined .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4102
4099
  animation: none;
4103
4100
  }
4104
4101
  }
@@ -4109,7 +4106,7 @@
4109
4106
  }
4110
4107
  @media (prefers-reduced-motion) {
4111
4108
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-unknown .c4p--status-icon--light.c4p--status-icon--light-in-progress,
4112
- .c4p--status-icon--light.c4p--status-icon--light-unknown .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4109
+ .c4p--status-icon--light.c4p--status-icon--light-unknown .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4113
4110
  animation: none;
4114
4111
  }
4115
4112
  }
@@ -4120,7 +4117,7 @@
4120
4117
  }
4121
4118
  @media (prefers-reduced-motion) {
4122
4119
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-unknown .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
4123
- .c4p--status-icon--light.c4p--status-icon--dark-unknown .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4120
+ .c4p--status-icon--light.c4p--status-icon--dark-unknown .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4124
4121
  animation: none;
4125
4122
  }
4126
4123
  }
@@ -4131,7 +4128,7 @@
4131
4128
  }
4132
4129
  @media (prefers-reduced-motion) {
4133
4130
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-normal .c4p--status-icon--light.c4p--status-icon--light-in-progress,
4134
- .c4p--status-icon--light.c4p--status-icon--light-normal .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4131
+ .c4p--status-icon--light.c4p--status-icon--light-normal .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4135
4132
  animation: none;
4136
4133
  }
4137
4134
  }
@@ -4142,7 +4139,7 @@
4142
4139
  }
4143
4140
  @media (prefers-reduced-motion) {
4144
4141
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-normal .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
4145
- .c4p--status-icon--light.c4p--status-icon--dark-normal .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4142
+ .c4p--status-icon--light.c4p--status-icon--dark-normal .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4146
4143
  animation: none;
4147
4144
  }
4148
4145
  }
@@ -4153,7 +4150,7 @@
4153
4150
  }
4154
4151
  @media (prefers-reduced-motion) {
4155
4152
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-info .c4p--status-icon--light.c4p--status-icon--light-in-progress,
4156
- .c4p--status-icon--light.c4p--status-icon--light-info .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4153
+ .c4p--status-icon--light.c4p--status-icon--light-info .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4157
4154
  animation: none;
4158
4155
  }
4159
4156
  }
@@ -4164,7 +4161,7 @@
4164
4161
  }
4165
4162
  @media (prefers-reduced-motion) {
4166
4163
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-info .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
4167
- .c4p--status-icon--light.c4p--status-icon--dark-info .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4164
+ .c4p--status-icon--light.c4p--status-icon--dark-info .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4168
4165
  animation: none;
4169
4166
  }
4170
4167
  }
@@ -4176,7 +4173,7 @@
4176
4173
  }
4177
4174
  @media (prefers-reduced-motion: reduce) {
4178
4175
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-in-progress,
4179
- .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4176
+ .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4180
4177
  animation: none;
4181
4178
  }
4182
4179
  }
@@ -4188,7 +4185,7 @@
4188
4185
  }
4189
4186
  @media (prefers-reduced-motion: reduce) {
4190
4187
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
4191
- .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4188
+ .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4192
4189
  animation: none;
4193
4190
  }
4194
4191
  }
@@ -4211,7 +4208,7 @@
4211
4208
  }
4212
4209
  @media (prefers-reduced-motion) {
4213
4210
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--light-pending .c4p--status-icon--light.c4p--status-icon--light-in-progress,
4214
- .c4p--status-icon--light.c4p--status-icon--light-pending .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4211
+ .c4p--status-icon--light.c4p--status-icon--light-pending .c4p--status-icon--light.c4p--status-icon--light-in-progress {
4215
4212
  animation: none;
4216
4213
  }
4217
4214
  }
@@ -4222,7 +4219,7 @@
4222
4219
  }
4223
4220
  @media (prefers-reduced-motion) {
4224
4221
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--light.c4p--status-icon--dark-pending .c4p--status-icon--light.c4p--status-icon--dark-in-progress,
4225
- .c4p--status-icon--light.c4p--status-icon--dark-pending .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4222
+ .c4p--status-icon--light.c4p--status-icon--dark-pending .c4p--status-icon--light.c4p--status-icon--dark-in-progress {
4226
4223
  animation: none;
4227
4224
  }
4228
4225
  }
@@ -4233,7 +4230,7 @@
4233
4230
  }
4234
4231
  @media (prefers-reduced-motion) {
4235
4232
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-fatal .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
4236
- .c4p--status-icon--dark.c4p--status-icon--light-fatal .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4233
+ .c4p--status-icon--dark.c4p--status-icon--light-fatal .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4237
4234
  animation: none;
4238
4235
  }
4239
4236
  }
@@ -4244,7 +4241,7 @@
4244
4241
  }
4245
4242
  @media (prefers-reduced-motion) {
4246
4243
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-fatal .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
4247
- .c4p--status-icon--dark.c4p--status-icon--dark-fatal .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4244
+ .c4p--status-icon--dark.c4p--status-icon--dark-fatal .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4248
4245
  animation: none;
4249
4246
  }
4250
4247
  }
@@ -4255,7 +4252,7 @@
4255
4252
  }
4256
4253
  @media (prefers-reduced-motion) {
4257
4254
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-critical .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
4258
- .c4p--status-icon--dark.c4p--status-icon--light-critical .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4255
+ .c4p--status-icon--dark.c4p--status-icon--light-critical .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4259
4256
  animation: none;
4260
4257
  }
4261
4258
  }
@@ -4266,7 +4263,7 @@
4266
4263
  }
4267
4264
  @media (prefers-reduced-motion) {
4268
4265
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-critical .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
4269
- .c4p--status-icon--dark.c4p--status-icon--dark-critical .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4266
+ .c4p--status-icon--dark.c4p--status-icon--dark-critical .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4270
4267
  animation: none;
4271
4268
  }
4272
4269
  }
@@ -4277,7 +4274,7 @@
4277
4274
  }
4278
4275
  @media (prefers-reduced-motion) {
4279
4276
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-major-warning .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
4280
- .c4p--status-icon--dark.c4p--status-icon--light-major-warning .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4277
+ .c4p--status-icon--dark.c4p--status-icon--light-major-warning .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4281
4278
  animation: none;
4282
4279
  }
4283
4280
  }
@@ -4288,7 +4285,7 @@
4288
4285
  }
4289
4286
  @media (prefers-reduced-motion) {
4290
4287
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-major-warning .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
4291
- .c4p--status-icon--dark.c4p--status-icon--dark-major-warning .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4288
+ .c4p--status-icon--dark.c4p--status-icon--dark-major-warning .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4292
4289
  animation: none;
4293
4290
  }
4294
4291
  }
@@ -4299,7 +4296,7 @@
4299
4296
  }
4300
4297
  @media (prefers-reduced-motion) {
4301
4298
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-minor-warning .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
4302
- .c4p--status-icon--dark.c4p--status-icon--light-minor-warning .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4299
+ .c4p--status-icon--dark.c4p--status-icon--light-minor-warning .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4303
4300
  animation: none;
4304
4301
  }
4305
4302
  }
@@ -4310,7 +4307,7 @@
4310
4307
  }
4311
4308
  @media (prefers-reduced-motion) {
4312
4309
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-minor-warning .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
4313
- .c4p--status-icon--dark.c4p--status-icon--dark-minor-warning .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4310
+ .c4p--status-icon--dark.c4p--status-icon--dark-minor-warning .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4314
4311
  animation: none;
4315
4312
  }
4316
4313
  }
@@ -4321,7 +4318,7 @@
4321
4318
  }
4322
4319
  @media (prefers-reduced-motion) {
4323
4320
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-undefined .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
4324
- .c4p--status-icon--dark.c4p--status-icon--light-undefined .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4321
+ .c4p--status-icon--dark.c4p--status-icon--light-undefined .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4325
4322
  animation: none;
4326
4323
  }
4327
4324
  }
@@ -4332,7 +4329,7 @@
4332
4329
  }
4333
4330
  @media (prefers-reduced-motion) {
4334
4331
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-undefined .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
4335
- .c4p--status-icon--dark.c4p--status-icon--dark-undefined .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4332
+ .c4p--status-icon--dark.c4p--status-icon--dark-undefined .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4336
4333
  animation: none;
4337
4334
  }
4338
4335
  }
@@ -4343,7 +4340,7 @@
4343
4340
  }
4344
4341
  @media (prefers-reduced-motion) {
4345
4342
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-unknown .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
4346
- .c4p--status-icon--dark.c4p--status-icon--light-unknown .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4343
+ .c4p--status-icon--dark.c4p--status-icon--light-unknown .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4347
4344
  animation: none;
4348
4345
  }
4349
4346
  }
@@ -4354,7 +4351,7 @@
4354
4351
  }
4355
4352
  @media (prefers-reduced-motion) {
4356
4353
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-unknown .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
4357
- .c4p--status-icon--dark.c4p--status-icon--dark-unknown .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4354
+ .c4p--status-icon--dark.c4p--status-icon--dark-unknown .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4358
4355
  animation: none;
4359
4356
  }
4360
4357
  }
@@ -4365,7 +4362,7 @@
4365
4362
  }
4366
4363
  @media (prefers-reduced-motion) {
4367
4364
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-normal .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
4368
- .c4p--status-icon--dark.c4p--status-icon--light-normal .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4365
+ .c4p--status-icon--dark.c4p--status-icon--light-normal .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4369
4366
  animation: none;
4370
4367
  }
4371
4368
  }
@@ -4376,7 +4373,7 @@
4376
4373
  }
4377
4374
  @media (prefers-reduced-motion) {
4378
4375
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-normal .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
4379
- .c4p--status-icon--dark.c4p--status-icon--dark-normal .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4376
+ .c4p--status-icon--dark.c4p--status-icon--dark-normal .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4380
4377
  animation: none;
4381
4378
  }
4382
4379
  }
@@ -4387,7 +4384,7 @@
4387
4384
  }
4388
4385
  @media (prefers-reduced-motion) {
4389
4386
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-info .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
4390
- .c4p--status-icon--dark.c4p--status-icon--light-info .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4387
+ .c4p--status-icon--dark.c4p--status-icon--light-info .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4391
4388
  animation: none;
4392
4389
  }
4393
4390
  }
@@ -4398,7 +4395,7 @@
4398
4395
  }
4399
4396
  @media (prefers-reduced-motion) {
4400
4397
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-info .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
4401
- .c4p--status-icon--dark.c4p--status-icon--dark-info .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4398
+ .c4p--status-icon--dark.c4p--status-icon--dark-info .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4402
4399
  animation: none;
4403
4400
  }
4404
4401
  }
@@ -4410,7 +4407,7 @@
4410
4407
  }
4411
4408
  @media (prefers-reduced-motion: reduce) {
4412
4409
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
4413
- .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4410
+ .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4414
4411
  animation: none;
4415
4412
  }
4416
4413
  }
@@ -4422,7 +4419,7 @@
4422
4419
  }
4423
4420
  @media (prefers-reduced-motion: reduce) {
4424
4421
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
4425
- .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4422
+ .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4426
4423
  animation: none;
4427
4424
  }
4428
4425
  }
@@ -4445,7 +4442,7 @@
4445
4442
  }
4446
4443
  @media (prefers-reduced-motion) {
4447
4444
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--light-pending .c4p--status-icon--dark.c4p--status-icon--light-in-progress,
4448
- .c4p--status-icon--dark.c4p--status-icon--light-pending .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4445
+ .c4p--status-icon--dark.c4p--status-icon--light-pending .c4p--status-icon--dark.c4p--status-icon--light-in-progress {
4449
4446
  animation: none;
4450
4447
  }
4451
4448
  }
@@ -4456,7 +4453,7 @@
4456
4453
  }
4457
4454
  @media (prefers-reduced-motion) {
4458
4455
  .bx--btn.bx--btn--icon-only.bx--tooltip__trigger .c4p--status-icon--dark.c4p--status-icon--dark-pending .c4p--status-icon--dark.c4p--status-icon--dark-in-progress,
4459
- .c4p--status-icon--dark.c4p--status-icon--dark-pending .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4456
+ .c4p--status-icon--dark.c4p--status-icon--dark-pending .c4p--status-icon--dark.c4p--status-icon--dark-in-progress {
4460
4457
  animation: none;
4461
4458
  }
4462
4459
  }
@@ -4946,7 +4943,7 @@
4946
4943
  --cds-productive-heading-04-line-height: 1.28572;
4947
4944
  --cds-productive-heading-04-letter-spacing: 0;
4948
4945
  --cds-productive-heading-05-font-size: 2rem;
4949
- --cds-productive-heading-05-font-weight: 300;
4946
+ --cds-productive-heading-05-font-weight: 400;
4950
4947
  --cds-productive-heading-05-line-height: 1.25;
4951
4948
  --cds-productive-heading-05-letter-spacing: 0;
4952
4949
  --cds-productive-heading-06-font-size: 2.625rem;
@@ -4974,7 +4971,7 @@
4974
4971
  --cds-expressive-heading-04-line-height: 1.28572;
4975
4972
  --cds-expressive-heading-04-letter-spacing: 0;
4976
4973
  --cds-expressive-heading-05-font-size: 2rem;
4977
- --cds-expressive-heading-05-font-weight: 300;
4974
+ --cds-expressive-heading-05-font-weight: 400;
4978
4975
  --cds-expressive-heading-05-line-height: 1.25;
4979
4976
  --cds-expressive-heading-05-letter-spacing: 0;
4980
4977
  --cds-expressive-heading-06-font-size: 2rem;
@@ -5052,7 +5049,7 @@
5052
5049
  --cds-heading-04-line-height: 1.28572;
5053
5050
  --cds-heading-04-letter-spacing: 0;
5054
5051
  --cds-heading-05-font-size: 2rem;
5055
- --cds-heading-05-font-weight: 300;
5052
+ --cds-heading-05-font-weight: 400;
5056
5053
  --cds-heading-05-line-height: 1.25;
5057
5054
  --cds-heading-05-letter-spacing: 0;
5058
5055
  --cds-heading-06-font-size: 2.625rem;
@@ -5072,7 +5069,7 @@
5072
5069
  --cds-fluid-heading-04-line-height: 1.28572;
5073
5070
  --cds-fluid-heading-04-letter-spacing: 0;
5074
5071
  --cds-fluid-heading-05-font-size: 2rem;
5075
- --cds-fluid-heading-05-font-weight: 300;
5072
+ --cds-fluid-heading-05-font-weight: 400;
5076
5073
  --cds-fluid-heading-05-line-height: 1.25;
5077
5074
  --cds-fluid-heading-05-letter-spacing: 0;
5078
5075
  --cds-fluid-heading-06-font-size: 2rem;
@@ -5391,7 +5388,7 @@
5391
5388
  --cds-productive-heading-04-line-height: 1.28572;
5392
5389
  --cds-productive-heading-04-letter-spacing: 0;
5393
5390
  --cds-productive-heading-05-font-size: 2rem;
5394
- --cds-productive-heading-05-font-weight: 300;
5391
+ --cds-productive-heading-05-font-weight: 400;
5395
5392
  --cds-productive-heading-05-line-height: 1.25;
5396
5393
  --cds-productive-heading-05-letter-spacing: 0;
5397
5394
  --cds-productive-heading-06-font-size: 2.625rem;
@@ -5419,7 +5416,7 @@
5419
5416
  --cds-expressive-heading-04-line-height: 1.28572;
5420
5417
  --cds-expressive-heading-04-letter-spacing: 0;
5421
5418
  --cds-expressive-heading-05-font-size: 2rem;
5422
- --cds-expressive-heading-05-font-weight: 300;
5419
+ --cds-expressive-heading-05-font-weight: 400;
5423
5420
  --cds-expressive-heading-05-line-height: 1.25;
5424
5421
  --cds-expressive-heading-05-letter-spacing: 0;
5425
5422
  --cds-expressive-heading-06-font-size: 2rem;
@@ -5497,7 +5494,7 @@
5497
5494
  --cds-heading-04-line-height: 1.28572;
5498
5495
  --cds-heading-04-letter-spacing: 0;
5499
5496
  --cds-heading-05-font-size: 2rem;
5500
- --cds-heading-05-font-weight: 300;
5497
+ --cds-heading-05-font-weight: 400;
5501
5498
  --cds-heading-05-line-height: 1.25;
5502
5499
  --cds-heading-05-letter-spacing: 0;
5503
5500
  --cds-heading-06-font-size: 2.625rem;
@@ -5517,7 +5514,7 @@
5517
5514
  --cds-fluid-heading-04-line-height: 1.28572;
5518
5515
  --cds-fluid-heading-04-letter-spacing: 0;
5519
5516
  --cds-fluid-heading-05-font-size: 2rem;
5520
- --cds-fluid-heading-05-font-weight: 300;
5517
+ --cds-fluid-heading-05-font-weight: 400;
5521
5518
  --cds-fluid-heading-05-line-height: 1.25;
5522
5519
  --cds-fluid-heading-05-letter-spacing: 0;
5523
5520
  --cds-fluid-heading-06-font-size: 2rem;