@carbon/ibm-products 1.22.0 → 1.24.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (114) hide show
  1. package/css/components/Datagrid/styles/datagrid.css +87 -11
  2. package/css/components/Datagrid/styles/datagrid.css.map +1 -1
  3. package/css/components/Datagrid/styles/index.css +94 -11
  4. package/css/components/Datagrid/styles/index.css.map +1 -1
  5. package/css/components/Datagrid/styles/useExpandedRow.css +9 -0
  6. package/css/components/Datagrid/styles/useExpandedRow.css.map +1 -0
  7. package/css/index-full-carbon.css +276 -181
  8. package/css/index-full-carbon.css.map +1 -1
  9. package/css/index-full-carbon.min.css +2 -8
  10. package/css/index-full-carbon.min.css.map +1 -1
  11. package/css/index-without-carbon-released-only.css +37 -41
  12. package/css/index-without-carbon-released-only.css.map +1 -1
  13. package/css/index-without-carbon-released-only.min.css +1 -7
  14. package/css/index-without-carbon-released-only.min.css.map +1 -1
  15. package/css/index-without-carbon.css +271 -54
  16. package/css/index-without-carbon.css.map +1 -1
  17. package/css/index-without-carbon.min.css +1 -7
  18. package/css/index-without-carbon.min.css.map +1 -1
  19. package/css/index.css +274 -177
  20. package/css/index.css.map +1 -1
  21. package/css/index.min.css +2 -8
  22. package/css/index.min.css.map +1 -1
  23. package/es/components/AddSelect/AddSelect.js +56 -423
  24. package/es/components/AddSelect/AddSelectBody.js +345 -0
  25. package/es/components/AddSelect/AddSelectBreadcrumbs.js +11 -31
  26. package/es/components/AddSelect/AddSelectColumn.js +95 -42
  27. package/es/components/AddSelect/AddSelectFilter.js +2 -3
  28. package/es/components/AddSelect/AddSelectList.js +11 -62
  29. package/es/components/AddSelect/AddSelectMetaPanel.js +9 -8
  30. package/es/components/AddSelect/AddSelectSidebar.js +24 -39
  31. package/es/components/AddSelect/AddSelectSort.js +4 -2
  32. package/es/components/AddSelect/add-select-utils.js +85 -59
  33. package/es/components/AddSelect/hooks/useParentSelect.js +16 -0
  34. package/es/components/AddSelect/hooks/usePath.js +66 -0
  35. package/es/components/Card/Card.js +1 -1
  36. package/es/components/CreateTearsheet/preview-components/MultiStepTearsheet.js +1 -5
  37. package/es/components/CreateTearsheet/preview-components/MultiStepWithIntro.js +1 -5
  38. package/es/components/Datagrid/Datagrid/Datagrid.js +17 -12
  39. package/es/components/Datagrid/Datagrid/DatagridRow.js +4 -2
  40. package/es/components/Datagrid/useExpandedRow.js +1 -0
  41. package/es/components/Datagrid/useOnRowClick.js +10 -3
  42. package/es/components/EditFullPage/EditFullPage.js +79 -0
  43. package/es/components/EditFullPage/index.js +7 -0
  44. package/es/components/EditTearsheet/EditTearsheet.js +205 -0
  45. package/es/components/EditTearsheet/EditTearsheetForm.js +103 -0
  46. package/es/components/EditTearsheet/index.js +8 -0
  47. package/es/components/EditTearsheet/preview-components/MultiFormEditTearsheet.js +230 -0
  48. package/es/components/EditTearsheetNarrow/EditTearsheetNarrow.js +79 -0
  49. package/es/components/EditTearsheetNarrow/index.js +7 -0
  50. package/es/components/PageHeader/PageHeaderUtils.js +5 -0
  51. package/es/components/TagSet/TagSet.js +15 -5
  52. package/es/components/WebTerminal/WebTerminal.js +5 -3
  53. package/es/components/index.js +4 -1
  54. package/es/global/js/package-settings.js +4 -1
  55. package/lib/components/AddSelect/AddSelect.js +53 -431
  56. package/lib/components/AddSelect/AddSelectBody.js +380 -0
  57. package/lib/components/AddSelect/AddSelectBreadcrumbs.js +11 -30
  58. package/lib/components/AddSelect/AddSelectColumn.js +93 -40
  59. package/lib/components/AddSelect/AddSelectFilter.js +2 -3
  60. package/lib/components/AddSelect/AddSelectList.js +12 -61
  61. package/lib/components/AddSelect/AddSelectMetaPanel.js +9 -8
  62. package/lib/components/AddSelect/AddSelectSidebar.js +22 -38
  63. package/lib/components/AddSelect/AddSelectSort.js +4 -2
  64. package/lib/components/AddSelect/add-select-utils.js +88 -64
  65. package/lib/components/AddSelect/hooks/useParentSelect.js +27 -0
  66. package/lib/components/AddSelect/hooks/usePath.js +75 -0
  67. package/lib/components/Card/Card.js +1 -1
  68. package/lib/components/CreateTearsheet/preview-components/MultiStepTearsheet.js +1 -5
  69. package/lib/components/CreateTearsheet/preview-components/MultiStepWithIntro.js +1 -5
  70. package/lib/components/Datagrid/Datagrid/Datagrid.js +17 -12
  71. package/lib/components/Datagrid/Datagrid/DatagridRow.js +3 -1
  72. package/lib/components/Datagrid/useExpandedRow.js +1 -0
  73. package/lib/components/Datagrid/useOnRowClick.js +10 -3
  74. package/lib/components/EditFullPage/EditFullPage.js +85 -0
  75. package/lib/components/EditFullPage/index.js +13 -0
  76. package/lib/components/EditTearsheet/EditTearsheet.js +229 -0
  77. package/lib/components/EditTearsheet/EditTearsheetForm.js +122 -0
  78. package/lib/components/EditTearsheet/index.js +21 -0
  79. package/lib/components/EditTearsheet/preview-components/MultiFormEditTearsheet.js +254 -0
  80. package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +85 -0
  81. package/lib/components/EditTearsheetNarrow/index.js +13 -0
  82. package/lib/components/PageHeader/PageHeaderUtils.js +5 -0
  83. package/lib/components/TagSet/TagSet.js +15 -5
  84. package/lib/components/WebTerminal/WebTerminal.js +5 -2
  85. package/lib/components/index.js +25 -1
  86. package/lib/global/js/package-settings.js +4 -1
  87. package/package.json +16 -16
  88. package/scss/components/Cascade/_cascade.scss +2 -1
  89. package/scss/components/CreateInfluencer/_create-influencer.scss +2 -2
  90. package/scss/components/CreateTearsheet/_create-tearsheet.scss +1 -1
  91. package/scss/components/Datagrid/_datagrid.scss +0 -1
  92. package/scss/components/Datagrid/_storybook-styles.scss +57 -0
  93. package/scss/components/Datagrid/styles/datagrid.scss +97 -12
  94. package/scss/components/Datagrid/styles/index.scss +1 -0
  95. package/scss/components/Datagrid/styles/useExpandedRow.scss +7 -0
  96. package/scss/components/EditFullPage/_edit-full-page.scss +34 -0
  97. package/scss/components/EditFullPage/_index.scss +8 -0
  98. package/scss/components/EditFullPage/_storybook-styles.scss +10 -0
  99. package/scss/components/EditTearsheet/_edit-tearsheet.scss +132 -0
  100. package/scss/components/EditTearsheet/_index.scss +8 -0
  101. package/scss/components/EditTearsheet/_storybook-styles.scss +55 -0
  102. package/scss/components/EditTearsheetNarrow/_edit-tearsheet-narrow.scss +34 -0
  103. package/scss/components/EditTearsheetNarrow/_index.scss +8 -0
  104. package/scss/components/EditTearsheetNarrow/_storybook-styles.scss +10 -0
  105. package/scss/components/InlineEdit/_inline-edit.scss +10 -21
  106. package/scss/components/NotificationsPanel/_notifications-panel.scss +1 -0
  107. package/scss/components/OptionsTile/_options-tile.scss +1 -0
  108. package/scss/components/PageHeader/_page-header.scss +11 -4
  109. package/scss/components/SidePanel/_side-panel.scss +1 -2
  110. package/scss/components/StatusIcon/_status-icon.scss +1 -1
  111. package/scss/components/TagSet/_tag-set.scss +4 -0
  112. package/scss/components/Tearsheet/_tearsheet.scss +2 -2
  113. package/scss/components/WebTerminal/_web-terminal.scss +2 -1
  114. package/scss/components/_index.scss +3 -0
