@carbon/ibm-products 2.21.0 → 2.22.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. package/README.md +8 -5
  2. package/css/index-full-carbon.css +531 -251
  3. package/css/index-full-carbon.css.map +1 -1
  4. package/css/index-full-carbon.min.css +1 -1
  5. package/css/index-full-carbon.min.css.map +1 -1
  6. package/css/index-without-carbon-released-only.css +199 -177
  7. package/css/index-without-carbon-released-only.css.map +1 -1
  8. package/css/index-without-carbon-released-only.min.css +1 -1
  9. package/css/index-without-carbon-released-only.min.css.map +1 -1
  10. package/css/index-without-carbon.css +243 -189
  11. package/css/index-without-carbon.css.map +1 -1
  12. package/css/index-without-carbon.min.css +1 -1
  13. package/css/index-without-carbon.min.css.map +1 -1
  14. package/css/index.css +223 -192
  15. package/css/index.css.map +1 -1
  16. package/css/index.min.css +1 -1
  17. package/css/index.min.css.map +1 -1
  18. package/es/components/Datagrid/Datagrid/DatagridContent.js +8 -3
  19. package/es/components/Datagrid/Datagrid/DatagridRow.js +6 -1
  20. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +6 -3
  21. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +2 -2
  22. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +30 -72
  23. package/es/components/Datagrid/useRowIsMouseOver.js +3 -1
  24. package/es/components/DelimitedList/DelimitedList.docs-page.js +15 -0
  25. package/es/components/DelimitedList/DelimitedList.js +73 -0
  26. package/es/components/DelimitedList/index.js +8 -0
  27. package/es/components/SidePanel/SidePanel.js +145 -189
  28. package/es/components/TagSet/TagSet.js +21 -5
  29. package/es/components/TagSet/TagSetOverflow.js +13 -8
  30. package/es/components/index.js +2 -1
  31. package/es/global/js/hooks/useResizeObserver.js +5 -2
  32. package/es/global/js/package-settings.js +1 -0
  33. package/lib/components/Datagrid/Datagrid/DatagridContent.js +8 -3
  34. package/lib/components/Datagrid/Datagrid/DatagridRow.js +6 -1
  35. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +6 -3
  36. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +2 -2
  37. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +30 -72
  38. package/lib/components/Datagrid/useRowIsMouseOver.js +3 -1
  39. package/lib/components/DelimitedList/DelimitedList.docs-page.js +25 -0
  40. package/lib/components/DelimitedList/DelimitedList.js +78 -0
  41. package/lib/components/DelimitedList/index.js +12 -0
  42. package/lib/components/SidePanel/SidePanel.js +145 -189
  43. package/lib/components/TagSet/TagSet.js +21 -5
  44. package/lib/components/TagSet/TagSetOverflow.js +12 -7
  45. package/lib/components/index.js +8 -1
  46. package/lib/global/js/hooks/useResizeObserver.js +5 -2
  47. package/lib/global/js/package-settings.js +1 -0
  48. package/package.json +9 -8
  49. package/scss/components/Datagrid/_datagrid.scss +4 -0
  50. package/scss/components/Datagrid/styles/_datagrid.scss +9 -1
  51. package/scss/components/Datagrid/styles/_useStickyColumn.scss +2 -0
  52. package/scss/components/DelimitedList/_carbon-imports.scss +9 -0
  53. package/scss/components/DelimitedList/_delimited-list.scss +27 -0
  54. package/scss/components/DelimitedList/_index-with-carbon.scss +9 -0
  55. package/scss/components/DelimitedList/_index.scss +8 -0
  56. package/scss/components/SidePanel/_side-panel-variables.scss +5 -1
  57. package/scss/components/SidePanel/_side-panel.scss +155 -187
  58. package/scss/components/_index-with-carbon.scss +1 -0
  59. package/scss/components/_index.scss +1 -0
  60. package/telemetry.yml +790 -0
package/css/index.css CHANGED
@@ -548,15 +548,15 @@
548
548
  }
549
549
 
550
550
  .cds--popover--left-top > .cds--popover > .cds--popover-content {
551
- inset-block-start: -50%;
551
+ inset-block-start: 50%;
552
552
  inset-inline-end: 100%;
553
- transform: translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(-0.5 * var(--cds-popover-offset, 0rem) + 16px));
553
+ transform: translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(-0.5 * var(--cds-popover-offset, 0rem) - 16px));
554
554
  }
555
555
 
556
556
  .cds--popover--left-bottom > .cds--popover > .cds--popover-content {
557
- inset-block-end: -50%;
557
+ inset-block-end: 50%;
558
558
  inset-inline-end: 100%;
559
- transform: translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(0.5 * var(--cds-popover-offset, 0rem) - 16px));
559
+ transform: translate(calc(-1 * var(--cds-popover-offset, 0rem)), calc(0.5 * var(--cds-popover-offset, 0rem) + 16px));
560
560
  }
561
561
 
562
562
  [dir=rtl] .cds--popover--left > .cds--popover > .cds--popover-content,
@@ -2323,18 +2323,19 @@
2323
2323
  align-items: flex-start;
2324
2324
  }
2325
2325
 
