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