@carbon/ibm-products 1.23.0 → 1.25.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 (106) hide show
  1. package/css/components/Datagrid/styles/datagrid.css +83 -11
  2. package/css/components/Datagrid/styles/datagrid.css.map +1 -1
  3. package/css/components/Datagrid/styles/index.css +83 -15
  4. package/css/components/Datagrid/styles/index.css.map +1 -1
  5. package/css/components/Datagrid/styles/useExpandedRow.css +0 -3
  6. package/css/components/Datagrid/styles/useExpandedRow.css.map +1 -1
  7. package/css/index-full-carbon.css +263 -60
  8. package/css/index-full-carbon.css.map +1 -1
  9. package/css/index-full-carbon.min.css +1 -7
  10. package/css/index-full-carbon.min.css.map +1 -1
  11. package/css/index-without-carbon-released-only.css +41 -43
  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 +263 -60
  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 +263 -60
  20. package/css/index.css.map +1 -1
  21. package/css/index.min.css +1 -7
  22. package/css/index.min.css.map +1 -1
  23. package/es/components/AddSelect/AddSelect.js +5 -7
  24. package/es/components/AddSelect/AddSelectBody.js +6 -10
  25. package/es/components/AddSelect/AddSelectColumn.js +4 -1
  26. package/es/components/AddSelect/AddSelectFilter.js +1 -1
  27. package/es/components/AddSelect/AddSelectList.js +1 -1
  28. package/es/components/AddSelect/AddSelectMetaPanel.js +8 -7
  29. package/es/components/AddSelect/AddSelectSidebar.js +4 -26
  30. package/es/components/AddSelect/AddSelectSort.js +2 -0
  31. package/es/components/Card/Card.js +1 -1
  32. package/es/components/Datagrid/Datagrid/Datagrid.js +17 -12
  33. package/es/components/Datagrid/Datagrid/DatagridRow.js +4 -2
  34. package/es/components/Datagrid/useExpandedRow.js +5 -12
  35. package/es/components/Datagrid/useOnRowClick.js +10 -3
  36. package/es/components/EditFullPage/EditFullPage.js +79 -0
  37. package/es/components/EditFullPage/index.js +7 -0
  38. package/es/components/EditTearsheet/EditTearsheet.js +205 -0
  39. package/es/components/EditTearsheet/EditTearsheetForm.js +103 -0
  40. package/es/components/EditTearsheet/index.js +8 -0
  41. package/es/components/EditTearsheet/preview-components/MultiFormEditTearsheet.js +230 -0
  42. package/es/components/EditTearsheetNarrow/EditTearsheetNarrow.js +79 -0
  43. package/es/components/EditTearsheetNarrow/index.js +7 -0
  44. package/es/components/EmptyStates/EmptyStateContent.js +2 -1
  45. package/es/components/ImportModal/ImportModal.js +10 -2
  46. package/es/components/WebTerminal/WebTerminal.js +30 -16
  47. package/es/components/WebTerminal/WebTerminalContentWrapper.js +8 -10
  48. package/es/components/WebTerminal/hooks/index.js +45 -0
  49. package/es/components/WebTerminal/index.js +2 -1
  50. package/es/components/WebTerminal/preview-components/Navigation.js +6 -10
  51. package/es/components/index.js +5 -2
  52. package/es/global/js/package-settings.js +5 -1
  53. package/lib/components/AddSelect/AddSelect.js +5 -7
  54. package/lib/components/AddSelect/AddSelectBody.js +6 -10
  55. package/lib/components/AddSelect/AddSelectColumn.js +3 -1
  56. package/lib/components/AddSelect/AddSelectFilter.js +1 -1
  57. package/lib/components/AddSelect/AddSelectList.js +1 -1
  58. package/lib/components/AddSelect/AddSelectMetaPanel.js +8 -7
  59. package/lib/components/AddSelect/AddSelectSidebar.js +3 -26
  60. package/lib/components/AddSelect/AddSelectSort.js +2 -0
  61. package/lib/components/Card/Card.js +1 -1
  62. package/lib/components/Datagrid/Datagrid/Datagrid.js +17 -12
  63. package/lib/components/Datagrid/Datagrid/DatagridRow.js +3 -1
  64. package/lib/components/Datagrid/useExpandedRow.js +5 -20
  65. package/lib/components/Datagrid/useOnRowClick.js +10 -3
  66. package/lib/components/EditFullPage/EditFullPage.js +85 -0
  67. package/lib/components/EditFullPage/index.js +13 -0
  68. package/lib/components/EditTearsheet/EditTearsheet.js +229 -0
  69. package/lib/components/EditTearsheet/EditTearsheetForm.js +122 -0
  70. package/lib/components/EditTearsheet/index.js +21 -0
  71. package/lib/components/EditTearsheet/preview-components/MultiFormEditTearsheet.js +254 -0
  72. package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +85 -0
  73. package/lib/components/EditTearsheetNarrow/index.js +13 -0
  74. package/lib/components/EmptyStates/EmptyStateContent.js +2 -1
  75. package/lib/components/ImportModal/ImportModal.js +11 -2
  76. package/lib/components/WebTerminal/WebTerminal.js +31 -15
  77. package/lib/components/WebTerminal/WebTerminalContentWrapper.js +9 -9
  78. package/lib/components/WebTerminal/hooks/index.js +69 -0
  79. package/lib/components/WebTerminal/index.js +15 -1
  80. package/lib/components/WebTerminal/preview-components/Navigation.js +6 -10
  81. package/lib/components/index.js +37 -1
  82. package/lib/global/js/package-settings.js +5 -1
  83. package/package.json +12 -12
  84. package/scss/components/Cascade/_cascade.scss +1 -1
  85. package/scss/components/CreateInfluencer/_create-influencer.scss +2 -0
  86. package/scss/components/Datagrid/_datagrid.scss +0 -1
  87. package/scss/components/Datagrid/_storybook-styles.scss +53 -0
  88. package/scss/components/Datagrid/styles/datagrid.scss +93 -12
  89. package/scss/components/Datagrid/styles/useExpandedRow.scss +0 -6
  90. package/scss/components/EditFullPage/_edit-full-page.scss +34 -0
  91. package/scss/components/EditFullPage/_index.scss +8 -0
  92. package/scss/components/EditFullPage/_storybook-styles.scss +10 -0
  93. package/scss/components/EditTearsheet/_edit-tearsheet.scss +132 -0
  94. package/scss/components/EditTearsheet/_index.scss +8 -0
  95. package/scss/components/EditTearsheet/_storybook-styles.scss +55 -0
  96. package/scss/components/EditTearsheetNarrow/_edit-tearsheet-narrow.scss +34 -0
  97. package/scss/components/EditTearsheetNarrow/_index.scss +8 -0
  98. package/scss/components/EditTearsheetNarrow/_storybook-styles.scss +10 -0
  99. package/scss/components/EmptyStates/_empty-state.scss +16 -9
  100. package/scss/components/InlineEdit/_inline-edit.scss +8 -20
  101. package/scss/components/NotificationsPanel/_notifications-panel.scss +1 -0
  102. package/scss/components/PageHeader/_page-header.scss +3 -1
  103. package/scss/components/StatusIcon/_status-icon.scss +1 -1
  104. package/scss/components/Tearsheet/_tearsheet.scss +2 -2
  105. package/scss/components/WebTerminal/_web-terminal.scss +2 -1
  106. package/scss/components/_index.scss +3 -0