2326
- .cds--modal-close {
2326
+ .cds--modal-close-button {
2327
2327
  position: absolute;
2328
- z-index: 2;
2329
- overflow: hidden;
2328
+ inset-block-start: 0;
2329
+ inset-inline-end: 0;
2330
+ }
2331
+
2332
+ .cds--modal-close {
2330
2333
  padding: 0.75rem;
2331
2334
  border: 2px solid transparent;
2332
2335
  background-color: transparent;
2333
2336
  block-size: 3rem;
2334
2337
  cursor: pointer;
2335
2338
  inline-size: 3rem;
2336
- inset-block-start: 0;
2337
- inset-inline-end: 0;
2338
2339
  transition: background-color 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
2339
2340
  }
2340
2341
  .cds--modal-close:hover {
@@ -2370,12 +2371,12 @@
2370
2371
  }
2371
2372
 
2372
2373
  .cds--modal--slug .cds--modal-container {
2373
- background: linear-gradient(0deg, var(--cds-slug-callout-aura-start, rgba(237, 245, 255, 0.6)) 0%, var(--cds-slug-callout-aura-end, rgba(255, 255, 255, 0)) 50%, transparent 50%), linear-gradient(180deg, var(--cds-slug-callout-gradient-top, rgba(244, 244, 244, 0.85)) 0%, var(--cds-slug-callout-gradient-bottom, rgba(224, 224, 224, 0.85)) 100%) rgba(0, 0, 0, 0.01);
2374
+ background: linear-gradient(to top, var(--cds-ai-aura-start, rgba(69, 137, 255, 0.1)) 0%, var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%) padding-box, linear-gradient(to top, var(--cds-background, #ffffff), var(--cds-background, #ffffff)) padding-box, linear-gradient(to bottom, var(--cds-ai-border-start, #78a9ff), var(--cds-ai-border-end, #d0e2ff)) border-box, linear-gradient(to top, var(--cds-background, #ffffff), var(--cds-background, #ffffff)) border-box;
2374
2375
  background-color: var(--cds-layer);
2375
2376
  }
2376
2377
 
2377
2378
  .cds--modal--slug .cds--modal-container:has(.cds--btn-set:not(.cds--modal-footer--three-button) > button:not(:only-child)) {
2378
- background: linear-gradient(0deg, var(--cds-slug-callout-aura-start, rgba(237, 245, 255, 0.6)) calc(0% + 64px), var(--cds-slug-callout-aura-end, rgba(255, 255, 255, 0)) 50%, transparent 50%), linear-gradient(180deg, var(--cds-slug-callout-gradient-top, rgba(244, 244, 244, 0.85)) calc(0% + 64px), var(--cds-slug-callout-gradient-bottom, rgba(224, 224, 224, 0.85)) 100%) rgba(0, 0, 0, 0.01);
2379
+ background: linear-gradient(to top, var(--cds-ai-aura-start, rgba(69, 137, 255, 0.1)) calc(0% + 64px), var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%) padding-box, linear-gradient(to top, var(--cds-background, #ffffff), var(--cds-background, #ffffff)) padding-box, linear-gradient(to bottom, var(--cds-ai-border-start, #78a9ff), var(--cds-ai-border-end, #d0e2ff)) border-box, linear-gradient(to top, var(--cds-background, #ffffff), var(--cds-background, #ffffff)) border-box;
2379
2380
  background-color: var(--cds-layer);
2380
2381
  }
2381
2382
 
@@ -2385,8 +2386,8 @@
2385
2386
  inset-inline-end: 0;
2386
2387
  }
2387
2388
 
2388
- .cds--modal-header > .cds--slug:has(+ .cds--modal-close),
2389
- .cds--modal-header > .cds--modal-close ~ .cds--slug,
2389
+ .cds--modal-header > .cds--slug:has(+ .cds--modal-close-button),
2390
+ .cds--modal-header > .cds--modal-close-button ~ .cds--slug,
2390
2391
  .cds--modal--slug .cds--modal-container-body > .cds--slug {
2391
2392
  inset-inline-end: 3rem;
2392
2393
  }
@@ -3278,8 +3279,9 @@ fieldset[disabled] .cds--form__helper-text {
3278
3279
  transform: translateY(-50%);
3279
3280
  }
3280
3281
 
3281
- .cds--text-input__field-wrapper--slug .cds--text-input {
3282
- background-image: linear-gradient(270deg, var(--cds-ai-gradient-start-01, rgba(242, 244, 248, 0.5)) 0%, var(--cds-ai-gradient-end, rgba(255, 255, 255, 0)) 33%, transparent 100%), linear-gradient(270deg, var(--cds-ai-gradient-start-02, rgba(237, 245, 255, 0.5)) 0%, var(--cds-ai-gradient-end, rgba(255, 255, 255, 0)) 33%, transparent 100%);
3282
+ .cds--text-input__field-wrapper--slug .cds--text-input:not(:has(~ .cds--slug--revert)) {
3283
+ background-image: linear-gradient(0deg, var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.2)) 0%, 15%, var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%, transparent 100%);
3284
+ border-block-end-color: var(--cds-ai-border-strong, #4589ff);
3283
3285
  padding-inline-end: 2.5rem;
3284
3286
  }
3285
3287
 
@@ -7167,76 +7169,94 @@ a.cds--overflow-menu-options__btn::before {
7167
7169
  margin-bottom: 0;
7168
7170
  }
7169
7171
 
7172
+ /* One or two values
7173
+ * - width (first value)
7174
+ * - min-width (optional second value)
7175
+ */
7176
+ .c4p--side-panel--scrolls {
7177
+ overflow: auto;
7178
+ overflow-x: hidden;
7179
+ }
7180
+
7170
7181
  .c4p--side-panel__container {
7171
- --c4p--side-panel--subtitle-opacity: 1;
7172
- --c4p--side-panel--title-container-height: 0;
7173
- --c4p--side-panel--title-text-height: 0;
7174
- --c4p--side-panel--subtitle-container-height: 0;
7175
- --c4p--side-panel--action-bar-container-height: 0;
7176
- --c4p--side-panel--divider-opacity: 0;
7177
- --c4p--side-panel--title-y-position: 0;
7178
- --c4p--side-panel--content-bottom-padding: 4rem;
7179
- --c4p--side-panel--collapsed-title-y-position: 1rem;
7180
- --c4p--side-panel--label-text-height: 0;
7181
- --c4p--side-panel--title-padding-right: 3rem;
7182
+ --c4p--side-panel--title-stop: 1rem;
7183
+ --c4p--side-panel--scroll-animation-progress: 0;
7184
+ --c4p--side-panel--title-padding-right: 2rem;
7185
+ --c4p--side-panel--actions-height: 4rem;
7182
7186
  position: fixed;
7183
7187
  z-index: 9000;
7184
7188
  top: 3rem;
7189
+ display: grid;
7185
7190
  height: calc(100% - 3rem);
7186
7191
  box-sizing: border-box;
7187
7192
  background-color: var(--cds-layer-01, #f4f4f4);
7188
7193
  color: var(--cds-text-primary, #161616);
7194
+ grid-template-rows: 1fr auto; /* titles and content */
7189
7195
  }
7190
7196
  .c4p--side-panel__container.c4p--side-panel__container--xs {
7197
+ /* any value is single value list */
7191
7198
  width: 16rem;
7192
7199
  max-width: 100%;
7193
7200
  }
7194
- .c4p--side-panel__container.c4p--side-panel__container--xs .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation,
7195
- .c4p--side-panel__container.c4p--side-panel__container--xs .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation,
7196
- .c4p--side-panel__container.c4p--side-panel__container--xs .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation {
7201
+ .c4p--side-panel__container.c4p--side-panel__container--xs .c4p--side-panel__header.c4p--side-panel__header--no-title-animation,
7202
+ .c4p--side-panel__container.c4p--side-panel__container--xs .c4p--side-panel__header--no-title-animation .c4p--side-panel__subtitle-text {
7203
+ /* any value is single value list */
7197
7204
  width: 16rem;
7198
7205
  max-width: 100%;
7199
7206
  }
7200
7207
  .c4p--side-panel__container.c4p--side-panel__container--sm {
7208
+ /* any value is single value list */
7201
7209
  width: 20rem;
7202
7210
  max-width: 100%;
7203
7211
  }
7204
- .c4p--side-panel__container.c4p--side-panel__container--sm .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation,
7205
- .c4p--side-panel__container.c4p--side-panel__container--sm .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation,
7206
- .c4p--side-panel__container.c4p--side-panel__container--sm .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation {
7212
+ .c4p--side-panel__container.c4p--side-panel__container--sm .c4p--side-panel__header.c4p--side-panel__header--no-title-animation,
7213
+ .c4p--side-panel__container.c4p--side-panel__container--sm .c4p--side-panel__header--no-title-animation .c4p--side-panel__subtitle-text {
7214
+ /* any value is single value list */
7207
7215
  width: 20rem;
7208
7216
  max-width: 100%;
7209
7217
  }
7210
7218
  .c4p--side-panel__container.c4p--side-panel__container--md {
7219
+ /* any value is single value list */
7211
7220
  width: 30rem;
7212
7221
  max-width: 100%;
7213
7222
  }
7214
- .c4p--side-panel__container.c4p--side-panel__container--md .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation,
7215
- .c4p--side-panel__container.c4p--side-panel__container--md .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation,
7216
- .c4p--side-panel__container.c4p--side-panel__container--md .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation {
7223
+ .c4p--side-panel__container.c4p--side-panel__container--md .c4p--side-panel__header.c4p--side-panel__header--no-title-animation,
7224
+ .c4p--side-panel__container.c4p--side-panel__container--md .c4p--side-panel__header--no-title-animation .c4p--side-panel__subtitle-text {
7225
+ /* any value is single value list */
7217
7226
  width: 30rem;
7218
7227
  max-width: 100%;
7219
7228
  }
7220
7229
  .c4p--side-panel__container.c4p--side-panel__container--lg {
7230
+ /* any value is single value list */
7221
7231
  width: 40rem;
7222
7232
  max-width: 100%;
7223
7233
  }
7224
- .c4p--side-panel__container.c4p--side-panel__container--lg .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation,
7225
- .c4p--side-panel__container.c4p--side-panel__container--lg .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation,
7226
- .c4p--side-panel__container.c4p--side-panel__container--lg .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation {
7234
+ .c4p--side-panel__container.c4p--side-panel__container--lg .c4p--side-panel__header.c4p--side-panel__header--no-title-animation,
7235
+ .c4p--side-panel__container.c4p--side-panel__container--lg .c4p--side-panel__header--no-title-animation .c4p--side-panel__subtitle-text {
7236
+ /* any value is single value list */
7227
7237
  width: 40rem;
7228
7238
  max-width: 100%;
7229
7239
  }
7230
7240
  .c4p--side-panel__container.c4p--side-panel__container--2xl {
7231
- width: 75%;
7241
+ /* any value is single value list */
7242
+ width: 40rem;
7243
+ min-width: 75%;
7232
7244
  max-width: 100%;
7233
7245
  }
7234
- .c4p--side-panel__container.c4p--side-panel__container--2xl .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation,
7235
- .c4p--side-panel__container.c4p--side-panel__container--2xl .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation,
7236
- .c4p--side-panel__container.c4p--side-panel__container--2xl .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation {
7237
- width: 75%;
7246
+ .c4p--side-panel__container.c4p--side-panel__container--2xl .c4p--side-panel__header.c4p--side-panel__header--no-title-animation,
7247
+ .c4p--side-panel__container.c4p--side-panel__container--2xl .c4p--side-panel__header--no-title-animation .c4p--side-panel__subtitle-text {
7248
+ /* any value is single value list */
7249
+ width: 40rem;
7250
+ min-width: 75%;
7238
7251
  max-width: 100%;
7239
7252
  }
7253
+ .c4p--side-panel__container:not(:has(.c4p--side-panel__animated-scroll-wrapper)), .c4p--side-panel__container.c4p--side-panel__container--has-no-animated-scroll-wrapper {
7254
+ /* if the title does not scroll then we have a child scrolling section. */
7255
+ grid-template-rows: auto 1fr auto; /* titles content actions */
7256
+ }
7257
+ .c4p--side-panel__container.c4p--side-panel__container--condensed-actions {
7258
+ --c4p--side-panel--actions-height: 3rem;
7259
+ }
7240
7260
  .c4p--side-panel__container .c4p--side-panel__actions-container {
7241
7261
  width: 100%;
7242
7262
  }
@@ -7248,46 +7268,30 @@ a.cds--overflow-menu-options__btn::before {
7248
7268
  left: 0;
7249
7269
  border-right: 1px solid var(--cds-border-subtle-02, #e0e0e0);
7250
7270
  }
7251
- .c4p--side-panel__container.c4p--side-panel__container-with-action-toolbar.c4p--side-panel__with-condensed-header .c4p--side-panel__title-container {
7252
- /* stylelint-disable-next-line max-nesting-depth */
7253
- }
7254
- .c4p--side-panel__container.c4p--side-panel__container-with-action-toolbar.c4p--side-panel__with-condensed-header .c4p--side-panel__title-container::before {
7255
- content: none;
7256
- }
7257
- .c4p--side-panel__container.c4p--side-panel__container-with-action-toolbar.c4p--side-panel__with-condensed-header .c4p--side-panel__action-toolbar {
7258
- /* stylelint-disable-next-line max-nesting-depth */
7259
- }
7260
- .c4p--side-panel__container.c4p--side-panel__container-with-action-toolbar.c4p--side-panel__with-condensed-header .c4p--side-panel__action-toolbar::before {
7261
- position: absolute;
7262
- bottom: 0;
7263
- left: 0;
7264
- width: 100%;
7265
- height: 1px;
7266
- background-color: var(--cds-border-subtle-02, #e0e0e0);
7267
- content: "";
7268
- opacity: var(--c4p--side-panel--divider-opacity);
7269
- }
7270
- .c4p--side-panel__container.c4p--side-panel__container-without-overlay {
7271
+ .c4p--side-panel__container.c4p--side-panel__container--slide-in, .c4p--side-panel__container.c4p--side-panel__container:not(:has(+ .c4p--side-panel__overlay)), .c4p--side-panel__container.c4p--side-panel__container--has-no-overlay {
7271
7272
  box-shadow: 0 0.125rem 0.25rem var(--cds-overlay, rgba(22, 22, 22, 0.5));
7272
7273
  }
7273
- .c4p--side-panel__container .c4p--side-panel__title-container {
7274
+ .c4p--side-panel__container .c4p--side-panel__header {
7275
+ --c4p--side-panel--title-padding-bottom: 1rem;
7274
7276
  position: sticky;
7275
7277
  z-index: 4;
7276
- top: 0;
7278
+ /* stylelint-disable-next-line carbon/layout-token-use */
7279
+ top: calc(-1px * var(--c4p--side-panel--scroll-animation-distance));
7277
7280
  padding: 1rem;
7281
+ padding-bottom: 0;
7278
7282
  background-color: var(--cds-layer-01, #f4f4f4);
7279
7283
  /* stylelint-disable-next-line max-nesting-depth */
7280
7284
  }
7281
- .c4p--side-panel__container .c4p--side-panel__title-container:has(~ .c4p--side-panel__subtitle-text) {
7282
- padding-bottom: 0.5rem;
7285
+ .c4p--side-panel__container .c4p--side-panel__header:has(.c4p--side-panel__subtitle-text), .c4p--side-panel__container .c4p--side-panel__header.c4p--side-panel__header--has-subtitle {
7286
+ --c4p--side-panel--title-padding-bottom: 0.5rem;
7283
7287
  }
7284
- .c4p--side-panel__container .c4p--side-panel__title-container:has(.c4p--side-panel__navigation-back-button) {
7288
+ .c4p--side-panel__container .c4p--side-panel__header:has(.c4p--side-panel__navigation-back-button), .c4p--side-panel__container .c4p--side-panel__header.c4p--side-panel__header--has-navigation-back {
7285
7289
  padding-top: 2rem;
7286
7290
  }
7287
- .c4p--side-panel__container .c4p--side-panel__title-container:has(.c4p--side-panel__navigation-back-button.cds--btn--md) {
7291
+ .c4p--side-panel__container .c4p--side-panel__header:has(.c4p--side-panel__navigation-back-button.cds--btn--md), .c4p--side-panel__container .c4p--side-panel__header.c4p--side-panel__header--has-navigation-back.cds--btn--md {
7288
7292
  padding-top: 2.5rem;
7289
7293
  }
7290
- .c4p--side-panel__container .c4p--side-panel__title-container::before {
7294
+ .c4p--side-panel__container .c4p--side-panel__header::before {
7291
7295
  position: absolute;
7292
7296
  bottom: 0;
7293
7297
  left: 0;
@@ -7295,47 +7299,56 @@ a.cds--overflow-menu-options__btn::before {
7295
7299
  height: 1px;
7296
7300
  background-color: var(--cds-border-subtle-02, #e0e0e0);
7297
7301
  content: "";
7298
- opacity: var(--c4p--side-panel--divider-opacity);
7302
+ opacity: var(--c4p--side-panel--scroll-animation-progress);
7303
+ z-index: 9;
7299
7304
  }
7300
- .c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__title-container--reduced-motion {
7305
+ .c4p--side-panel__container .c4p--side-panel__header.c4p--side-panel__header--no-title-animation {
7306
+ position: relative;
7307
+ top: 0;
7308
+ }
7309
+ .c4p--side-panel__container .c4p--side-panel__header.c4p--side-panel__header--no-title-animation::before {
7310
+ opacity: 1;
7311
+ }
7312
+ .c4p--side-panel__container .c4p--side-panel__header.c4p--side-panel__header--reduced-motion {
7301
7313
  z-index: 5;
7302
7314
  border-bottom: 1px solid var(--cds-border-subtle-02, #e0e0e0);
7303
7315
  margin-bottom: 1rem;
7304
7316
  }
7305
- .c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__title-container--reduced-motion.c4p--side-panel__title-container--no-title-animation {
7317
+ .c4p--side-panel__container .c4p--side-panel__header.c4p--side-panel__header--reduced-motion.c4p--side-panel__header--no-title-animation {
7306
7318
  border-bottom: 0;
7307
7319
  margin-bottom: 0;
7308
7320
  }
7309
- .c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__on-detail-step .c4p--side-panel__collapsed-title-text {
7310
- top: 2rem;
7311
- }
7312
- .c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__on-detail-step .c4p--side-panel__navigation-back-button.cds--btn--md ~ .c4p--side-panel__collapsed-title-text {
7313
- top: 2.5rem;
7321
+ .c4p--side-panel__container .c4p--side-panel__header.c4p--side-panel--on-detail-step .c4p--side-panel__collapsed-title-text {
7322
+ top: 1rem;
7314
7323
  }
7315
- .c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__title-container-without-title {
7316
- padding: 0;
7324
+ .c4p--side-panel__container .c4p--side-panel__header.c4p--side-panel--on-detail-step .c4p--side-panel__navigation-back-button.cds--btn--md ~ .c4p--side-panel__collapsed-title-text {
7325
+ top: 1.5rem;
7317
7326
  }
7318
- .c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__title-container-without-title.c4p--side-panel__on-detail-step-without-title {
7327
+ .c4p--side-panel__container .c4p--side-panel__header.c4p--side-panel--on-detail-step:not(:has(.c4p--side-panel__title-text)) {
7319
7328
  height: calc(2.5rem + 0.25rem);
7320
7329
  padding: 1rem 1rem 0.5rem 1rem;
7321
7330
  }
7322
- .c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__title-container-without-title::before {
7331
+ .c4p--side-panel__container .c4p--side-panel__header:not(:has(.c4p--side-panel__title-text))::before, .c4p--side-panel__container .c4p--side-panel__header.c4p--side-panel__header--has-no-title::before {
7323
7332
  background-color: transparent;
7324
7333
  }
7325
- .c4p--side-panel__container.c4p--side-panel__container--has-slug {
7326
- --c4p--side-panel--title-padding-right: 6rem;
7327
- }
7328
- .c4p--side-panel__container.c4p--side-panel__container-is-animating {
7329
- pointer-events: none;
7334
+ .c4p--side-panel__container.c4p--side-panel__container:has(.c4p--side-panel__action-toolbar), .c4p--side-panel__container.c4p--side-panel__container--has-action-toolbar, .c4p--side-panel__container.c4p--side-panel__container--has-slug {
7335
+ --c4p--side-panel--title-padding-right: 4rem;
7330
7336
  }
7331
- .c4p--side-panel__container.c4p--side-panel__container-is-animating .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation {
7332
- top: 0;
7337
+ .c4p--side-panel__container.c4p--side-panel__container:has(.c4p--side-panel__action-toolbar).c4p--side-panel__container--has-slug, .c4p--side-panel__container.c4p--side-panel__container--has-action-toolbar.c4p--side-panel__container--has-slug {
7338
+ --c4p--side-panel--title-padding-right: 5rem;
7333
7339
  }
7334
- .c4p--side-panel__container.c4p--side-panel__container-is-animating .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation {
7335
- top: var(--c4p--side-panel--title-text-height);
7340
+ .c4p--side-panel__container .c4p--side-panel__animated-scroll-wrapper {
7341
+ display: grid;
7342
+ grid-template-rows: auto 1fr;
7336
7343
  }
7337
- .c4p--side-panel__container.c4p--side-panel__container-is-animating .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation {
7338
- top: calc(var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--subtitle-container-height));
7344
+ .c4p--side-panel__container .c4p--side-panel__title {
7345
+ position: sticky;
7346
+ z-index: 4;
7347
+ /* stylelint-disable-next-line carbon/layout-token-use */
7348
+ top: var(--c4p--side-panel--title-stop);
7349
+ /* border-bottom used instead of padding which wrapped text shows through */
7350
+ border-bottom: var(--c4p--side-panel--title-padding-bottom) solid transparent;
7351
+ background-color: var(--cds-layer-01, #f4f4f4);
7339
7352
  }
7340
7353
  .c4p--side-panel__container .c4p--side-panel__title-text {
7341
7354
  font-size: var(--cds-heading-03-font-size, 1.25rem);
@@ -7348,12 +7361,14 @@ a.cds--overflow-menu-options__btn::before {
7348
7361
  padding-right: var(--c4p--side-panel--title-padding-right);
7349
7362
  -webkit-box-orient: vertical;
7350
7363
  -webkit-line-clamp: 2;
7351
- position: inherit;
7352
- z-index: 4;
7353
- margin-bottom: calc(-1 * var(--c4p--side-panel--label-text-height));
7354
- background-color: var(--cds-layer-01, #f4f4f4);
7355
- opacity: var(--c4p--side-panel--subtitle-opacity);
7356
- transform: translateY(var(--c4p--side-panel--title-y-position));
7364
+ opacity: calc(1 - var(--c4p--side-panel--scroll-animation-progress));
7365
+ }
7366
+ .c4p--side-panel__container .c4p--side-panel__title--no-label .c4p--side-panel__title-text {
7367
+ /* stylelint-disable-next-line carbon/layout-token-use */
7368
+ transform: translateY(calc(-1 * 1rem * var(--c4p--side-panel--scroll-animation-progress)));
7369
+ }
7370
+ .c4p--side-panel__container .c4p--side-panel__header--no-title-animation .c4p--side-panel__title-text {
7371
+ position: static;
7357
7372
  }
7358
7373
  .c4p--side-panel__container .c4p--side-panel__label-text {
7359
7374
  font-size: var(--cds-label-01-font-size, 0.75rem);
@@ -7362,9 +7377,8 @@ a.cds--overflow-menu-options__btn::before {
7362
7377
  letter-spacing: var(--cds-label-01-letter-spacing, 0.32px);
7363
7378
  overflow: hidden;
7364
7379
  padding-right: var(--c4p--side-panel--title-padding-right);
7365
- opacity: var(--c4p--side-panel--subtitle-opacity);
7380
+ opacity: calc(1 - var(--c4p--side-panel--scroll-animation-progress));
7366
7381
  text-overflow: ellipsis;
7367
- transform: translateY(var(--c4p--side-panel--title-y-position));
7368
7382
  white-space: nowrap;
7369
7383
  }
7370
7384
  .c4p--side-panel__container .c4p--side-panel__collapsed-title-text {
@@ -7379,9 +7393,13 @@ a.cds--overflow-menu-options__btn::before {
7379
7393
  -webkit-box-orient: vertical;
7380
7394
  -webkit-line-clamp: 2;
7381
7395
  position: absolute;
7382
- top: 1rem;
7383
- opacity: var(--c4p--side-panel--divider-opacity);
7384
- transform: translateY(var(--c4p--side-panel--collapsed-title-y-position));
7396
+ /* stylelint-disable-next-line carbon/layout-token-use */
7397
+ top: 0;
7398
+ opacity: var(--c4p--side-panel--scroll-animation-progress);
7399
+ }
7400
+ .c4p--side-panel__container .c4p--side-panel__title--no-label .c4p--side-panel__collapsed-title-text {
7401
+ /* stylelint-disable-next-line carbon/layout-token-use */
7402
+ transform: translateY(calc(1rem * (1 - var(--c4p--side-panel--scroll-animation-progress))));
7385
7403
  }
7386
7404
  .c4p--side-panel__container .c4p--side-panel__subtitle-text {
7387
7405
  font-size: var(--cds-body-compact-01-font-size, 0.875rem);
@@ -7389,75 +7407,41 @@ a.cds--overflow-menu-options__btn::before {
7389
7407
  line-height: var(--cds-body-compact-01-line-height, 1.28572);
7390
7408
  letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
7391
7409
  overflow: hidden;
7392
- padding: 0 3rem 1rem 1rem;
7410
+ padding-right: var(--c4p--side-panel--title-padding-right);
7411
+ padding-bottom: 1rem;
7393
7412
  -webkit-box-orient: vertical;
7394
7413
  -webkit-line-clamp: 3;
7395
- opacity: var(--c4p--side-panel--subtitle-opacity);
7414
+ opacity: calc(1 - var(--c4p--side-panel--scroll-animation-progress));
7396
7415
  }
7397
- .c4p--side-panel__container .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation {
7398
- position: fixed;
7416
+ .c4p--side-panel__container .c4p--side-panel__header--no-title-animation .c4p--side-panel__subtitle-text {
7399
7417
  z-index: 2;
7400
- top: calc(var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--label-text-height));
7401
7418
  background-color: var(--cds-layer-01, #f4f4f4);
7402
7419
  }
7403
- .c4p--side-panel__container .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation.c4p--side-panel__subtitle-text-is-animating {
7404
- top: var(--c4p--side-panel--title-text-height);
7405
- }
7406
- .c4p--side-panel__container .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-without-title {
7420
+ .c4p--side-panel__container .c4p--side-panel__title-text + .c4p--side-panel__subtitle-text {
7407
7421
  padding-top: 1rem;
7408
- padding-right: 3rem;
7409
- }
7410
- .c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation.c4p--side-panel__title-container-is-animating {
7411
- top: 0;
7412
- }
7413
- .c4p--side-panel__container .c4p--side-panel__title-container.c4p--side-panel__title-container--no-title-animation {
7414
- position: fixed;
7415
- height: calc(var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--label-text-height));
7416
7422
  }
7417
7423
  .c4p--side-panel__container .c4p--side-panel__inner-content {
7418
- overflow: auto;
7419
- height: calc(100vh - 3rem);
7420
- margin-top: calc(var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--subtitle-container-height) + var(--c4p--side-panel--action-bar-container-height) + var(--c4p--side-panel--label-text-height));
7421
- overflow-x: hidden;
7424
+ padding: 1rem;
7425
+ padding-top: 0;
7422
7426
  }
7423
- .c4p--side-panel__container.c4p--side-panel__container--has-slug .c4p--side-panel__inner-content {
7424
- background-image: linear-gradient(0deg, var(--cds-ai-gradient-start-01, rgba(242, 244, 248, 0.5)) 0%, var(--cds-ai-gradient-end, rgba(255, 255, 255, 0)) 33%, transparent 100%), linear-gradient(0deg, var(--cds-ai-gradient-start-02, rgba(237, 245, 255, 0.5)) 0%, var(--cds-ai-gradient-end, rgba(255, 255, 255, 0)) 33%, transparent 100%);
7427
+ .c4p--side-panel__container .c4p--side-panel__header:has(.c4p--side-panel__action-toolbar) + .c4p--side-panel__inner-content,
7428
+ .c4p--side-panel__container .c4p--side-panel__header--has-action-toolbar + .c4p--side-panel__inner-content {
7429
+ padding-top: 0.5rem;
7425
7430
  }
7426
- .c4p--side-panel__container .c4p--side-panel__inner-content-with-actions {
7427
- height: calc(100vh - (var(--c4p--side-panel--content-bottom-padding) + 2rem));
7431
+ .c4p--side-panel__container.c4p--side-panel__container--has-slug .c4p--side-panel__inner-content {
7432
+ background-image: linear-gradient(0deg, var(--cds-ai-inner-shadow, rgba(69, 137, 255, 0.2)) 0%, 15%, var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%, transparent 100%);
7433
+ border-block-end-color: var(--cds-ai-border-strong, #4589ff);
7428
7434
  }
7429
- .c4p--side-panel__container .c4p--side-panel__inner-content.c4p--side-panel__static-inner-content {
7430
- height: calc(100vh - (var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--subtitle-container-height) + var(--c4p--side-panel--action-bar-container-height)) + -1 * (3rem + 4rem));
7435
+ .c4p--side-panel__container .c4p--side-panel__inner-content.c4p--side-panel__inner-content--static {
7431
7436
  padding-top: 1rem;
7432
7437
  }
7433
- .c4p--side-panel__container .c4p--side-panel__inner-content.c4p--side-panel__static-inner-content-no-actions {
7434
- height: calc(100vh - (var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--subtitle-container-height) + var(--c4p--side-panel--action-bar-container-height) + var(--c4p--side-panel--label-text-height)));
7435
- }
7436
- .c4p--side-panel__container .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation {
7437
- position: fixed;
7438
- top: calc(var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--subtitle-container-height));
7439
- width: 100%;
7440
- border-bottom: 1px solid var(--cds-layer-active-01, #c6c6c6);
7441
- }
7442
- .c4p--side-panel__container .c4p--side-panel__action-toolbar.c4p--side-panel__action-toolbar-no-animation + .c4p--side-panel__body-content {
7443
- margin-top: calc(var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--subtitle-container-height) + 3rem);
7444
- }
7445
- .c4p--side-panel__container .c4p--side-panel__subtitle-text.c4p--side-panel__subtitle-text-no-animation.c4p--side-panel__subtitle-text-no-animation-no-action-toolbar {
7446
- border-bottom: 1px solid var(--cds-layer-active-01, #c6c6c6);
7447
- margin-bottom: 1rem;
7448
- }
7449
7438
  .c4p--side-panel__container .c4p--side-panel__action-toolbar {
7450
7439
  position: sticky;
7451
7440
  z-index: 4;
7452
- /* stylelint-disable-next-line carbon/layout-token-use */
7453
- top: var(--c4p--side-panel--title-height);
7454
7441
  display: flex;
7455
7442
  align-items: center;
7456
7443
  justify-content: flex-start;
7457
- padding: 0 1rem;
7458
- margin-bottom: 0.5rem;
7459
7444
  background-color: var(--cds-layer-01, #f4f4f4);
7460
- transition: transform 150ms cubic-bezier(0.2, 0, 0.38, 0.9);
7461
7445
  }
7462
7446
  .c4p--side-panel__container .c4p--side-panel__action-toolbar-leading-button {
7463
7447
  margin-right: 0.5rem;
@@ -7489,21 +7473,13 @@ a.cds--overflow-menu-options__btn::before {
7489
7473
  }
7490
7474
  .c4p--side-panel__container .c4p--side-panel__slug-and-close {
7491
7475
  position: fixed;
7492
- z-index: 5;
7476
+ z-index: 10; /* must be higher than title container border bottom */
7493
7477
  top: 0;
7494
7478
  right: 0;
7495
7479
  display: flex;
7496
7480
  }
7497
- .c4p--side-panel__container .c4p--side-panel__body-content {
7498
- padding: 1rem;
7499
- padding-top: 0;
7500
- }
7501
- .c4p--side-panel__container.c4p--side-panel__container-is-animating .c4p--side-panel__actions-container.c4p--action-set--2xl {
7502
- width: 100%;
7503
- max-width: 100%;
7504
- }
7505
7481
  .c4p--side-panel__container .c4p--side-panel__actions-container {
7506
- position: fixed;
7482
+ position: sticky;
7507
7483
  bottom: 0;
7508
7484
  border-top: 1px solid var(--cds-border-subtle-02, #e0e0e0);
7509
7485
  background-color: var(--cds-layer-01, #f4f4f4);
@@ -7523,13 +7499,11 @@ a.cds--overflow-menu-options__btn::before {
7523
7499
  width: 25%;
7524
7500
  }
7525
7501
  }
7526
- .c4p--side-panel__container .c4p--side-panel__actions-container .c4p--action-set__action-button {
7527
- height: 4rem;
7528
- }
7529
- .c4p--side-panel__container .c4p--side-panel__actions-container.c4p--side-panel__actions-container-condensed .c4p--action-set__action-button {
7530
- height: 3rem;
7502
+ .c4p--side-panel__container .c4p--side-panel__actions-container .c4p--action-set__action-button.c4p--action-set__action-button {
7503
+ height: var(--c4p--side-panel--actions-height);
7531
7504
  }
7532
7505
  .c4p--side-panel__container.c4p--side-panel__container.c4p--side-panel__container--xs .c4p--side-panel__actions-container.c4p--action-set--sm {
7506
+ /* any value is single value list */
7533
7507
  width: 16rem;
7534
7508
  max-width: 100%;
7535
7509
  }
@@ -7644,14 +7618,14 @@ a.cds--overflow-menu-options__btn::before {
7644
7618
  }
7645
7619
 
7646
7620
  .c4p--create-side-panel.c4p--side-panel__container--2xl .c4p--side-panel__title-text {
7647
- width: calc(75% - 1rem);
7648
- padding-right: calc(75% * 0.2 - 1rem);
7621
+ width: calc(40rem 75% - 1rem);
7622
+ padding-right: calc(40rem 75% * 0.2 - 1rem);
7649
7623
  margin-bottom: 0.25rem;
7650
7624
  }
7651
7625
 
7652
7626
  .c4p--create-side-panel.c4p--side-panel__container--2xl .c4p--side-panel__subtitle-text {
7653
- width: calc(75% - 1rem);
7654
- padding-right: calc(75% * 0.2 - 1rem);
7627
+ width: calc(40rem 75% - 1rem);
7628
+ padding-right: calc(40rem 75% * 0.2 - 1rem);
7655
7629
  padding-bottom: 1rem;
7656
7630
  border-bottom: 1px solid var(--cds-layer-accent-01, #e0e0e0);
7657
7631
  color: var(--cds-text-secondary, #525252);
@@ -8352,6 +8326,7 @@ a.cds--overflow-menu-options__btn::before {
8352
8326
  font-weight: var(--cds-body-compact-01-font-weight, 400);
8353
8327
  line-height: var(--cds-body-compact-01-line-height, 1.28572);
8354
8328
  letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
8329
+ flex: 1;
8355
8330
  }
8356
8331
 
8357
8332
  .cds--radio-button__appearance {
@@ -8734,7 +8709,7 @@ a.cds--overflow-menu-options__btn::before {
8734
8709
  }
8735
8710
 
8736
8711
  .c4p--card .cds--slug {
8737
- background: linear-gradient(0deg, var(--cds-slug-callout-aura-start, rgba(237, 245, 255, 0.6)) 0%, var(--cds-slug-callout-aura-end, rgba(255, 255, 255, 0)) 50%, transparent 50%), linear-gradient(180deg, var(--cds-slug-callout-gradient-top, rgba(244, 244, 244, 0.85)) 0%, var(--cds-slug-callout-gradient-bottom, rgba(224, 224, 224, 0.85)) 100%) rgba(0, 0, 0, 0.01);
8712
+ background: linear-gradient(to top, var(--cds-ai-aura-start, rgba(69, 137, 255, 0.1)) 0%, var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%) padding-box, linear-gradient(to top, var(--cds-background, #ffffff), var(--cds-background, #ffffff)) padding-box, linear-gradient(to bottom, var(--cds-ai-border-start, #78a9ff), var(--cds-ai-border-end, #d0e2ff)) border-box, linear-gradient(to top, var(--cds-background, #ffffff), var(--cds-background, #ffffff)) border-box;
8738
8713
  position: absolute;
8739
8714
  top: 1rem;
8740
8715
  right: 1rem;
@@ -8763,7 +8738,7 @@ a.cds--overflow-menu-options__btn::before {
8763
8738
  }
8764
8739
 
8765
8740
  .c4p--card--has-slug {
8766
- background: linear-gradient(0deg, var(--cds-slug-callout-aura-start, rgba(237, 245, 255, 0.6)) 0%, var(--cds-slug-callout-aura-end, rgba(255, 255, 255, 0)) 50%, transparent 50%), linear-gradient(180deg, var(--cds-slug-callout-gradient-top, rgba(244, 244, 244, 0.85)) 0%, var(--cds-slug-callout-gradient-bottom, rgba(224, 224, 224, 0.85)) 100%) rgba(0, 0, 0, 0.01);
8741
+ background: linear-gradient(to top, var(--cds-ai-aura-start, rgba(69, 137, 255, 0.1)) 0%, var(--cds-ai-aura-end, rgba(255, 255, 255, 0)) 50%) padding-box, linear-gradient(to top, var(--cds-background, #ffffff), var(--cds-background, #ffffff)) padding-box, linear-gradient(to bottom, var(--cds-ai-border-start, #78a9ff), var(--cds-ai-border-end, #d0e2ff)) border-box, linear-gradient(to top, var(--cds-background, #ffffff), var(--cds-background, #ffffff)) border-box;
8767
8742
  border: 1px solid var(--cds-border-tile);
8768
8743
  }
8769
8744
 
@@ -9807,9 +9782,16 @@ button.c4p--add-select__global-filter-toggle--open {
9807
9782
  }
9808
9783
  }
9809
9784
  .c4p--notifications-panel__container {
9785
+ --cds-ai-aura-end: rgba(0, 0, 0, 0);
9786
+ --cds-ai-aura-start: rgba(69, 137, 255, 0.1);
9787
+ --cds-ai-border-end: rgba(166, 200, 255, 0.24);
9788
+ --cds-ai-border-start: #4589ff;
9789
+ --cds-ai-border-strong: #78a9ff;
9790
+ --cds-ai-drop-shadow: rgba(15, 98, 254, 0.32);
9810
9791
  --cds-ai-gradient-end: rgba(38, 38, 38, 0);
9811
9792
  --cds-ai-gradient-start-01: rgba(208, 226, 255, 0.2);
9812
9793
  --cds-ai-gradient-start-02: transparent;
9794
+ --cds-ai-inner-shadow: rgba(69, 137, 255, 0.2);
9813
9795
  --cds-background: #161616;
9814
9796
  --cds-background-active: rgba(141, 141, 141, 0.4);
9815
9797
  --cds-background-brand: #0f62fe;
@@ -9825,11 +9807,11 @@ button.c4p--add-select__global-filter-toggle--open {
9825
9807
  --cds-border-strong-02: #8d8d8d;
9826
9808
  --cds-border-strong-03: #a8a8a8;
9827
9809
  --cds-border-subtle-00: #393939;
9828
- --cds-border-subtle-01: #393939;
9829
- --cds-border-subtle-02: #525252;
9810
+ --cds-border-subtle-01: #525252;
9811
+ --cds-border-subtle-02: #6f6f6f;
9830
9812
  --cds-border-subtle-03: #6f6f6f;
9831
- --cds-border-subtle-selected-01: #525252;
9832
- --cds-border-subtle-selected-02: #6f6f6f;
9813
+ --cds-border-subtle-selected-01: #6f6f6f;
9814
+ --cds-border-subtle-selected-02: #8d8d8d;
9833
9815
  --cds-border-subtle-selected-03: #8d8d8d;
9834
9816
  --cds-border-tile-01: #525252;
9835
9817
  --cds-border-tile-02: #6f6f6f;
@@ -9891,20 +9873,26 @@ button.c4p--add-select__global-filter-toggle--open {
9891
9873
  --cds-skeleton-element: #393939;
9892
9874
  --cds-slug-background: #c6c6c6;
9893
9875
  --cds-slug-background-hover: #e0e0e0;
9894
- --cds-slug-callout-aura-end: rgba(22, 22, 22, 0);
9876
+ --cds-slug-callout-aura-end: rgba(0, 0, 0, 0);
9895
9877
  --cds-slug-callout-aura-end-hover-01: rgba(22, 22, 22, 0);
9896
9878
  --cds-slug-callout-aura-end-hover-02: transparent;
9897
9879
  --cds-slug-callout-aura-end-selected: rgba(22, 22, 22, 0);
9898
- --cds-slug-callout-aura-start: rgba(208, 226, 255, 0.2);
9880
+ --cds-slug-callout-aura-start: rgba(69, 137, 255, 0.1);
9899
9881
  --cds-slug-callout-aura-start-hover-01: rgba(184, 211, 255, 0.3);
9900
9882
  --cds-slug-callout-aura-start-hover-02: transparent;
9901
9883
  --cds-slug-callout-aura-start-selected: rgba(208, 226, 255, 0.2);
9884
+ --cds-slug-callout-caret-bottom: #3d4655;
9885
+ --cds-slug-callout-caret-bottom-background: #213250;
9886
+ --cds-slug-callout-caret-bottom-background-actions: #192436;
9887
+ --cds-slug-callout-caret-center: #3f68af;
9902
9888
  --cds-slug-callout-gradient-bottom: rgba(38, 38, 38, 0.85);
9903
9889
  --cds-slug-callout-gradient-bottom-hover: rgba(71, 71, 71, 0.55);
9904
9890
  --cds-slug-callout-gradient-bottom-selected: rgba(71, 71, 71, 0.85);
9905
9891
  --cds-slug-callout-gradient-top: rgba(22, 22, 22, 0.85);
9906
9892
  --cds-slug-callout-gradient-top-hover: rgba(57, 57, 57, 0.55);
9907
9893
  --cds-slug-callout-gradient-top-selected: rgba(57, 57, 57, 0.85);
9894
+ --cds-slug-callout-shadow-outer-01: rgba(0, 45, 156, 0.25);
9895
+ --cds-slug-callout-shadow-outer-02: rgba(0, 0, 0, 0.65);
9908
9896
  --cds-slug-gradient: #8d8d8d linear-gradient(135deg, #f4f4f4 0%, rgba(255, 255, 255, 0) 100%);
9909
9897
  --cds-slug-gradient-hover: #a8a8a8 linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
9910
9898
  --cds-slug-hollow-hover: #b5b5b5;
@@ -14504,9 +14492,16 @@ button.c4p--add-select__global-filter-toggle--open {
14504
14492
  despite of which carbon theme the user has.
14505
14493
  */
14506
14494
  .c4p--web-terminal {
14495
+ --cds-ai-aura-end: rgba(0, 0, 0, 0);
14496
+ --cds-ai-aura-start: rgba(69, 137, 255, 0.1);
14497
+ --cds-ai-border-end: rgba(166, 200, 255, 0.24);
14498
+ --cds-ai-border-start: #4589ff;
14499
+ --cds-ai-border-strong: #78a9ff;
14500
+ --cds-ai-drop-shadow: rgba(15, 98, 254, 0.32);
14507
14501
  --cds-ai-gradient-end: rgba(38, 38, 38, 0);
14508
14502
  --cds-ai-gradient-start-01: rgba(208, 226, 255, 0.2);
14509
14503
  --cds-ai-gradient-start-02: transparent;
14504
+ --cds-ai-inner-shadow: rgba(69, 137, 255, 0.2);
14510
14505
  --cds-background: #262626;
14511
14506
  --cds-background-active: rgba(141, 141, 141, 0.4);
14512
14507
  --cds-background-brand: #0f62fe;
@@ -14522,11 +14517,11 @@ button.c4p--add-select__global-filter-toggle--open {
14522
14517
  --cds-border-strong-02: #a8a8a8;
14523
14518
  --cds-border-strong-03: #c6c6c6;
14524
14519
  --cds-border-subtle-00: #525252;
14525
- --cds-border-subtle-01: #525252;
14526
- --cds-border-subtle-02: #6f6f6f;
14520
+ --cds-border-subtle-01: #6f6f6f;
14521
+ --cds-border-subtle-02: #8d8d8d;
14527
14522
  --cds-border-subtle-03: #8d8d8d;
14528
- --cds-border-subtle-selected-01: #6f6f6f;
14529
- --cds-border-subtle-selected-02: #8d8d8d;
14523
+ --cds-border-subtle-selected-01: #8d8d8d;
14524
+ --cds-border-subtle-selected-02: #a8a8a8;
14530
14525
  --cds-border-subtle-selected-03: #a8a8a8;
14531
14526
  --cds-border-tile-01: #6f6f6f;
14532
14527
  --cds-border-tile-02: #8d8d8d;
@@ -14588,20 +14583,26 @@ button.c4p--add-select__global-filter-toggle--open {
14588
14583
  --cds-skeleton-element: #525252;
14589
14584
  --cds-slug-background: #c6c6c6;
14590
14585
  --cds-slug-background-hover: #e0e0e0;
14591
- --cds-slug-callout-aura-end: rgba(22, 22, 22, 0);
14586
+ --cds-slug-callout-aura-end: rgba(0, 0, 0, 0);
14592
14587
  --cds-slug-callout-aura-end-hover-01: rgba(22, 22, 22, 0);
14593
14588
  --cds-slug-callout-aura-end-hover-02: transparent;
14594
14589
  --cds-slug-callout-aura-end-selected: rgba(22, 22, 22, 0);
14595
- --cds-slug-callout-aura-start: rgba(208, 226, 255, 0.2);
14590
+ --cds-slug-callout-aura-start: rgba(69, 137, 255, 0.1);
14596
14591
  --cds-slug-callout-aura-start-hover-01: rgba(184, 211, 255, 0.3);
14597
14592
  --cds-slug-callout-aura-start-hover-02: transparent;
14598
14593
  --cds-slug-callout-aura-start-selected: rgba(208, 226, 255, 0.2);
14594
+ --cds-slug-callout-caret-bottom: #465060;
14595
+ --cds-slug-callout-caret-bottom-background: #2d3f5c;
14596
+ --cds-slug-callout-caret-bottom-background-actions: #253042;
14597
+ --cds-slug-callout-caret-center: #456fb5;
14599
14598
  --cds-slug-callout-gradient-bottom: rgba(38, 38, 38, 0.85);
14600
14599
  --cds-slug-callout-gradient-bottom-hover: rgba(71, 71, 71, 0.55);
14601
14600
  --cds-slug-callout-gradient-bottom-selected: rgba(71, 71, 71, 0.85);
14602
14601
  --cds-slug-callout-gradient-top: rgba(22, 22, 22, 0.85);
14603
14602
  --cds-slug-callout-gradient-top-hover: rgba(57, 57, 57, 0.55);
14604
14603
  --cds-slug-callout-gradient-top-selected: rgba(57, 57, 57, 0.85);
14604
+ --cds-slug-callout-shadow-outer-01: rgba(0, 45, 156, 0.25);
14605
+ --cds-slug-callout-shadow-outer-02: rgba(0, 0, 0, 0.65);
14605
14606
  --cds-slug-gradient: #8d8d8d linear-gradient(135deg, #f4f4f4 0%, rgba(255, 255, 255, 0) 100%);
14606
14607
  --cds-slug-gradient-hover: #a8a8a8 linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
14607
14608
  --cds-slug-hollow-hover: #b5b5b5;
@@ -14963,9 +14964,16 @@ button.c4p--add-select__global-filter-toggle--open {
14963
14964
  }
14964
14965
 
14965
14966
  .c4p--web-terminal__documentation-overflow {
14967
+ --cds-ai-aura-end: rgba(0, 0, 0, 0);
14968
+ --cds-ai-aura-start: rgba(69, 137, 255, 0.1);
14969
+ --cds-ai-border-end: rgba(166, 200, 255, 0.24);
14970
+ --cds-ai-border-start: #4589ff;
14971
+ --cds-ai-border-strong: #78a9ff;
14972
+ --cds-ai-drop-shadow: rgba(15, 98, 254, 0.32);
14966
14973
  --cds-ai-gradient-end: rgba(38, 38, 38, 0);
14967
14974
  --cds-ai-gradient-start-01: rgba(208, 226, 255, 0.2);
14968
14975
  --cds-ai-gradient-start-02: transparent;
14976
+ --cds-ai-inner-shadow: rgba(69, 137, 255, 0.2);
14969
14977
  --cds-background: #161616;
14970
14978
  --cds-background-active: rgba(141, 141, 141, 0.4);
14971
14979
  --cds-background-brand: #0f62fe;
@@ -14981,11 +14989,11 @@ button.c4p--add-select__global-filter-toggle--open {
14981
14989
  --cds-border-strong-02: #8d8d8d;
14982
14990
  --cds-border-strong-03: #a8a8a8;
14983
14991
  --cds-border-subtle-00: #393939;
14984
- --cds-border-subtle-01: #393939;
14985
- --cds-border-subtle-02: #525252;
14992
+ --cds-border-subtle-01: #525252;
14993
+ --cds-border-subtle-02: #6f6f6f;
14986
14994
  --cds-border-subtle-03: #6f6f6f;
14987
- --cds-border-subtle-selected-01: #525252;
14988
- --cds-border-subtle-selected-02: #6f6f6f;
14995
+ --cds-border-subtle-selected-01: #6f6f6f;
14996
+ --cds-border-subtle-selected-02: #8d8d8d;
14989
14997
  --cds-border-subtle-selected-03: #8d8d8d;
14990
14998
  --cds-border-tile-01: #525252;
14991
14999
  --cds-border-tile-02: #6f6f6f;
@@ -15047,20 +15055,26 @@ button.c4p--add-select__global-filter-toggle--open {
15047
15055
  --cds-skeleton-element: #393939;
15048
15056
  --cds-slug-background: #c6c6c6;
15049
15057
  --cds-slug-background-hover: #e0e0e0;
15050
- --cds-slug-callout-aura-end: rgba(22, 22, 22, 0);
15058
+ --cds-slug-callout-aura-end: rgba(0, 0, 0, 0);
15051
15059
  --cds-slug-callout-aura-end-hover-01: rgba(22, 22, 22, 0);
15052
15060
  --cds-slug-callout-aura-end-hover-02: transparent;
15053
15061
  --cds-slug-callout-aura-end-selected: rgba(22, 22, 22, 0);
15054
- --cds-slug-callout-aura-start: rgba(208, 226, 255, 0.2);
15062
+ --cds-slug-callout-aura-start: rgba(69, 137, 255, 0.1);
15055
15063
  --cds-slug-callout-aura-start-hover-01: rgba(184, 211, 255, 0.3);
15056
15064
  --cds-slug-callout-aura-start-hover-02: transparent;
15057
15065
  --cds-slug-callout-aura-start-selected: rgba(208, 226, 255, 0.2);
15066
+ --cds-slug-callout-caret-bottom: #3d4655;
15067
+ --cds-slug-callout-caret-bottom-background: #213250;
15068
+ --cds-slug-callout-caret-bottom-background-actions: #192436;
15069
+ --cds-slug-callout-caret-center: #3f68af;
15058
15070
  --cds-slug-callout-gradient-bottom: rgba(38, 38, 38, 0.85);
15059
15071
  --cds-slug-callout-gradient-bottom-hover: rgba(71, 71, 71, 0.55);
15060
15072
  --cds-slug-callout-gradient-bottom-selected: rgba(71, 71, 71, 0.85);
15061
15073
  --cds-slug-callout-gradient-top: rgba(22, 22, 22, 0.85);
15062
15074
  --cds-slug-callout-gradient-top-hover: rgba(57, 57, 57, 0.55);
15063
15075
  --cds-slug-callout-gradient-top-selected: rgba(57, 57, 57, 0.85);
15076
+ --cds-slug-callout-shadow-outer-01: rgba(0, 45, 156, 0.25);
15077
+ --cds-slug-callout-shadow-outer-02: rgba(0, 0, 0, 0.65);
15064
15078
  --cds-slug-gradient: #8d8d8d linear-gradient(135deg, #f4f4f4 0%, rgba(255, 255, 255, 0) 100%);
15065
15079
  --cds-slug-gradient-hover: #a8a8a8 linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
15066
15080
  --cds-slug-hollow-hover: #b5b5b5;
@@ -16310,6 +16324,7 @@ button.c4p--add-select__global-filter-toggle--open {
16310
16324
  position: sticky;
16311
16325
  z-index: 1;
16312
16326
  left: 0;
16327
+ background-color: var(--cds-layer-01, #f4f4f4);
16313
16328
  }
16314
16329
  .c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-center .c4p--datagrid__cell {
16315
16330
  align-items: center;
@@ -16331,6 +16346,7 @@ button.c4p--add-select__global-filter-toggle--open {
16331
16346
  .c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-center th.cds--table-column-checkbox.c4p--datagrid__checkbox-cell-sticky-left {
16332
16347
  position: sticky;
16333
16348
  left: 0;
16349
+ background-color: var(--cds-layer-01, #f4f4f4);
16334
16350
  }
16335
16351
  .c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-center .c4p--datagrid__checkbox-cell th.cds--table-column-checkbox {
16336
16352
  display: flex;
@@ -16407,6 +16423,9 @@ button.c4p--add-select__global-filter-toggle--open {
16407
16423
  height: 100%;
16408
16424
  overflow-x: auto;
16409
16425
  }
16426
+ .c4p--datagrid__grid-container .c4p--datagrid-filter-panel + .c4p--datagrid__table-container-inner .cds--data-table-content {
16427
+ height: fit-content;
16428
+ }
16410
16429
  .c4p--datagrid__grid-container table.c4p--datagrid__table-simple {
16411
16430
  display: flex;
16412
16431
  overflow: auto;
@@ -16544,7 +16563,7 @@ button.c4p--add-select__global-filter-toggle--open {
16544
16563
  }
16545
16564
 
16546
16565
  .c4p--datagrid__resizableColumn:hover {
16547
- background-color: var(--cds-background-selected-hover, rgba(141, 141, 141, 0.32));
16566
+ background-color: var(--cds-layer-selected-hover);
16548
16567
  }
16549
16568
  .c4p--datagrid__resizableColumn:hover .c4p--datagrid__resizer {
16550
16569
  border-right: 0.125rem solid var(--cds-border-strong-01, #8d8d8d);
@@ -17091,6 +17110,7 @@ button.c4p--add-select__global-filter-toggle--open {
17091
17110
  display: flex;
17092
17111
  align-items: center;
17093
17112
  border-left: 1px solid var(--cds-layer-active-02, #c6c6c6);
17113
+ background-color: var(--cds-layer-01, #f4f4f4);
17094
17114
  }
17095
17115
 
17096
17116
  .c4p--datagrid__right-sticky-column-header {
@@ -17106,6 +17126,7 @@ button.c4p--add-select__global-filter-toggle--open {
17106
17126
  display: flex;
17107
17127
  align-items: center;
17108
17128
  border-right: 1px solid var(--cds-layer-active-02, #c6c6c6);
17129
+ background-color: var(--cds-layer-01, #f4f4f4);
17109
17130
  }
17110
17131
 
17111
17132
  .c4p--datagrid__left-sticky-column-header {
@@ -18115,6 +18136,10 @@ th.c4p--datagrid__select-all-toggle-on.button {
18115
18136
  min-width: auto;
18116
18137
  }
18117
18138
 
18139
+ .c4p--datagrid .cds--pagination {
18140
+ background-color: var(--cds-layer-02, #ffffff);
18141
+ }
18142
+
18118
18143
  /* stylelint-disable max-nesting-depth */
18119
18144
  .c4p--edit-update-cards#c4p--edit-update-cards--edit {
18120
18145
  /* Used id for overriding the SVG path fill */
@@ -18161,4 +18186,10 @@ th.c4p--datagrid__select-all-toggle-on.button {
18161
18186
  color: #ffffff;
18162
18187
  }
18163
18188
 
18189
+ .c4p--delimited-list-truncate {
18190
+ overflow: hidden;
18191
+ text-overflow: ellipsis;
18192
+ white-space: nowrap;
18193
+ }
18194
+
18164
18195
  /*# sourceMappingURL=index.css.map */