@@ -921,7 +921,6 @@ em {
921
921
  .bx--snippet__overflow-indicator--left {
922
922
  background-image: linear-gradient(to left, rgba(var(--cds-field-01, #f4f4f4), 0), var(--cds-field-01, #f4f4f4));
923
923
  }
924
-
925
924
  .bx--snippet__overflow-indicator--right {
926
925
  background-image: linear-gradient(to right, rgba(var(--cds-field-01, #f4f4f4), 0), var(--cds-field-01, #f4f4f4));
927
926
  }
@@ -3029,6 +3028,9 @@ em {
3029
3028
  width: 48%;
3030
3029
  }
3031
3030
  }
3031
+ .bx--modal-container .bx--modal-container-body {
3032
+ display: contents;
3033
+ }
3032
3034
 
3033
3035
  .bx--modal-content {
3034
3036
  font-size: var(--cds-body-long-01-font-size, 0.875rem);
@@ -3195,7 +3197,6 @@ em {
3195
3197
  .bx--modal-scroll-content > *:last-child {
3196
3198
  padding-bottom: 0;
3197
3199
  }
3198
-
3199
3200
  .bx--modal-content--overflow-indicator {
3200
3201
  display: none;
3201
3202
  }
@@ -4282,7 +4283,6 @@ fieldset[disabled] .bx--form__helper-text {
4282
4283
  top: 1px;
4283
4284
  right: 0.5rem;
4284
4285
  }
4285
-
4286
4286
  .bx--inline-loading__checkmark {
4287
4287
  animation: none;
4288
4288
  stroke-dasharray: 0;
@@ -5775,94 +5775,76 @@ a.bx--tabs__nav-link:focus, a.bx--tabs__nav-link:active {
5775
5775
  flex-basis: 0;
5776
5776
  flex-grow: 1;
5777
5777
  }
5778
-
5779
5778
  .bx--col--auto,
5780
5779
  .bx--col-md--auto {
5781
5780
  width: auto;
5782
5781
  max-width: 100%;
5783
5782
  flex: 1 0 0%;
5784
5783
  }
5785
-
5786
5784
  .bx--col-md-0 {
5787
5785
  display: none;
5788
5786
  }
5789
-
5790
5787
  .bx--col-md-1 {
5791
5788
  display: block;
5792
5789
  max-width: 12.5%;
5793
5790
  flex: 0 0 12.5%;
5794
5791
  }
5795
-
5796
5792
  .bx--col-md-2 {
5797
5793
  display: block;
5798
5794
  max-width: 25%;
5799
5795
  flex: 0 0 25%;
5800
5796
  }
5801
-
5802
5797
  .bx--col-md-3 {
5803
5798
  display: block;
5804
5799
  max-width: 37.5%;
5805
5800
  flex: 0 0 37.5%;
5806
5801
  }
5807
-
5808
5802
  .bx--col-md-4 {
5809
5803
  display: block;
5810
5804
  max-width: 50%;
5811
5805
  flex: 0 0 50%;
5812
5806
  }
5813
-
5814
5807
  .bx--col-md-5 {
5815
5808
  display: block;
5816
5809
  max-width: 62.5%;
5817
5810
  flex: 0 0 62.5%;
5818
5811
  }
5819
-
5820
5812
  .bx--col-md-6 {
5821
5813
  display: block;
5822
5814
  max-width: 75%;
5823
5815
  flex: 0 0 75%;
5824
5816
  }
5825
-
5826
5817
  .bx--col-md-7 {
5827
5818
  display: block;
5828
5819
  max-width: 87.5%;
5829
5820
  flex: 0 0 87.5%;
5830
5821
  }
5831
-
5832
5822
  .bx--col-md-8 {
5833
5823
  display: block;
5834
5824
  max-width: 100%;
5835
5825
  flex: 0 0 100%;
5836
5826
  }
5837
-
5838
5827
  .bx--offset-md-0 {
5839
5828
  margin-left: 0;
5840
5829
  }
5841
-
5842
5830
  .bx--offset-md-1 {
5843
5831
  margin-left: 12.5%;
5844
5832
  }
5845
-
5846
5833
  .bx--offset-md-2 {
5847
5834
  margin-left: 25%;
5848
5835
  }
5849
-
5850
5836
  .bx--offset-md-3 {
5851
5837
  margin-left: 37.5%;
5852
5838
  }
5853
-
5854
5839
  .bx--offset-md-4 {
5855
5840
  margin-left: 50%;
5856
5841
  }
5857
-
5858
5842
  .bx--offset-md-5 {
5859
5843
  margin-left: 62.5%;
5860
5844
  }
5861
-
5862
5845
  .bx--offset-md-6 {
5863
5846
  margin-left: 75%;
5864
5847
  }
5865
-
5866
5848
  .bx--offset-md-7 {
5867
5849
  margin-left: 87.5%;
5868
5850
  }
@@ -6131,174 +6113,140 @@ a.bx--tabs__nav-link:focus, a.bx--tabs__nav-link:active {
6131
6113
  flex-basis: 0;
6132
6114
  flex-grow: 1;
6133
6115
  }
6134
-
6135
6116
  .bx--col--auto,
6136
6117
  .bx--col-lg--auto {
6137
6118
  width: auto;
6138
6119
  max-width: 100%;
6139
6120
  flex: 1 0 0%;
6140
6121
  }
6141
-
6142
6122
  .bx--col-lg-0 {
6143
6123
  display: none;
6144
6124
  }
6145
-
6146
6125
  .bx--col-lg-1 {
6147
6126
  display: block;
6148
6127
  max-width: 6.25%;
6149
6128
  flex: 0 0 6.25%;
6150
6129
  }
6151
-
6152
6130
  .bx--col-lg-2 {
6153
6131
  display: block;
6154
6132
  max-width: 12.5%;
6155
6133
  flex: 0 0 12.5%;
6156
6134
  }
6157
-
6158
6135
  .bx--col-lg-3 {
6159
6136
  display: block;
6160
6137
  max-width: 18.75%;
6161
6138
  flex: 0 0 18.75%;
6162
6139
  }
6163
-
6164
6140
  .bx--col-lg-4 {
6165
6141
  display: block;
6166
6142
  max-width: 25%;
6167
6143
  flex: 0 0 25%;
6168
6144
  }
6169
-
6170
6145
  .bx--col-lg-5 {
6171
6146
  display: block;
6172
6147
  max-width: 31.25%;
6173
6148
  flex: 0 0 31.25%;
6174
6149
  }
6175
-
6176
6150
  .bx--col-lg-6 {
6177
6151
  display: block;
6178
6152
  max-width: 37.5%;
6179
6153
  flex: 0 0 37.5%;
6180
6154
  }
6181
-
6182
6155
  .bx--col-lg-7 {
6183
6156
  display: block;
6184
6157
  max-width: 43.75%;
6185
6158
  flex: 0 0 43.75%;
6186
6159
  }
6187
-
6188
6160
  .bx--col-lg-8 {
6189
6161
  display: block;
6190
6162
  max-width: 50%;
6191
6163
  flex: 0 0 50%;
6192
6164
  }
6193
-
6194
6165
  .bx--col-lg-9 {
6195
6166
  display: block;
6196
6167
  max-width: 56.25%;
6197
6168
  flex: 0 0 56.25%;
6198
6169
  }
6199
-
6200
6170
  .bx--col-lg-10 {
6201
6171
  display: block;
6202
6172
  max-width: 62.5%;
6203
6173
  flex: 0 0 62.5%;
6204
6174
  }
6205
-
6206
6175
  .bx--col-lg-11 {
6207
6176
  display: block;
6208
6177
  max-width: 68.75%;
6209
6178
  flex: 0 0 68.75%;
6210
6179
  }
6211
-
6212
6180
  .bx--col-lg-12 {
6213
6181
  display: block;
6214
6182
  max-width: 75%;
6215
6183
  flex: 0 0 75%;
6216
6184
  }
6217
-
6218
6185
  .bx--col-lg-13 {
6219
6186
  display: block;
6220
6187
  max-width: 81.25%;
6221
6188
  flex: 0 0 81.25%;
6222
6189
  }
6223
-
6224
6190
  .bx--col-lg-14 {
6225
6191
  display: block;
6226
6192
  max-width: 87.5%;
6227
6193
  flex: 0 0 87.5%;
6228
6194
  }
6229
-
6230
6195
  .bx--col-lg-15 {
6231
6196
  display: block;
6232
6197
  max-width: 93.75%;
6233
6198
  flex: 0 0 93.75%;
6234
6199
  }
6235
-
6236
6200
  .bx--col-lg-16 {
6237
6201
  display: block;
6238
6202
  max-width: 100%;
6239
6203
  flex: 0 0 100%;
6240
6204
  }
6241
-
6242
6205
  .bx--offset-lg-0 {
6243
6206
  margin-left: 0;
6244
6207
  }
6245
-
6246
6208
  .bx--offset-lg-1 {
6247
6209
  margin-left: 6.25%;
6248
6210
  }
6249
-
6250
6211
  .bx--offset-lg-2 {
6251
6212
  margin-left: 12.5%;
6252
6213
  }
6253
-
6254
6214
  .bx--offset-lg-3 {
6255
6215
  margin-left: 18.75%;
6256
6216
  }
6257
-
6258
6217
  .bx--offset-lg-4 {
6259
6218
  margin-left: 25%;
6260
6219
  }
6261
-
6262
6220
  .bx--offset-lg-5 {
6263
6221
  margin-left: 31.25%;
6264
6222
  }
6265
-
6266
6223
  .bx--offset-lg-6 {
6267
6224
  margin-left: 37.5%;
6268
6225
  }
6269
-
6270
6226
  .bx--offset-lg-7 {
6271
6227
  margin-left: 43.75%;
6272
6228
  }
6273
-
6274
6229
  .bx--offset-lg-8 {
6275
6230
  margin-left: 50%;
6276
6231
  }
6277
-
6278
6232
  .bx--offset-lg-9 {
6279
6233
  margin-left: 56.25%;
6280
6234
  }
6281
-
6282
6235
  .bx--offset-lg-10 {
6283
6236
  margin-left: 62.5%;
6284
6237
  }
6285
-
6286
6238
  .bx--offset-lg-11 {
6287
6239
  margin-left: 68.75%;
6288
6240
  }
6289
-
6290
6241
  .bx--offset-lg-12 {
6291
6242
  margin-left: 75%;
6292
6243
  }
6293
-
6294
6244
  .bx--offset-lg-13 {
6295
6245
  margin-left: 81.25%;
6296
6246
  }
6297
-
6298
6247
  .bx--offset-lg-14 {
6299
6248
  margin-left: 87.5%;
6300
6249
  }
6301
-
6302
6250
  .bx--offset-lg-15 {
6303
6251
  margin-left: 93.75%;
6304
6252
  }
@@ -6567,174 +6515,140 @@ a.bx--tabs__nav-link:focus, a.bx--tabs__nav-link:active {
6567
6515
  flex-basis: 0;
6568
6516
  flex-grow: 1;
6569
6517
  }
6570
-
6571
6518
  .bx--col--auto,
6572
6519
  .bx--col-xlg--auto {
6573
6520
  width: auto;
6574
6521
  max-width: 100%;
6575
6522
  flex: 1 0 0%;
6576
6523
  }
6577
-
6578
6524
  .bx--col-xlg-0 {
6579
6525
  display: none;
6580
6526
  }
6581
-
6582
6527
  .bx--col-xlg-1 {
6583
6528
  display: block;
6584
6529
  max-width: 6.25%;
6585
6530
  flex: 0 0 6.25%;
6586
6531
  }
6587
-
6588
6532
  .bx--col-xlg-2 {
6589
6533
  display: block;
6590
6534
  max-width: 12.5%;
6591
6535
  flex: 0 0 12.5%;
6592
6536
  }
6593
-
6594
6537
  .bx--col-xlg-3 {
6595
6538
  display: block;
6596
6539
  max-width: 18.75%;
6597
6540
  flex: 0 0 18.75%;
6598
6541
  }
6599
-
6600
6542
  .bx--col-xlg-4 {
6601
6543
  display: block;
6602
6544
  max-width: 25%;
6603
6545
  flex: 0 0 25%;
6604
6546
  }
6605
-
6606
6547
  .bx--col-xlg-5 {
6607
6548
  display: block;
6608
6549
  max-width: 31.25%;
6609
6550
  flex: 0 0 31.25%;
6610
6551
  }
6611
-
6612
6552
  .bx--col-xlg-6 {
6613
6553
  display: block;
6614
6554
  max-width: 37.5%;
6615
6555
  flex: 0 0 37.5%;
6616
6556
  }
6617
-
6618
6557
  .bx--col-xlg-7 {
6619
6558
  display: block;
6620
6559
  max-width: 43.75%;
6621
6560
  flex: 0 0 43.75%;
6622
6561
  }
6623
-
6624
6562
  .bx--col-xlg-8 {
6625
6563
  display: block;
6626
6564
  max-width: 50%;
6627
6565
  flex: 0 0 50%;
6628
6566
  }
6629
-
6630
6567
  .bx--col-xlg-9 {
6631
6568
  display: block;
6632
6569
  max-width: 56.25%;
6633
6570
  flex: 0 0 56.25%;
6634
6571
  }
6635
-
6636
6572
  .bx--col-xlg-10 {
6637
6573
  display: block;
6638
6574
  max-width: 62.5%;
6639
6575
  flex: 0 0 62.5%;
6640
6576
  }
6641
-
6642
6577
  .bx--col-xlg-11 {
6643
6578
  display: block;
6644
6579
  max-width: 68.75%;
6645
6580
  flex: 0 0 68.75%;
6646
6581
  }
6647
-
6648
6582
  .bx--col-xlg-12 {
6649
6583
  display: block;
6650
6584
  max-width: 75%;
6651
6585
  flex: 0 0 75%;
6652
6586
  }
6653
-
6654
6587
  .bx--col-xlg-13 {
6655
6588
  display: block;
6656
6589
  max-width: 81.25%;
6657
6590
  flex: 0 0 81.25%;
6658
6591
  }
6659
-
6660
6592
  .bx--col-xlg-14 {
6661
6593
  display: block;
6662
6594
  max-width: 87.5%;
6663
6595
  flex: 0 0 87.5%;
6664
6596
  }
6665
-
6666
6597
  .bx--col-xlg-15 {
6667
6598
  display: block;
6668
6599
  max-width: 93.75%;
6669
6600
  flex: 0 0 93.75%;
6670
6601
  }
6671
-
6672
6602
  .bx--col-xlg-16 {
6673
6603
  display: block;
6674
6604
  max-width: 100%;
6675
6605
  flex: 0 0 100%;
6676
6606
  }
6677
-
6678
6607
  .bx--offset-xlg-0 {
6679
6608
  margin-left: 0;
6680
6609
  }
6681
-
6682
6610
  .bx--offset-xlg-1 {
6683
6611
  margin-left: 6.25%;
6684
6612
  }
6685
-
6686
6613
  .bx--offset-xlg-2 {
6687
6614
  margin-left: 12.5%;
6688
6615
  }
6689
-
6690
6616
  .bx--offset-xlg-3 {
6691
6617
  margin-left: 18.75%;
6692
6618
  }
6693
-
6694
6619
  .bx--offset-xlg-4 {
6695
6620
  margin-left: 25%;
6696
6621
  }
6697
-
6698
6622
  .bx--offset-xlg-5 {
6699
6623
  margin-left: 31.25%;
6700
6624
  }
6701
-
6702
6625
  .bx--offset-xlg-6 {
6703
6626
  margin-left: 37.5%;
6704
6627
  }
6705
-
6706
6628
  .bx--offset-xlg-7 {
6707
6629
  margin-left: 43.75%;
6708
6630
  }
6709
-
6710
6631
  .bx--offset-xlg-8 {
6711
6632
  margin-left: 50%;
6712
6633
  }
6713
-
6714
6634
  .bx--offset-xlg-9 {
6715
6635
  margin-left: 56.25%;
6716
6636
  }
6717
-
6718
6637
  .bx--offset-xlg-10 {
6719
6638
  margin-left: 62.5%;
6720
6639
  }
6721
-
6722
6640
  .bx--offset-xlg-11 {
6723
6641
  margin-left: 68.75%;
6724
6642
  }
6725
-
6726
6643
  .bx--offset-xlg-12 {
6727
6644
  margin-left: 75%;
6728
6645
  }
6729
-
6730
6646
  .bx--offset-xlg-13 {
6731
6647
  margin-left: 81.25%;
6732
6648
  }
6733
-
6734
6649
  .bx--offset-xlg-14 {
6735
6650
  margin-left: 87.5%;
6736
6651
  }
6737
-
6738
6652
  .bx--offset-xlg-15 {
6739
6653
  margin-left: 93.75%;
6740
6654
  }
@@ -7003,174 +6917,140 @@ a.bx--tabs__nav-link:focus, a.bx--tabs__nav-link:active {
7003
6917
  flex-basis: 0;
7004
6918
  flex-grow: 1;
7005
6919
  }
7006
-
7007
6920
  .bx--col--auto,
7008
6921
  .bx--col-max--auto {
7009
6922
  width: auto;
7010
6923
  max-width: 100%;
7011
6924
  flex: 1 0 0%;
7012
6925
  }
7013
-
7014
6926
  .bx--col-max-0 {
7015
6927
  display: none;
7016
6928
  }
7017
-
7018
6929
  .bx--col-max-1 {
7019
6930
  display: block;
7020
6931
  max-width: 6.25%;
7021
6932
  flex: 0 0 6.25%;
7022
6933
  }
7023
-
7024
6934
  .bx--col-max-2 {
7025
6935
  display: block;
7026
6936
  max-width: 12.5%;
7027
6937
  flex: 0 0 12.5%;
7028
6938
  }
7029
-
7030
6939
  .bx--col-max-3 {
7031
6940
  display: block;
7032
6941
  max-width: 18.75%;
7033
6942
  flex: 0 0 18.75%;
7034
6943
  }
7035
-
7036
6944
  .bx--col-max-4 {
7037
6945
  display: block;
7038
6946
  max-width: 25%;
7039
6947
  flex: 0 0 25%;
7040
6948
  }
7041
-
7042
6949
  .bx--col-max-5 {
7043
6950
  display: block;
7044
6951
  max-width: 31.25%;
7045
6952
  flex: 0 0 31.25%;
7046
6953
  }
7047
-
7048
6954
  .bx--col-max-6 {
7049
6955
  display: block;
7050
6956
  max-width: 37.5%;
7051
6957
  flex: 0 0 37.5%;
7052
6958
  }
7053
-
7054
6959
  .bx--col-max-7 {
7055
6960
  display: block;
7056
6961
  max-width: 43.75%;
7057
6962
  flex: 0 0 43.75%;
7058
6963
  }
7059
-
7060
6964
  .bx--col-max-8 {
7061
6965
  display: block;
7062
6966
  max-width: 50%;
7063
6967
  flex: 0 0 50%;
7064
6968
  }
7065
-
7066
6969
  .bx--col-max-9 {
7067
6970
  display: block;
7068
6971
  max-width: 56.25%;
7069
6972
  flex: 0 0 56.25%;
7070
6973
  }
7071
-
7072
6974
  .bx--col-max-10 {
7073
6975
  display: block;
7074
6976
  max-width: 62.5%;
7075
6977
  flex: 0 0 62.5%;
7076
6978
  }
7077
-
7078
6979
  .bx--col-max-11 {
7079
6980
  display: block;
7080
6981
  max-width: 68.75%;
7081
6982
  flex: 0 0 68.75%;
7082
6983
  }
7083
-
7084
6984
  .bx--col-max-12 {
7085
6985
  display: block;
7086
6986
  max-width: 75%;
7087
6987
  flex: 0 0 75%;
7088
6988
  }
7089
-
7090
6989
  .bx--col-max-13 {
7091
6990
  display: block;
7092
6991
  max-width: 81.25%;
7093
6992
  flex: 0 0 81.25%;
7094
6993
  }
7095
-
7096
6994
  .bx--col-max-14 {
7097
6995
  display: block;
7098
6996
  max-width: 87.5%;
7099
6997
  flex: 0 0 87.5%;
7100
6998
  }
7101
-
7102
6999
  .bx--col-max-15 {
7103
7000
  display: block;
7104
7001
  max-width: 93.75%;
7105
7002
  flex: 0 0 93.75%;
7106
7003
  }
7107
-
7108
7004
  .bx--col-max-16 {
7109
7005
  display: block;
7110
7006
  max-width: 100%;
7111
7007
  flex: 0 0 100%;
7112
7008
  }
7113
-
7114
7009
  .bx--offset-max-0 {
7115
7010
  margin-left: 0;
7116
7011
  }
7117
-
7118
7012
  .bx--offset-max-1 {
7119
7013
  margin-left: 6.25%;
7120
7014
  }
7121
-
7122
7015
  .bx--offset-max-2 {
7123
7016
  margin-left: 12.5%;
7124
7017
  }
7125
-
7126
7018
  .bx--offset-max-3 {
7127
7019
  margin-left: 18.75%;
7128
7020
  }
7129
-
7130
7021
  .bx--offset-max-4 {
7131
7022
  margin-left: 25%;
7132
7023
  }
7133
-
7134
7024
  .bx--offset-max-5 {
7135
7025
  margin-left: 31.25%;
7136
7026
  }
7137
-
7138
7027
  .bx--offset-max-6 {
7139
7028
  margin-left: 37.5%;
7140
7029
  }
7141
-
7142
7030
  .bx--offset-max-7 {
7143
7031
  margin-left: 43.75%;
7144
7032
  }
7145
-
7146
7033
  .bx--offset-max-8 {
7147
7034
  margin-left: 50%;
7148
7035
  }
7149
-
7150
7036
  .bx--offset-max-9 {
7151
7037
  margin-left: 56.25%;
7152
7038
  }
7153
-
7154
7039
  .bx--offset-max-10 {
7155
7040
  margin-left: 62.5%;
7156
7041
  }
7157
-
7158
7042
  .bx--offset-max-11 {
7159
7043
  margin-left: 68.75%;
7160
7044
  }
7161
-
7162
7045
  .bx--offset-max-12 {
7163
7046
  margin-left: 75%;
7164
7047
  }
7165
-
7166
7048
  .bx--offset-max-13 {
7167
7049
  margin-left: 81.25%;
7168
7050
  }
7169
-
7170
7051
  .bx--offset-max-14 {
7171
7052
  margin-left: 87.5%;
7172
7053
  }
7173
-
7174
7054
  .bx--offset-max-15 {
7175
7055
  margin-left: 93.75%;
7176
7056
  }
@@ -11636,6 +11516,7 @@ a.bx--overflow-menu-options__btn::before {
11636
11516
  .c4p--side-panel__container .c4p--side-panel__action-toolbar {
11637
11517
  position: sticky;
11638
11518
  z-index: 4;
11519
+ /* stylelint-disable-next-line carbon/layout-token-use */
11639
11520
  top: var(--c4p--side-panel--title-height);
11640
11521
  display: flex;
11641
11522
  align-items: center;
@@ -12773,7 +12654,7 @@ a.bx--side-nav__link--current::before {
12773
12654
  }
12774
12655
 
12775
12656
  .c4p--tearsheet-create .c4p--tearsheet-create__step__step--visible-step {
12776
- animation: 400ms step-content-entrance;
12657
+ animation: step-content-entrance 400ms;
12777
12658
  animation-fill-mode: forwards;
12778
12659
  animation-timing-function: cubic-bezier(0.2, 0, 0.38, 0.9);
12779
12660
  opacity: 0;
@@ -16325,6 +16206,9 @@ button.c4p--add-select__global-filter-toggle--open {
16325
16206
  display: inline-flex;
16326
16207
  white-space: nowrap;
16327
16208
  }
16209
+ .c4p--tag-set .c4p--tag-set__tag-container--multiline {
16210
+ flex-wrap: wrap;
16211
+ }
16328
16212
  .c4p--tag-set .c4p--tag-set__tag-container--hidden {
16329
16213
  position: absolute;
16330
16214
  top: -100vh;
@@ -16447,19 +16331,25 @@ button.c4p--add-select__global-filter-toggle--open {
16447
16331
 
16448
16332
  @keyframes background-appear {
16449
16333
  from {
16334
+ /* stylelint-disable-next-line carbon/theme-token-use */
16450
16335
  background-color: var(--from-color);
16451
16336
  }
16452
16337
  to {
16338
+ /* stylelint-disable-next-line carbon/theme-token-use */
16453
16339
  background-color: var(--to-color);
16454
16340
  }
16455
16341
  }
16456
16342
  @keyframes background-and-shadow-appear {
16457
16343
  from {
16344
+ /* stylelint-disable-next-line carbon/theme-token-use */
16458
16345
  background-color: var(--from-color);
16346
+ /* stylelint-disable-next-line carbon/theme-token-use */
16459
16347
  box-shadow: 0 1px 0 var(--from-color);
16460
16348
  }
16461
16349
  to {
16350
+ /* stylelint-disable-next-line carbon/theme-token-use */
16462
16351
  background-color: var(--to-color);
16352
+ /* stylelint-disable-next-line carbon/theme-token-use */
16463
16353
  box-shadow: 0 1px 0 var(--to-color-shadow);
16464
16354
  }
16465
16355
  }
@@ -16469,9 +16359,9 @@ button.c4p--add-select__global-filter-toggle--open {
16469
16359
  /* z-index used to raise above any position relative content as per Carbon header */
16470
16360
  /* dropped 1 below Carbon header so as not to overlay the side panel */
16471
16361
  z-index: 7999;
16362
+ /* stylelint-disable-next-line carbon/layout-token-use */
16472
16363
  top: var(--c4p--page-header--header-top);
16473
- display: inline-block;
16474
- /* cause top/bottom margin to reserve space */
16364
+ display: inline-block; /* cause top/bottom margin to reserve space */
16475
16365
  width: 100%;
16476
16366
  background-color: var(--cds-ui-background, #ffffff);
16477
16367
  color: var(--cds-text-01, #161616);
@@ -16579,8 +16469,7 @@ button.c4p--add-select__global-filter-toggle--open {
16579
16469
  }
16580
16470
  @media (min-width: 66rem) {
16581
16471
  .c4p--page-header .c4p--page-header__action-bar-column-content {
16582
- flex-wrap: nowrap;
16583
- /* assume enough space */
16472
+ flex-wrap: nowrap; /* assume enough space */
16584
16473
  }
16585
16474
  }
16586
16475
  .c4p--page-header .c4p--page-header__breadcrumb-row .c4p--page-header__page-actions {
@@ -16599,15 +16488,13 @@ button.c4p--add-select__global-filter-toggle--open {
16599
16488
  visibility: visible;
16600
16489
  }
16601
16490
  .c4p--page-header .c4p--page-header__breadcrumb-column {
16602
- overflow: hidden;
16603
- /* required for ellipsis in title, title not visible in breadcrumb with back arrow */
16491
+ overflow: hidden; /* required for ellipsis in title, title not visible in breadcrumb with back arrow */
16604
16492
  max-width: 100%;
16605
16493
  flex: 0 0 100%;
16606
16494
  }
16607
16495
  @media (min-width: 42rem) {
16608
16496
  .c4p--page-header .c4p--page-header__breadcrumb-column {
16609
- overflow: hidden;
16610
- /* required for ellipsis in title, title not visible in breadcrumb with back arrow */
16497
+ overflow: hidden; /* required for ellipsis in title, title not visible in breadcrumb with back arrow */
16611
16498
  }
16612
16499
  }
16613
16500
  .c4p--page-header .c4p--page-header__breadcrumb-row--has-action-bar.c4p--page-header__breadcrumb-row .c4p--page-header__breadcrumb-column {
@@ -16680,7 +16567,6 @@ button.c4p--add-select__global-filter-toggle--open {
16680
16567
  .c4p--page-header .c4p--page-header__breadcrumb-title:not(.c4p--page-header__breadcrumb-title--pre-collapsed) {
16681
16568
  opacity: var(--c4p--page-header--breadcrumb-title-opacity);
16682
16569
  transform: translateY(var(--c4p--page-header--breadcrumb-title-top));
16683
- /* token linter does not support this form */
16684
16570
  visibility: var(--c4p--page-header--breadcrumb-title-visibility);
16685
16571
  }
16686
16572
  .c4p--page-header .c4p--page-header__breadcrumb-container--hidden .c4p--page-header__breadcrumb-title.c4p--page-header__breadcrumb-title {
@@ -16691,8 +16577,7 @@ button.c4p--add-select__global-filter-toggle--open {
16691
16577
  max-width: var(--c4p--page-header--max-action-bar-width-px);
16692
16578
  flex: 1 1 var(--c4p--page-header--max-action-bar-width-px);
16693
16579
  padding-top: var(--cds-spacing-04, 0.75rem);
16694
- margin-top: calc(-1 * var(--cds-spacing-04, 0.75rem));
16695
- /* align with breadcrumb */
16580
+ margin-top: calc(-1 * var(--cds-spacing-04, 0.75rem)); /* align with breadcrumb */
16696
16581
  vertical-align: top;
16697
16582
  white-space: nowrap;
16698
16583
  }
@@ -16703,8 +16588,7 @@ button.c4p--add-select__global-filter-toggle--open {
16703
16588
  }
16704
16589
  @media (min-width: 42rem) {
16705
16590
  .c4p--page-header .c4p--page-header__title-row {
16706
- flex-wrap: nowrap;
16707
- /* assume enough space */
16591
+ flex-wrap: nowrap; /* assume enough space */
16708
16592
  }
16709
16593
  }
16710
16594
  .c4p--page-header .c4p--page-header__title-row.c4p--page-header__title-row--under-action-bar {
@@ -16753,6 +16637,7 @@ button.c4p--add-select__global-filter-toggle--open {
16753
16637
  font-weight: var(--cds-productive-heading-04-font-weight, 400);
16754
16638
  line-height: var(--cds-productive-heading-04-line-height, 1.28572);
16755
16639
  letter-spacing: var(--cds-productive-heading-04-letter-spacing, 0);
16640
+ min-height: var(--cds-spacing-08, 2.5rem);
16756
16641
  overflow-x: hidden;
16757
16642
  text-overflow: ellipsis;
16758
16643
  white-space: nowrap;
@@ -16886,8 +16771,7 @@ button.c4p--add-select__global-filter-toggle--open {
16886
16771
  padding-bottom: var(--cds-spacing-05, 1rem);
16887
16772
  }
16888
16773
  .c4p--page-header .c4p--page-header__navigation-row .bx--tab-content {
16889
- display: none;
16890
- /* need to figure out how to handle the tab content */
16774
+ display: none; /* need to figure out how to handle the tab content */
16891
16775
  }
16892
16776
  .c4p--page-header .c4p--page-header__navigation-tabs {
16893
16777
  margin-left: calc(-1 * var(--cds-spacing-05, 1rem));
@@ -18152,7 +18036,8 @@ button.c4p--add-select__global-filter-toggle--open {
18152
18036
  position: fixed;
18153
18037
  top: var(--cds-spacing-09, 3rem);
18154
18038
  right: 0;
18155
- width: 40rem;
18039
+ width: 100%;
18040
+ max-width: 40rem;
18156
18041
  height: calc(100vh - var(--cds-spacing-09, 3rem));
18157
18042
  border-left: 1px solid #262626;
18158
18043
  color: var(--cds-text-01, #161616);
@@ -18986,6 +18871,7 @@ button.c4p--add-select__global-filter-toggle--open {
18986
18871
  }
18987
18872
 
18988
18873
  .c4p--options-tile__summary--warn svg path[fill=none] {
18874
+ /* stylelint-disable-next-line carbon/theme-token-use */
18989
18875
  fill: #000000;
18990
18876
  }
18991
18877
 
@@ -19106,6 +18992,7 @@ button.c4p--add-select__global-filter-toggle--open {
19106
18992
  --c4p--inline-edit--icon-size: var(--cds-spacing-05, 1rem);
19107
18993
  }
19108
18994
  .c4p--inline-edit.c4p--inline-edit--invalid {
18995
+ /* stylelint-disable-next-line carbon/theme-token-use */
19109
18996
  outline: var(--cds-spacing-01, 0.125rem) solid var(--cds-support-01, #da1e28);
19110
18997
  outline-offset: calc(-1 * var(--cds-spacing-01, 0.125rem));
19111
18998
  }
@@ -19115,6 +19002,7 @@ button.c4p--add-select__global-filter-toggle--open {
19115
19002
  }
19116
19003
  }
19117
19004
  .c4p--inline-edit.c4p--inline-edit--editing {
19005
+ /* stylelint-disable-next-line carbon/theme-token-use */
19118
19006
  outline: var(--cds-spacing-01, 0.125rem) solid var(--cds-focus, #0f62fe);
19119
19007
  outline-offset: calc(-1 * var(--cds-spacing-01, 0.125rem));
19120
19008
  background-color: var(--cds-ui-01, #f4f4f4);
@@ -19130,6 +19018,7 @@ button.c4p--add-select__global-filter-toggle--open {
19130
19018
  width: calc(100% - var(--c4p--inline-edit--toolbar-width) - var(--cds-spacing-05, 1rem));
19131
19019
  max-width: calc(100% - var(--c4p--inline-edit--toolbar-width) - var(--cds-spacing-05, 1rem));
19132
19020
  min-height: var(--c4p--inline-edit--size);
19021
+ /* stylelint-disable-next-line carbon/layout-token-use */
19133
19022
  margin-right: var(--c4p--inline-edit--toolbar-width);
19134
19023
  margin-left: var(--cds-spacing-05, 1rem);
19135
19024
  line-height: var(--c4p--inline-edit--size);
@@ -19215,12 +19104,12 @@ button.c4p--add-select__global-filter-toggle--open {
19215
19104
  .c4p--inline-edit.c4p--inline-edit.c4p--inline-edit .c4p--inline-edit__save, .c4p--inline-edit.c4p--inline-edit.c4p--inline-edit .c4p--inline-edit__cancel {
19216
19105
  display: inline-flex;
19217
19106
  width: var(--c4p--inline-edit--size);
19107
+ max-width: var(--c4p--inline-edit--size);
19218
19108
  height: 100%;
19219
19109
  min-height: initial;
19220
19110
  max-height: var(--c4p--inline-edit--size);
19221
- padding: calc(
19222
- 0.5 * (var(--c4p--inline-edit--size) - var(--c4p--inline-edit--icon-size)) - var(--cds-spacing-01, 0.125rem)
19223
- );
19111
+ align-items: center;
19112
+ justify-content: center;
19224
19113
  border: 2px solid transparent;
19225
19114
  }
19226
19115
  .c4p--inline-edit.c4p--inline-edit.c4p--inline-edit .c4p--inline-edit__save:hover, .c4p--inline-edit.c4p--inline-edit.c4p--inline-edit .c4p--inline-edit__cancel:hover {
@@ -19241,38 +19130,27 @@ button.c4p--add-select__global-filter-toggle--open {
19241
19130
  border-color: transparent;
19242
19131
  }
19243
19132
  .c4p--inline-edit.c4p--inline-edit--editing .c4p--inline-edit__toolbar--animation .c4p--inline-edit__save {
19244
- margin-right: 0;
19133
+ overflow: visible;
19134
+ width: var(--c4p--inline-edit--edit-size);
19245
19135
  transition: all 240ms cubic-bezier(0.2, 0, 0.38, 0.9);
19246
19136
  transition-property: margin, padding;
19247
19137
  }
19248
- .c4p--inline-edit.c4p--inline-edit--editing .c4p--inline-edit__toolbar--animation .c4p--inline-edit__save svg {
19249
- transition: width 240ms cubic-bezier(0.2, 0, 0.38, 0.9);
19250
- }
19251
- @media (prefers-reduced-motion: reduce) {
19252
- .c4p--inline-edit.c4p--inline-edit--editing .c4p--inline-edit__toolbar--animation .c4p--inline-edit__save svg {
19253
- transition: none;
19254
- }
19255
- }
19256
19138
  .c4p--inline-edit.c4p--inline-edit--editing .c4p--inline-edit__toolbar--animation:not(.c4p--inline-edit__toolbar--saveable) .c4p--inline-edit__save {
19257
- padding-right: 0;
19258
- padding-left: 0;
19259
- border-right: 0;
19260
- border-left: 0;
19261
- margin-right: calc(-1 * var(--c4p--inline-edit--size));
19262
- }
19263
- .c4p--inline-edit.c4p--inline-edit--editing .c4p--inline-edit__toolbar--animation:not(.c4p--inline-edit__toolbar--saveable) .c4p--inline-edit__save svg {
19264
19139
  overflow: hidden;
19265
19140
  width: 0;
19141
+ padding: 0;
19142
+ border-right: 0;
19143
+ border-left: 0;
19266
19144
  }
19267
19145
  .c4p--inline-edit.c4p--inline-edit.c4p--inline-edit .c4p--inline-edit__edit {
19268
19146
  display: inline-flex;
19269
19147
  width: var(--c4p--inline-edit--size);
19148
+ max-width: var(--c4p--inline-edit--size);
19270
19149
  height: 100%;
19271
19150
  min-height: initial;
19272
19151
  max-height: var(--c4p--inline-edit--size);
19273
- padding: calc(
19274
- 0.5 * (var(--c4p--inline-edit--size) - var(--c4p--inline-edit--icon-size)) - var(--cds-spacing-01, 0.125rem)
19275
- );
19152
+ align-items: center;
19153
+ justify-content: center;
19276
19154
  border: 2px solid transparent;
19277
19155
  }
19278
19156
  .c4p--inline-edit.c4p--inline-edit.c4p--inline-edit .c4p--inline-edit__edit:hover, .c4p--inline-edit.c4p--inline-edit.c4p--inline-edit .c4p--inline-edit__edit:active, .c4p--inline-edit.c4p--inline-edit.c4p--inline-edit .c4p--inline-edit__edit:focus {
@@ -19296,12 +19174,12 @@ button.c4p--add-select__global-filter-toggle--open {
19296
19174
  .c4p--inline-edit .c4p--inline-edit__validation-icon {
19297
19175
  display: inline-flex;
19298
19176
  width: var(--c4p--inline-edit--size);
19177
+ max-width: var(--c4p--inline-edit--size);
19299
19178
  height: 100%;
19300
19179
  min-height: initial;
19301
19180
  max-height: var(--c4p--inline-edit--size);
19302
- padding: calc(
19303
- 0.5 * (var(--c4p--inline-edit--size) - var(--c4p--inline-edit--icon-size)) - var(--cds-spacing-01, 0.125rem)
19304
- );
19181
+ align-items: center;
19182
+ justify-content: center;
19305
19183
  border: 2px solid transparent;
19306
19184
  }
19307
19185
  .c4p--inline-edit.c4p--inline-edit--invalid .c4p--inline-edit__validation-icon {
@@ -19627,24 +19505,17 @@ button.c4p--add-select__global-filter-toggle--open {
19627
19505
 
19628
19506
  .c4p--datagrid__grid-container {
19629
19507
  display: block;
19630
- overflow: auto;
19631
19508
  width: 100%;
19632
19509
  padding-top: 0;
19633
19510
  }
19634
19511
  .c4p--datagrid__grid-container .bx--data-table-content {
19635
19512
  width: 100%;
19636
19513
  height: 100%;
19637
- /* stylelint-disable-next-line declaration-property-value-disallowed-list */
19638
- overflow-x: unset;
19514
+ overflow-x: auto;
19639
19515
  }
19640
19516
  .c4p--datagrid__grid-container .c4p--datagrid__table-simple {
19641
- display: flex;
19642
- overflow: auto;
19517
+ overflow: hidden;
19643
19518
  max-height: 100%;
19644
- flex-direction: column;
19645
- }
19646
- .c4p--datagrid__grid-container .c4p--datagrid__with-pagination tr:last-of-type > td {
19647
- border-bottom: none;
19648
19519
  }
19649
19520
  .c4p--datagrid__grid-container .c4p--datagrid__head {
19650
19521
  display: flex;
@@ -19726,6 +19597,10 @@ button.c4p--add-select__global-filter-toggle--open {
19726
19597
  flex: 1 1 auto;
19727
19598
  }
19728
19599
 
19600
+ .c4p--datagrid__with-pagination table tr:last-of-type > td {
19601
+ border-bottom: none;
19602
+ }
19603
+
19729
19604
  .c4p--datagrid__resizer {
19730
19605
  position: absolute;
19731
19606
  z-index: 1;
@@ -19818,22 +19693,101 @@ button.c4p--add-select__global-filter-toggle--open {
19818
19693
  .c4p--datagrid__datagridLeftPanel {
19819
19694
  display: flex;
19820
19695
  width: 388px;
19821
- height: 100%;
19822
19696
  background-color: var(--cds-ui-01, #f4f4f4);
19823
19697
  }
19824
19698
 
19699
+ .c4p--datagrid__leftPanel-position {
19700
+ display: inherit;
19701
+ }
19702
+
19825
19703
  .c4p--datagrid__datagridWithPanel {
19826
19704
  position: relative;
19827
19705
  display: flex;
19828
- overflow: auto;
19829
19706
  width: 100%;
19707
+ height: 100%;
19708
+ flex-direction: column;
19709
+ }
19710
+ .c4p--datagrid__datagridWithPanel .c4p--datagrid__grid-container {
19711
+ display: flex;
19712
+ overflow: hidden;
19830
19713
  flex-direction: column;
19831
19714
  }
19715
+ .c4p--datagrid__datagridWithPanel .c4p--datagrid__table-toolbar {
19716
+ width: 100%;
19717
+ }
19718
+ .c4p--datagrid__datagridWithPanel .c4p--datagrid__datagridLeftPanel {
19719
+ flex: 0 0 auto;
19720
+ }
19721
+ .c4p--datagrid__datagridWithPanel .bx--data-table-content {
19722
+ flex: 1 1 0%;
19723
+ }
19724
+ .c4p--datagrid__datagridWithPanel .c4p--datagrid__table-container {
19725
+ overflow: hidden;
19726
+ }
19727
+
19728
+ .c4p--datagrid__table-container {
19729
+ position: relative;
19730
+ display: flex;
19731
+ overflow: auto;
19732
+ width: 100%;
19733
+ max-height: 100%;
19734
+ }
19832
19735
 
19833
19736
  .c4p--datagrid__carbon-row-expanded.c4p--datagrid__carbon-row-expanded-hover-active ~ .c4p--datagrid__carbon-nested-row {
19834
19737
  border-left: 1px solid var(--cds-interactive-01, #0f62fe);
19835
19738
  }
19836
19739
 
19740
+ .c4p--datagrid .bx--data-table-header {
19741
+ background: transparent;
19742
+ }
19743
+
19744
+ .c4p--datagrid__dense-header {
19745
+ display: flex;
19746
+ flex-wrap: wrap;
19747
+ }
19748
+ .c4p--datagrid__dense-header .bx--data-table-header {
19749
+ flex: 1 1 auto;
19750
+ padding-bottom: var(--cds-spacing-05, 1rem);
19751
+ }
19752
+ .c4p--datagrid__dense-header .c4p--datagrid__table-toolbar {
19753
+ flex: 0 0 auto;
19754
+ }
19755
+ .c4p--datagrid__dense-header .bx--table-toolbar {
19756
+ background: transparent;
19757
+ }
19758
+ .c4p--datagrid__dense-header .bx__table-container {
19759
+ flex: 1 1 100%;
19760
+ }
19761
+ .c4p--datagrid__dense-header .bx--table-toolbar {
19762
+ padding-top: var(--cds-spacing-07, 2rem);
19763
+ }
19764
+ .c4p--datagrid__dense-header .c4p--datagrid__toolbar-divider {
19765
+ position: relative;
19766
+ }
19767
+ .c4p--datagrid__dense-header .c4p--datagrid__toolbar-divider::before {
19768
+ position: absolute;
19769
+ top: 50%;
19770
+ left: 0;
19771
+ width: 1px;
19772
+ height: var(--cds-spacing-05, 1rem);
19773
+ border-left: 1px solid var(--cds-ui-03, #e0e0e0);
19774
+ content: "";
19775
+ transform: translateY(-50%);
19776
+ }
19777
+
19778
+ .bx--data-table--selected {
19779
+ position: relative;
19780
+ }
19781
+
19782
+ .bx--data-table--selected::before {
19783
+ position: absolute;
19784
+ left: 0;
19785
+ width: var(--cds-spacing-02, 0.25rem);
19786
+ height: 100%;
19787
+ background-color: var(--cds-interactive-01, #0f62fe);
19788
+ content: "";
19789
+ }
19790
+
19837
19791
  /*
19838
19792
  * Licensed Materials - Property of IBM
19839
19793
  * 5724-Q36
@@ -20113,6 +20067,13 @@ th.c4p--datagrid__select-all-toggle-on.button {
20113
20067
  margin-left: var(--cds-spacing-01, 0.125rem);
20114
20068
  }
20115
20069
 
20070
+ /*
20071
+ * Licensed Materials - Property of IBM
20072
+ * 5724-Q36
20073
+ * (c) Copyright IBM Corp. 2022
20074
+ * US Government Users Restricted Rights - Use, duplication or disclosure
20075
+ * restricted by GSA ADP Schedule Contract with IBM Corp.
20076
+ */
20116
20077
  /*
20117
20078
  * Licensed Materials - Property of IBM
20118
20079
  * 5724-Q36
@@ -20181,7 +20142,6 @@ svg.c4p--datagrid__draggable-handleStyle.disable {
20181
20142
  display: flex;
20182
20143
  overflow: hidden;
20183
20144
  width: 100%;
20184
- height: 100%;
20185
20145
  flex-direction: column;
20186
20146
  /* stylelint-disable-next-line selector-pseudo-class-no-unknown */
20187
20147
  }
@@ -20190,6 +20150,143 @@ svg.c4p--datagrid__draggable-handleStyle.disable {
20190
20150
  overflow-x: unset;
20191
20151
  }
20192
20152
 
20153
+ @keyframes rotate {
20154
+ 0% {
20155
+ transform: rotate(0deg);
20156
+ }
20157
+ 100% {
20158
+ transform: rotate(360deg);
20159
+ }
20160
+ }
20161
+ @keyframes rotate-end-p1 {
20162
+ 100% {
20163
+ transform: rotate(360deg);
20164
+ }
20165
+ }
20166
+ @keyframes rotate-end-p2 {
20167
+ 100% {
20168
+ transform: rotate(-360deg);
20169
+ }
20170
+ }
20171
+ /* Stroke animations */
20172
+ @keyframes init-stroke {
20173
+ 0% {
20174
+ stroke-dashoffset: 276.4608;
20175
+ }
20176
+ 100% {
20177
+ stroke-dashoffset: 52.527552;
20178
+ }
20179
+ }
20180
+ @keyframes stroke-end {
20181
+ 0% {
20182
+ stroke-dashoffset: 52.527552;
20183
+ }
20184
+ 100% {
20185
+ stroke-dashoffset: 276.4608;
20186
+ }
20187
+ }
20188
+ @keyframes stroke {
20189
+ 100% {
20190
+ stroke-dashoffset: 0;
20191
+ }
20192
+ }
20193
+ @keyframes form-content-entrance {
20194
+ 0% {
20195
+ opacity: 0;
20196
+ transform: translateY(-0.75rem);
20197
+ }
20198
+ 100% {
20199
+ opacity: 1;
20200
+ transform: translateY(0);
20201
+ }
20202
+ }
20203
+ .c4p--tearsheet-edit {
20204
+ --c4p--tearsheet-edit--total-width: 0;
20205
+ }
20206
+
20207
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form__form--hidden-form {
20208
+ display: none;
20209
+ }
20210
+
20211
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form__form--visible-form {
20212
+ animation-duration: 400ms;
20213
+ animation-fill-mode: forwards;
20214
+ animation-name: form-content-entrance;
20215
+ animation-timing-function: cubic-bezier(0.2, 0, 0.38, 0.9);
20216
+ opacity: 0;
20217
+ }
20218
+
20219
+ @media (prefers-reduced-motion) {
20220
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form__form--visible-form {
20221
+ animation: none;
20222
+ opacity: 1;
20223
+ }
20224
+ }
20225
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__content {
20226
+ height: 100%;
20227
+ padding: var(--cds-spacing-06, 1.5rem);
20228
+ overflow-x: hidden;
20229
+ }
20230
+
20231
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__content .bx--grid {
20232
+ padding: 0;
20233
+ margin: 0;
20234
+ }
20235
+
20236
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form--heading {
20237
+ padding-bottom: var(--cds-spacing-06, 1.5rem);
20238
+ }
20239
+
20240
+ .c4p--tearsheet-edit .bx--btn-set .bx--btn.bx--btn--disabled {
20241
+ box-shadow: -0.0625rem 0 0 0 var(--cds-button-separator, #e0e0e0);
20242
+ }
20243
+
20244
+ .c4p--tearsheet-edit .bx--side-nav--ux {
20245
+ position: initial;
20246
+ width: 100%;
20247
+ max-width: 100%;
20248
+ background-color: transparent;
20249
+ }
20250
+
20251
+ .c4p--tearsheet-edit .bx--side-nav__link:hover {
20252
+ cursor: pointer;
20253
+ }
20254
+
20255
+ .c4p--tearsheet-edit .bx--side-nav__overlay-active {
20256
+ display: none;
20257
+ }
20258
+
20259
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form--title,
20260
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__section--title {
20261
+ margin-bottom: var(--cds-spacing-05, 1rem);
20262
+ }
20263
+
20264
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__section--subtitle,
20265
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form--subtitle {
20266
+ font-size: var(--cds-productive-heading-01-font-size, 0.875rem);
20267
+ font-weight: var(--cds-productive-heading-01-font-weight, 600);
20268
+ line-height: var(--cds-productive-heading-01-line-height, 1.28572);
20269
+ letter-spacing: var(--cds-productive-heading-01-letter-spacing, 0.16px);
20270
+ margin-bottom: var(--cds-spacing-03, 0.5rem);
20271
+ }
20272
+
20273
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__section--description,
20274
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form--description {
20275
+ font-size: var(--cds-body-long-01-font-size, 0.875rem);
20276
+ font-weight: var(--cds-body-long-01-font-weight, 400);
20277
+ line-height: var(--cds-body-long-01-line-height, 1.42857);
20278
+ letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
20279
+ margin-bottom: var(--cds-spacing-06, 1.5rem);
20280
+ }
20281
+
20282
+ .c4p--tearsheet-edit .bx--fieldset {
20283
+ margin-bottom: 0;
20284
+ }
20285
+
20286
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form--fieldset > * {
20287
+ margin-bottom: var(--cds-spacing-05, 1rem);
20288
+ }
20289
+
20193
20290
  @font-face {
20194
20291
  font-display: auto;
20195
20292
  font-family: "IBM Plex Mono";
@@ -25445,12 +25542,10 @@ th .bx--table-sort__flex {
25445
25542
  background-color: var(--cds-field-01, #f4f4f4);
25446
25543
  border: none;
25447
25544
  cursor: default;
25448
- -moz-appearance: textfield;
25449
- /* Firefox */
25545
+ -moz-appearance: textfield; /* Firefox */
25450
25546
  }
25451
25547
  .numInputWrapper .numInput::-webkit-outer-spin-button, .numInputWrapper .numInput::-webkit-inner-spin-button {
25452
- margin: 0;
25453
- /* <-- Apparently some margin are still there even though it's hidden */
25548
+ margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
25454
25549
  -webkit-appearance: none;
25455
25550
  }
25456
25551
  .numInputWrapper .numInput:focus {