@@ -12929,24 +12929,39 @@ a.bx--side-nav__link--current::before {
12929
12929
  .c4p--empty-state {
12930
12930
  color: var(--cds-text-01, #161616);
12931
12931
  }
12932
- .c4p--empty-state .c4p--empty-state__header,
12933
- .c4p--empty-state .c4p--empty-state__subtitle {
12934
- padding-bottom: var(--cds-spacing-02, 0.25rem);
12935
- margin: 0;
12936
- }
12937
- .c4p--empty-state .c4p--empty-state__header--small {
12932
+ .c4p--empty-state .c4p--empty-state__header {
12938
12933
  font-size: var(--cds-productive-heading-03-font-size, 1.25rem);
12939
12934
  font-weight: var(--cds-productive-heading-03-font-weight, 400);
12940
12935
  line-height: var(--cds-productive-heading-03-line-height, 1.4);
12941
12936
  letter-spacing: var(--cds-productive-heading-03-letter-spacing, 0);
12937
+ padding-bottom: calc(var(--cds-spacing-01, 0.125rem) + var(--cds-spacing-02, 0.25rem));
12938
+ margin: 0;
12939
+ }
12940
+ .c4p--empty-state .c4p--empty-state__subtitle {
12941
+ font-size: var(--cds-body-long-01-font-size, 0.875rem);
12942
+ font-weight: var(--cds-body-long-01-font-weight, 400);
12943
+ line-height: var(--cds-body-long-01-line-height, 1.42857);
12944
+ letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
12945
+ padding-bottom: var(--cds-spacing-05, 1rem);
12946
+ }
12947
+ .c4p--empty-state .c4p--empty-state__header--small {
12948
+ font-size: var(--cds-body-short-02-font-size, 1rem);
12949
+ font-weight: var(--cds-body-short-02-font-weight, 400);
12950
+ line-height: var(--cds-body-short-02-line-height, 1.375);
12951
+ letter-spacing: var(--cds-body-short-02-letter-spacing, 0);
12952
+ padding-bottom: var(--cds-spacing-03, 0.5rem);
12942
12953
  }
12943
12954
  .c4p--empty-state .c4p--empty-state__subtitle--small {
12944
- font-size: var(--cds-body-short-01-font-size, 0.875rem);
12945
- font-weight: var(--cds-body-short-01-font-weight, 400);
12946
- line-height: var(--cds-body-short-01-line-height, 1.28572);
12947
- letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
12955
+ font-size: var(--cds-caption-01-font-size, 0.75rem);
12956
+ font-weight: var(--cds-caption-01-font-weight, 400);
12957
+ line-height: var(--cds-caption-01-line-height, 1.33333);
12958
+ letter-spacing: var(--cds-caption-01-letter-spacing, 0.32px);
12948
12959
  }
12949
12960
 
12961
+ .c4p--empty-state__illustration {
12962
+ height: auto;
12963
+ margin-bottom: var(--cds-spacing-05, 1rem);
12964
+ }
12950
12965
  .c4p--empty-state__illustration.c4p--empty-state__illustration--lg {
12951
12966
  min-width: var(--cds-spacing-11, 5rem);
12952
12967
  max-width: var(--cds-spacing-11, 5rem);
@@ -12956,13 +12971,9 @@ a.bx--side-nav__link--current::before {
12956
12971
  max-width: var(--cds-spacing-10, 4rem);
12957
12972
  }
12958
12973
 
12959
- .c4p--empty-state__action-button,
12960
- .c4p--empty-state__link {
12961
- margin-top: var(--cds-spacing-06, 1.5rem);
12962
- }
12963
-
12964
12974
  .c4p--empty-state .c4p--empty-state__action-button {
12965
12975
  display: block;
12976
+ margin-bottom: var(--cds-spacing-05, 1rem);
12966
12977
  }
12967
12978
 
12968
12979
  .c4p--empty-state .c4p--empty-state__link {
@@ -16387,7 +16398,6 @@ button.c4p--add-select__global-filter-toggle--open {
16387
16398
  display: block;
16388
16399
  width: 100%;
16389
16400
  height: 100%;
16390
- /* stylelint-disable-next-line carbon/motion-token-use */
16391
16401
  animation: background-and-shadow-appear 1000ms linear paused forwards;
16392
16402
  animation-delay: calc(-1000ms * var(--c4p--page-header--background-opacity));
16393
16403
  content: "";
@@ -16527,7 +16537,6 @@ button.c4p--add-select__global-filter-toggle--open {
16527
16537
  display: block;
16528
16538
  width: 100%;
16529
16539
  height: 100%;
16530
- /* stylelint-disable-next-line carbon/motion-token-use */
16531
16540
  animation: background-appear 1000ms linear paused forwards;
16532
16541
  animation-delay: calc(-1000ms * var(--c4p--page-header--background-opacity));
16533
16542
  content: "";
@@ -16639,6 +16648,7 @@ button.c4p--add-select__global-filter-toggle--open {
16639
16648
  font-weight: var(--cds-productive-heading-04-font-weight, 400);
16640
16649
  line-height: var(--cds-productive-heading-04-line-height, 1.28572);
16641
16650
  letter-spacing: var(--cds-productive-heading-04-letter-spacing, 0);
16651
+ min-height: var(--cds-spacing-08, 2.5rem);
16642
16652
  overflow-x: hidden;
16643
16653
  text-overflow: ellipsis;
16644
16654
  white-space: nowrap;
@@ -16706,7 +16716,6 @@ button.c4p--add-select__global-filter-toggle--open {
16706
16716
  display: block;
16707
16717
  width: 100%;
16708
16718
  height: 100%;
16709
- /* stylelint-disable-next-line carbon/motion-token-use */
16710
16719
  animation: background-appear 1000ms linear paused forwards;
16711
16720
  animation-delay: calc(-1000ms * var(--c4p--page-header--background-opacity));
16712
16721
  content: "";
@@ -18038,7 +18047,8 @@ button.c4p--add-select__global-filter-toggle--open {
18038
18047
  position: fixed;
18039
18048
  top: var(--cds-spacing-09, 3rem);
18040
18049
  right: 0;
18041
- width: 40rem;
18050
+ width: 100%;
18051
+ max-width: 40rem;
18042
18052
  height: calc(100vh - var(--cds-spacing-09, 3rem));
18043
18053
  border-left: 1px solid #262626;
18044
18054
  color: var(--cds-text-01, #161616);
@@ -19105,12 +19115,12 @@ button.c4p--add-select__global-filter-toggle--open {
19105
19115
  .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 {
19106
19116
  display: inline-flex;
19107
19117
  width: var(--c4p--inline-edit--size);
19118
+ max-width: var(--c4p--inline-edit--size);
19108
19119
  height: 100%;
19109
19120
  min-height: initial;
19110
19121
  max-height: var(--c4p--inline-edit--size);
19111
- padding: calc(
19112
- 0.5 * (var(--c4p--inline-edit--size) - var(--c4p--inline-edit--icon-size)) - var(--cds-spacing-01, 0.125rem)
19113
- );
19122
+ align-items: center;
19123
+ justify-content: center;
19114
19124
  border: 2px solid transparent;
19115
19125
  }
19116
19126
  .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 {
@@ -19131,38 +19141,27 @@ button.c4p--add-select__global-filter-toggle--open {
19131
19141
  border-color: transparent;
19132
19142
  }
19133
19143
  .c4p--inline-edit.c4p--inline-edit--editing .c4p--inline-edit__toolbar--animation .c4p--inline-edit__save {
19134
- margin-right: 0;
19144
+ overflow: visible;
19145
+ width: var(--c4p--inline-edit--edit-size);
19135
19146
  transition: all 240ms cubic-bezier(0.2, 0, 0.38, 0.9);
19136
19147
  transition-property: margin, padding;
19137
19148
  }
19138
- .c4p--inline-edit.c4p--inline-edit--editing .c4p--inline-edit__toolbar--animation .c4p--inline-edit__save svg {
19139
- transition: width 240ms cubic-bezier(0.2, 0, 0.38, 0.9);
19140
- }
19141
- @media (prefers-reduced-motion: reduce) {
19142
- .c4p--inline-edit.c4p--inline-edit--editing .c4p--inline-edit__toolbar--animation .c4p--inline-edit__save svg {
19143
- transition: none;
19144
- }
19145
- }
19146
19149
  .c4p--inline-edit.c4p--inline-edit--editing .c4p--inline-edit__toolbar--animation:not(.c4p--inline-edit__toolbar--saveable) .c4p--inline-edit__save {
19147
- padding-right: 0;
19148
- padding-left: 0;
19149
- border-right: 0;
19150
- border-left: 0;
19151
- margin-right: calc(-1 * var(--c4p--inline-edit--size));
19152
- }
19153
- .c4p--inline-edit.c4p--inline-edit--editing .c4p--inline-edit__toolbar--animation:not(.c4p--inline-edit__toolbar--saveable) .c4p--inline-edit__save svg {
19154
19150
  overflow: hidden;
19155
19151
  width: 0;
19152
+ padding: 0;
19153
+ border-right: 0;
19154
+ border-left: 0;
19156
19155
  }
19157
19156
  .c4p--inline-edit.c4p--inline-edit.c4p--inline-edit .c4p--inline-edit__edit {
19158
19157
  display: inline-flex;
19159
19158
  width: var(--c4p--inline-edit--size);
19159
+ max-width: var(--c4p--inline-edit--size);
19160
19160
  height: 100%;
19161
19161
  min-height: initial;
19162
19162
  max-height: var(--c4p--inline-edit--size);
19163
- padding: calc(
19164
- 0.5 * (var(--c4p--inline-edit--size) - var(--c4p--inline-edit--icon-size)) - var(--cds-spacing-01, 0.125rem)
19165
- );
19163
+ align-items: center;
19164
+ justify-content: center;
19166
19165
  border: 2px solid transparent;
19167
19166
  }
19168
19167
  .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 {
@@ -19186,12 +19185,12 @@ button.c4p--add-select__global-filter-toggle--open {
19186
19185
  .c4p--inline-edit .c4p--inline-edit__validation-icon {
19187
19186
  display: inline-flex;
19188
19187
  width: var(--c4p--inline-edit--size);
19188
+ max-width: var(--c4p--inline-edit--size);
19189
19189
  height: 100%;
19190
19190
  min-height: initial;
19191
19191
  max-height: var(--c4p--inline-edit--size);
19192
- padding: calc(
19193
- 0.5 * (var(--c4p--inline-edit--size) - var(--c4p--inline-edit--icon-size)) - var(--cds-spacing-01, 0.125rem)
19194
- );
19192
+ align-items: center;
19193
+ justify-content: center;
19195
19194
  border: 2px solid transparent;
19196
19195
  }
19197
19196
  .c4p--inline-edit.c4p--inline-edit--invalid .c4p--inline-edit__validation-icon {
@@ -19517,24 +19516,17 @@ button.c4p--add-select__global-filter-toggle--open {
19517
19516
 
19518
19517
  .c4p--datagrid__grid-container {
19519
19518
  display: block;
19520
- overflow: auto;
19521
19519
  width: 100%;
19522
19520
  padding-top: 0;
19523
19521
  }
19524
19522
  .c4p--datagrid__grid-container .bx--data-table-content {
19525
19523
  width: 100%;
19526
19524
  height: 100%;
19527
- /* stylelint-disable-next-line declaration-property-value-disallowed-list */
19528
- overflow-x: unset;
19525
+ overflow-x: auto;
19529
19526
  }
19530
19527
  .c4p--datagrid__grid-container .c4p--datagrid__table-simple {
19531
- display: flex;
19532
- overflow: auto;
19528
+ overflow: hidden;
19533
19529
  max-height: 100%;
19534
- flex-direction: column;
19535
- }
19536
- .c4p--datagrid__grid-container .c4p--datagrid__with-pagination tr:last-of-type > td {
19537
- border-bottom: none;
19538
19530
  }
19539
19531
  .c4p--datagrid__grid-container .c4p--datagrid__head {
19540
19532
  display: flex;
@@ -19616,6 +19608,10 @@ button.c4p--add-select__global-filter-toggle--open {
19616
19608
  flex: 1 1 auto;
19617
19609
  }
19618
19610
 
19611
+ .c4p--datagrid__with-pagination table tr:last-of-type > td {
19612
+ border-bottom: none;
19613
+ }
19614
+
19619
19615
  .c4p--datagrid__resizer {
19620
19616
  position: absolute;
19621
19617
  z-index: 1;
@@ -19708,7 +19704,6 @@ button.c4p--add-select__global-filter-toggle--open {
19708
19704
  .c4p--datagrid__datagridLeftPanel {
19709
19705
  display: flex;
19710
19706
  width: 388px;
19711
- height: 100%;
19712
19707
  background-color: var(--cds-ui-01, #f4f4f4);
19713
19708
  }
19714
19709
 
@@ -19719,15 +19714,91 @@ button.c4p--add-select__global-filter-toggle--open {
19719
19714
  .c4p--datagrid__datagridWithPanel {
19720
19715
  position: relative;
19721
19716
  display: flex;
19722
- overflow: auto;
19723
19717
  width: 100%;
19718
+ height: 100%;
19719
+ flex-direction: column;
19720
+ }
19721
+ .c4p--datagrid__datagridWithPanel .c4p--datagrid__grid-container {
19722
+ display: flex;
19723
+ overflow: hidden;
19724
19724
  flex-direction: column;
19725
19725
  }
19726
+ .c4p--datagrid__datagridWithPanel .c4p--datagrid__table-toolbar {
19727
+ width: 100%;
19728
+ }
19729
+ .c4p--datagrid__datagridWithPanel .c4p--datagrid__datagridLeftPanel {
19730
+ flex: 0 0 auto;
19731
+ }
19732
+ .c4p--datagrid__datagridWithPanel .bx--data-table-content {
19733
+ flex: 1 1 0%;
19734
+ }
19735
+ .c4p--datagrid__datagridWithPanel .c4p--datagrid__table-container {
19736
+ overflow: hidden;
19737
+ }
19738
+
19739
+ .c4p--datagrid__table-container {
19740
+ position: relative;
19741
+ display: flex;
19742
+ overflow: auto;
19743
+ width: 100%;
19744
+ max-height: 100%;
19745
+ }
19726
19746
 
19727
19747
  .c4p--datagrid__carbon-row-expanded.c4p--datagrid__carbon-row-expanded-hover-active ~ .c4p--datagrid__carbon-nested-row {
19728
19748
  border-left: 1px solid var(--cds-interactive-01, #0f62fe);
19729
19749
  }
19730
19750
 
19751
+ .c4p--datagrid .bx--data-table-header {
19752
+ background: transparent;
19753
+ }
19754
+
19755
+ .c4p--datagrid__dense-header {
19756
+ display: flex;
19757
+ flex-wrap: wrap;
19758
+ }
19759
+ .c4p--datagrid__dense-header .bx--data-table-header {
19760
+ flex: 1 1 auto;
19761
+ padding-bottom: var(--cds-spacing-05, 1rem);
19762
+ }
19763
+ .c4p--datagrid__dense-header .c4p--datagrid__table-toolbar {
19764
+ flex: 0 0 auto;
19765
+ }
19766
+ .c4p--datagrid__dense-header .bx--table-toolbar {
19767
+ background: transparent;
19768
+ }
19769
+ .c4p--datagrid__dense-header .bx__table-container {
19770
+ flex: 1 1 100%;
19771
+ }
19772
+ .c4p--datagrid__dense-header .bx--table-toolbar {
19773
+ padding-top: var(--cds-spacing-07, 2rem);
19774
+ }
19775
+ .c4p--datagrid__dense-header .c4p--datagrid__toolbar-divider {
19776
+ position: relative;
19777
+ }
19778
+ .c4p--datagrid__dense-header .c4p--datagrid__toolbar-divider::before {
19779
+ position: absolute;
19780
+ top: 50%;
19781
+ left: 0;
19782
+ width: 1px;
19783
+ height: var(--cds-spacing-05, 1rem);
19784
+ border-left: 1px solid var(--cds-ui-03, #e0e0e0);
19785
+ content: "";
19786
+ transform: translateY(-50%);
19787
+ }
19788
+
19789
+ .bx--data-table--selected {
19790
+ position: relative;
19791
+ }
19792
+
19793
+ .bx--data-table--selected::before {
19794
+ position: absolute;
19795
+ left: 0;
19796
+ width: var(--cds-spacing-02, 0.25rem);
19797
+ height: 100%;
19798
+ background-color: var(--cds-interactive-01, #0f62fe);
19799
+ content: "";
19800
+ }
19801
+
19731
19802
  /*
19732
19803
  * Licensed Materials - Property of IBM
19733
19804
  * 5724-Q36
@@ -20014,10 +20085,6 @@ th.c4p--datagrid__select-all-toggle-on.button {
20014
20085
  * US Government Users Restricted Rights - Use, duplication or disclosure
20015
20086
  * restricted by GSA ADP Schedule Contract with IBM Corp.
20016
20087
  */
20017
- .c4p--datagrid__expanded-row-content {
20018
- padding: var(--cds-spacing-05, 1rem) var(--cds-spacing-05, 1rem) var(--cds-spacing-06, 1.5rem) var(--cds-spacing-10, 4rem);
20019
- }
20020
-
20021
20088
  /*
20022
20089
  * Licensed Materials - Property of IBM
20023
20090
  * 5724-Q36
@@ -20086,7 +20153,6 @@ svg.c4p--datagrid__draggable-handleStyle.disable {
20086
20153
  display: flex;
20087
20154
  overflow: hidden;
20088
20155
  width: 100%;
20089
- height: 100%;
20090
20156
  flex-direction: column;
20091
20157
  /* stylelint-disable-next-line selector-pseudo-class-no-unknown */
20092
20158
  }
@@ -20095,6 +20161,143 @@ svg.c4p--datagrid__draggable-handleStyle.disable {
20095
20161
  overflow-x: unset;
20096
20162
  }
20097
20163
 
20164
+ @keyframes rotate {
20165
+ 0% {
20166
+ transform: rotate(0deg);
20167
+ }
20168
+ 100% {
20169
+ transform: rotate(360deg);
20170
+ }
20171
+ }
20172
+ @keyframes rotate-end-p1 {
20173
+ 100% {
20174
+ transform: rotate(360deg);
20175
+ }
20176
+ }
20177
+ @keyframes rotate-end-p2 {
20178
+ 100% {
20179
+ transform: rotate(-360deg);
20180
+ }
20181
+ }
20182
+ /* Stroke animations */
20183
+ @keyframes init-stroke {
20184
+ 0% {
20185
+ stroke-dashoffset: 276.4608;
20186
+ }
20187
+ 100% {
20188
+ stroke-dashoffset: 52.527552;
20189
+ }
20190
+ }
20191
+ @keyframes stroke-end {
20192
+ 0% {
20193
+ stroke-dashoffset: 52.527552;
20194
+ }
20195
+ 100% {
20196
+ stroke-dashoffset: 276.4608;
20197
+ }
20198
+ }
20199
+ @keyframes stroke {
20200
+ 100% {
20201
+ stroke-dashoffset: 0;
20202
+ }
20203
+ }
20204
+ @keyframes form-content-entrance {
20205
+ 0% {
20206
+ opacity: 0;
20207
+ transform: translateY(-0.75rem);
20208
+ }
20209
+ 100% {
20210
+ opacity: 1;
20211
+ transform: translateY(0);
20212
+ }
20213
+ }
20214
+ .c4p--tearsheet-edit {
20215
+ --c4p--tearsheet-edit--total-width: 0;
20216
+ }
20217
+
20218
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form__form--hidden-form {
20219
+ display: none;
20220
+ }
20221
+
20222
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form__form--visible-form {
20223
+ animation-duration: 400ms;
20224
+ animation-fill-mode: forwards;
20225
+ animation-name: form-content-entrance;
20226
+ animation-timing-function: cubic-bezier(0.2, 0, 0.38, 0.9);
20227
+ opacity: 0;
20228
+ }
20229
+
20230
+ @media (prefers-reduced-motion) {
20231
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form__form--visible-form {
20232
+ animation: none;
20233
+ opacity: 1;
20234
+ }
20235
+ }
20236
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__content {
20237
+ height: 100%;
20238
+ padding: var(--cds-spacing-06, 1.5rem);
20239
+ overflow-x: hidden;
20240
+ }
20241
+
20242
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__content .bx--grid {
20243
+ padding: 0;
20244
+ margin: 0;
20245
+ }
20246
+
20247
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form--heading {
20248
+ padding-bottom: var(--cds-spacing-06, 1.5rem);
20249
+ }
20250
+
20251
+ .c4p--tearsheet-edit .bx--btn-set .bx--btn.bx--btn--disabled {
20252
+ box-shadow: -0.0625rem 0 0 0 var(--cds-button-separator, #e0e0e0);
20253
+ }
20254
+
20255
+ .c4p--tearsheet-edit .bx--side-nav--ux {
20256
+ position: initial;
20257
+ width: 100%;
20258
+ max-width: 100%;
20259
+ background-color: transparent;
20260
+ }
20261
+
20262
+ .c4p--tearsheet-edit .bx--side-nav__link:hover {
20263
+ cursor: pointer;
20264
+ }
20265
+
20266
+ .c4p--tearsheet-edit .bx--side-nav__overlay-active {
20267
+ display: none;
20268
+ }
20269
+
20270
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form--title,
20271
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__section--title {
20272
+ margin-bottom: var(--cds-spacing-05, 1rem);
20273
+ }
20274
+
20275
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__section--subtitle,
20276
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form--subtitle {
20277
+ font-size: var(--cds-productive-heading-01-font-size, 0.875rem);
20278
+ font-weight: var(--cds-productive-heading-01-font-weight, 600);
20279
+ line-height: var(--cds-productive-heading-01-line-height, 1.28572);
20280
+ letter-spacing: var(--cds-productive-heading-01-letter-spacing, 0.16px);
20281
+ margin-bottom: var(--cds-spacing-03, 0.5rem);
20282
+ }
20283
+
20284
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__section--description,
20285
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form--description {
20286
+ font-size: var(--cds-body-long-01-font-size, 0.875rem);
20287
+ font-weight: var(--cds-body-long-01-font-weight, 400);
20288
+ line-height: var(--cds-body-long-01-line-height, 1.42857);
20289
+ letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
20290
+ margin-bottom: var(--cds-spacing-06, 1.5rem);
20291
+ }
20292
+
20293
+ .c4p--tearsheet-edit .bx--fieldset {
20294
+ margin-bottom: 0;
20295
+ }
20296
+
20297
+ .c4p--tearsheet-edit .c4p--tearsheet-edit__form--fieldset > * {
20298
+ margin-bottom: var(--cds-spacing-05, 1rem);
20299
+ }
20300
+
20098
20301
  @font-face {
20099
20302
  font-display: auto;
20100
20303
  font-family: "IBM Plex Mono";