@patternfly/react-styles 6.3.0-prerelease.8 → 6.3.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,44 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # 6.3.0 (2025-07-22)
7
+
8
+ **Note:** Version bump only for package @patternfly/react-styles
9
+
10
+ # [6.3.0-prerelease.14](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.4.0-prerelease.0...@patternfly/react-styles@6.3.0-prerelease.14) (2025-07-22)
11
+
12
+ ### Reverts
13
+
14
+ - Revert "chore(release): releasing packages [ci skip]" ([40999d7](https://github.com/patternfly/patternfly-react/commit/40999d70a7a3aeadbe8f40fe96bb01ab3a6219d4))
15
+
16
+ # [6.3.0-prerelease.13](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.3.0-prerelease.12...@patternfly/react-styles@6.3.0-prerelease.13) (2025-07-18)
17
+
18
+ ### Bug Fixes
19
+
20
+ - **Button:** Bump core version to fix button animation ([#11928](https://github.com/patternfly/patternfly-react/issues/11928)) ([dc6e358](https://github.com/patternfly/patternfly-react/commit/dc6e358e8b9cd81f9be0a1a21d4fc0cae4ca21d8))
21
+
22
+ # [6.3.0-prerelease.12](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.3.0-prerelease.11...@patternfly/react-styles@6.3.0-prerelease.12) (2025-07-17)
23
+
24
+ ### Bug Fixes
25
+
26
+ - **Tables:** updated animations to beta ([#11927](https://github.com/patternfly/patternfly-react/issues/11927)) ([cca6678](https://github.com/patternfly/patternfly-react/commit/cca667858c24bb9d7cb39e0c781ff3c8466f7ef6))
27
+
28
+ # [6.3.0-prerelease.11](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.3.0-prerelease.10...@patternfly/react-styles@6.3.0-prerelease.11) (2025-07-11)
29
+
30
+ ### Bug Fixes
31
+
32
+ - **Table:** updated logic for expandable class ([#11918](https://github.com/patternfly/patternfly-react/issues/11918)) ([2b6c99b](https://github.com/patternfly/patternfly-react/commit/2b6c99b4617f09009d799af4587a0b0d291cdf84))
33
+
34
+ # [6.3.0-prerelease.10](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.3.0-prerelease.9...@patternfly/react-styles@6.3.0-prerelease.10) (2025-07-02)
35
+
36
+ **Note:** Version bump only for package @patternfly/react-styles
37
+
38
+ # [6.3.0-prerelease.9](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.3.0-prerelease.8...@patternfly/react-styles@6.3.0-prerelease.9) (2025-06-23)
39
+
40
+ ### Bug Fixes
41
+
42
+ - Bumped to latest core version. ([#11880](https://github.com/patternfly/patternfly-react/issues/11880)) ([0380aa5](https://github.com/patternfly/patternfly-react/commit/0380aa504b4d0d83459126bfd98b2e4e29cac4e8))
43
+
6
44
  # [6.3.0-prerelease.8](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.3.0-prerelease.7...@patternfly/react-styles@6.3.0-prerelease.8) (2025-06-20)
7
45
 
8
46
  ### Features
@@ -327,7 +327,7 @@
327
327
  cursor: pointer;
328
328
  -webkit-user-select: none;
329
329
  user-select: none;
330
- background: var(--pf-v6-c-button--BackgroundColor) radial-gradient(circle, transparent 1%, color-mix(in srgb, currentcolor 15%, transparent) 1%) center/15000%;
330
+ background: var(--pf-v6-c-button--BackgroundColor) radial-gradient(circle, transparent 1%, color-mix(in srgb, currentcolor 15%, transparent) 2%) center/15000% 15000%;
331
331
  border: 0;
332
332
  border-start-start-radius: var(--pf-v6-c-button--BorderStartStartRadius, var(--pf-v6-c-button--BorderRadius));
333
333
  border-start-end-radius: var(--pf-v6-c-button--BorderStartEndRadius, var(--pf-v6-c-button--BorderRadius));
@@ -680,7 +680,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
680
680
  --pf-v6-c-button__icon--Color: var(--pf-v6-c-button--m-clicked__icon--Color);
681
681
  }
682
682
  .pf-v6-c-button:active {
683
- background-size: 100%;
683
+ background-size: 100% 100%;
684
684
  transition-duration: 0s;
685
685
  }
686
686
  .pf-v6-c-button:disabled, .pf-v6-c-button.pf-m-disabled {
@@ -511,8 +511,8 @@
511
511
  --pf-v6-c-data-list--m-compact__item-content--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
512
512
  --pf-v6-c-data-list--m-compact__item-draggable-button--MarginBlockStart: calc(var(--pf-t--global--spacer--sm) * -1);
513
513
  --pf-v6-c-data-list--m-compact__item-draggable-button--MarginBlockEnd: calc(var(--pf-t--global--spacer--sm) * -1);
514
- --pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockStart: var(--pf-t--global--spacer--sm);
515
- --pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
514
+ --pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockStart: var(--pf-t--global--spacer--xs);
515
+ --pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
516
516
  --pf-v6-c-data-list--m-compact__cell--m-icon--cell--PaddingBlockStart: var(--pf-t--global--spacer--sm);
517
517
  }
518
518
  @media screen and (min-width: 36rem) {
@@ -98,6 +98,12 @@
98
98
  .pf-m-grid.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
99
99
  border-block-start: var(--pf-v6-c-table__tbody--responsive--border-width--base) solid var(--pf-v6-c-table--responsive--BorderColor);
100
100
  }
101
+ .pf-m-grid.pf-v6-c-table.pf-m-animate-expand {
102
+ --pf-v6-c-table__expandable-row--Display: block;
103
+ }
104
+ .pf-m-grid.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
105
+ content: none;
106
+ }
101
107
  .pf-m-grid.pf-v6-c-table.pf-m-expandable {
102
108
  --pf-v6-c-table__tr--BorderBlockEndWidth: 0;
103
109
  }
@@ -154,6 +160,9 @@
154
160
  grid-template-columns: 1fr minmax(0, 1.5fr);
155
161
  align-items: start;
156
162
  }
163
+ .pf-m-grid.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
164
+ align-items: center;
165
+ }
157
166
  .pf-m-grid.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
158
167
  grid-column: 2;
159
168
  }
@@ -398,6 +407,12 @@
398
407
  .pf-m-grid-md.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
399
408
  border-block-start: var(--pf-v6-c-table__tbody--responsive--border-width--base) solid var(--pf-v6-c-table--responsive--BorderColor);
400
409
  }
410
+ .pf-m-grid-md.pf-v6-c-table.pf-m-animate-expand {
411
+ --pf-v6-c-table__expandable-row--Display: block;
412
+ }
413
+ .pf-m-grid-md.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
414
+ content: none;
415
+ }
401
416
  .pf-m-grid-md.pf-v6-c-table.pf-m-expandable {
402
417
  --pf-v6-c-table__tr--BorderBlockEndWidth: 0;
403
418
  }
@@ -454,6 +469,9 @@
454
469
  grid-template-columns: 1fr minmax(0, 1.5fr);
455
470
  align-items: start;
456
471
  }
472
+ .pf-m-grid-md.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
473
+ align-items: center;
474
+ }
457
475
  .pf-m-grid-md.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
458
476
  grid-column: 2;
459
477
  }
@@ -701,6 +719,12 @@
701
719
  .pf-m-grid-lg.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
702
720
  border-block-start: var(--pf-v6-c-table__tbody--responsive--border-width--base) solid var(--pf-v6-c-table--responsive--BorderColor);
703
721
  }
722
+ .pf-m-grid-lg.pf-v6-c-table.pf-m-animate-expand {
723
+ --pf-v6-c-table__expandable-row--Display: block;
724
+ }
725
+ .pf-m-grid-lg.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
726
+ content: none;
727
+ }
704
728
  .pf-m-grid-lg.pf-v6-c-table.pf-m-expandable {
705
729
  --pf-v6-c-table__tr--BorderBlockEndWidth: 0;
706
730
  }
@@ -757,6 +781,9 @@
757
781
  grid-template-columns: 1fr minmax(0, 1.5fr);
758
782
  align-items: start;
759
783
  }
784
+ .pf-m-grid-lg.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
785
+ align-items: center;
786
+ }
760
787
  .pf-m-grid-lg.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
761
788
  grid-column: 2;
762
789
  }
@@ -1004,6 +1031,12 @@
1004
1031
  .pf-m-grid-xl.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
1005
1032
  border-block-start: var(--pf-v6-c-table__tbody--responsive--border-width--base) solid var(--pf-v6-c-table--responsive--BorderColor);
1006
1033
  }
1034
+ .pf-m-grid-xl.pf-v6-c-table.pf-m-animate-expand {
1035
+ --pf-v6-c-table__expandable-row--Display: block;
1036
+ }
1037
+ .pf-m-grid-xl.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
1038
+ content: none;
1039
+ }
1007
1040
  .pf-m-grid-xl.pf-v6-c-table.pf-m-expandable {
1008
1041
  --pf-v6-c-table__tr--BorderBlockEndWidth: 0;
1009
1042
  }
@@ -1060,6 +1093,9 @@
1060
1093
  grid-template-columns: 1fr minmax(0, 1.5fr);
1061
1094
  align-items: start;
1062
1095
  }
1096
+ .pf-m-grid-xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
1097
+ align-items: center;
1098
+ }
1063
1099
  .pf-m-grid-xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
1064
1100
  grid-column: 2;
1065
1101
  }
@@ -1307,6 +1343,12 @@
1307
1343
  .pf-m-grid-2xl.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
1308
1344
  border-block-start: var(--pf-v6-c-table__tbody--responsive--border-width--base) solid var(--pf-v6-c-table--responsive--BorderColor);
1309
1345
  }
1346
+ .pf-m-grid-2xl.pf-v6-c-table.pf-m-animate-expand {
1347
+ --pf-v6-c-table__expandable-row--Display: block;
1348
+ }
1349
+ .pf-m-grid-2xl.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
1350
+ content: none;
1351
+ }
1310
1352
  .pf-m-grid-2xl.pf-v6-c-table.pf-m-expandable {
1311
1353
  --pf-v6-c-table__tr--BorderBlockEndWidth: 0;
1312
1354
  }
@@ -1363,6 +1405,9 @@
1363
1405
  grid-template-columns: 1fr minmax(0, 1.5fr);
1364
1406
  align-items: start;
1365
1407
  }
1408
+ .pf-m-grid-2xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
1409
+ align-items: center;
1410
+ }
1366
1411
  .pf-m-grid-2xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
1367
1412
  grid-column: 2;
1368
1413
  }
@@ -3,10 +3,12 @@ declare const _default: {
3
3
  "button": "pf-v6-c-button",
4
4
  "modifiers": {
5
5
  "grid": "pf-m-grid",
6
- "expandable": "pf-m-expandable",
6
+ "animateExpand": "pf-m-animate-expand",
7
7
  "expanded": "pf-m-expanded",
8
+ "expandable": "pf-m-expandable",
8
9
  "selected": "pf-m-selected",
9
10
  "compact": "pf-m-compact",
11
+ "action": "pf-m-action",
10
12
  "noPadding": "pf-m-no-padding",
11
13
  "hoverable": "pf-m-hoverable",
12
14
  "nowrap": "pf-m-nowrap",
@@ -5,10 +5,12 @@ exports.default = {
5
5
  "button": "pf-v6-c-button",
6
6
  "modifiers": {
7
7
  "grid": "pf-m-grid",
8
- "expandable": "pf-m-expandable",
8
+ "animateExpand": "pf-m-animate-expand",
9
9
  "expanded": "pf-m-expanded",
10
+ "expandable": "pf-m-expandable",
10
11
  "selected": "pf-m-selected",
11
12
  "compact": "pf-m-compact",
13
+ "action": "pf-m-action",
12
14
  "noPadding": "pf-m-no-padding",
13
15
  "hoverable": "pf-m-hoverable",
14
16
  "nowrap": "pf-m-nowrap",
@@ -3,10 +3,12 @@ export default {
3
3
  "button": "pf-v6-c-button",
4
4
  "modifiers": {
5
5
  "grid": "pf-m-grid",
6
- "expandable": "pf-m-expandable",
6
+ "animateExpand": "pf-m-animate-expand",
7
7
  "expanded": "pf-m-expanded",
8
+ "expandable": "pf-m-expandable",
8
9
  "selected": "pf-m-selected",
9
10
  "compact": "pf-m-compact",
11
+ "action": "pf-m-action",
10
12
  "noPadding": "pf-m-no-padding",
11
13
  "hoverable": "pf-m-hoverable",
12
14
  "nowrap": "pf-m-nowrap",
@@ -118,6 +118,10 @@
118
118
  --pf-v6-c-table--m-compact__th--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
119
119
  --pf-v6-c-table--m-compact--cell--PaddingBlockStart: var(--pf-t--global--spacer--sm);
120
120
  --pf-v6-c-table--m-compact--cell--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
121
+ --pf-v6-c-table__td--m-action--PaddingBlockStart: var(--pf-t--global--spacer--sm);
122
+ --pf-v6-c-table__td--m-action--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
123
+ --pf-v6-c-table--m-compact__td--m-action--PaddingBlockStart: var(--pf-t--global--spacer--xs);
124
+ --pf-v6-c-table--m-compact__td--m-action--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
121
125
  --pf-v6-c-table--m-compact__action--PaddingBlockStart: var(--pf-t--global--spacer--xs);
122
126
  --pf-v6-c-table--m-compact__action--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
123
127
  --pf-v6-c-table__expandable-row--m-expanded--BorderBlockEndColor: var(--pf-t--global--border--color--default);
@@ -346,6 +350,10 @@
346
350
  .pf-v6-c-table tbody:where(.pf-v6-c-table__tbody) > tr:where(.pf-v6-c-table__tr) > :where(th, td) {
347
351
  overflow-wrap: break-word;
348
352
  }
353
+ .pf-v6-c-table .pf-v6-c-table__td.pf-m-action {
354
+ --pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table__td--m-action--PaddingBlockStart);
355
+ --pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table__td--m-action--PaddingBlockEnd);
356
+ }
349
357
  .pf-v6-c-table .pf-v6-c-table__sort {
350
358
  min-width: var(--pf-v6-c-table__sort--MinWidth);
351
359
  }
@@ -414,8 +422,11 @@
414
422
  .pf-v6-c-table .pf-v6-c-button .pf-v6-c-table__sort-indicator {
415
423
  --pf-v6-c-table__sort-indicator--MarginInlineStart: 0;
416
424
  }
425
+ .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody.pf-m-expanded > .pf-v6-c-table__control-row {
426
+ border-block-end: 0;
427
+ }
417
428
  .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row {
418
- display: revert;
429
+ display: var(--pf-v6-c-table__expandable-row--Display, revert);
419
430
  visibility: hidden;
420
431
  opacity: var(--pf-v6-c-table__expandable-row--Opacity);
421
432
  transition-delay: 0s, 0s, var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
@@ -425,7 +436,7 @@
425
436
  translate: 0 var(--pf-v6-c-table__expandable-row--TranslateY);
426
437
  }
427
438
  .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row[hidden] {
428
- display: revert;
439
+ display: var(--pf-v6-c-table__expandable-row--Display, revert);
429
440
  }
430
441
  .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row.pf-m-expanded {
431
442
  visibility: visible;
@@ -447,6 +458,9 @@
447
458
  .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th) > .pf-v6-c-table__expandable-row-content {
448
459
  max-height: 0;
449
460
  }
461
+ .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__tr:has(~ .pf-v6-c-table__expandable-row) {
462
+ border-block-end: 0;
463
+ }
450
464
  .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__control-row.pf-m-no-animate-expand ~ .pf-v6-c-table__expandable-row {
451
465
  --pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade: 0s;
452
466
  --pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide: 0s;
@@ -758,23 +772,22 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
758
772
  position: relative;
759
773
  border-block-end: 0 solid transparent;
760
774
  }
761
- .pf-v6-c-table__expandable-row > .pf-v6-c-table__th,
762
- .pf-v6-c-table__expandable-row > .pf-v6-c-table__td {
775
+ :not(.pf-v6-c-table__control-row) ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__th,
776
+ :not(.pf-v6-c-table__control-row) ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__td {
763
777
  padding-block-start: 0;
764
778
  }
765
- .pf-v6-c-table__control-row ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__th,
766
- .pf-v6-c-table__control-row ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__td {
779
+ .pf-v6-c-table__control-row ~ .pf-v6-c-table__expandable-row.pf-m-expanded > :is(.pf-v6-c-table__th, .pf-v6-c-table__td):not(.pf-m-no-padding) {
767
780
  padding-block-start: var(--pf-v6-c-table--cell--PaddingBlockStart);
768
781
  }
769
- .pf-v6-c-table__expandable-row .pf-v6-c-table__td.pf-m-no-padding,
770
- .pf-v6-c-table__expandable-row .pf-v6-c-table__th.pf-m-no-padding {
782
+ .pf-v6-c-table__expandable-row td:where(.pf-v6-c-table__td).pf-m-no-padding,
783
+ .pf-v6-c-table__expandable-row th:where(.pf-v6-c-table__th).pf-m-no-padding {
771
784
  padding-block-start: 0;
772
785
  padding-block-end: 0;
773
786
  padding-inline-start: 0;
774
787
  padding-inline-end: 0;
775
788
  }
776
- .pf-v6-c-table__expandable-row .pf-v6-c-table__td.pf-m-no-padding .pf-v6-c-table__expandable-row-content,
777
- .pf-v6-c-table__expandable-row .pf-v6-c-table__th.pf-m-no-padding .pf-v6-c-table__expandable-row-content {
789
+ .pf-v6-c-table__expandable-row td:where(.pf-v6-c-table__td).pf-m-no-padding .pf-v6-c-table__expandable-row-content,
790
+ .pf-v6-c-table__expandable-row th:where(.pf-v6-c-table__th).pf-m-no-padding .pf-v6-c-table__expandable-row-content {
778
791
  padding: 0;
779
792
  border-radius: 0;
780
793
  }
@@ -800,10 +813,6 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
800
813
  border-block-end: 0;
801
814
  }
802
815
 
803
- .pf-v6-c-table__tr:has(~ .pf-v6-c-table__expandable-row) {
804
- border-block-end: 0;
805
- }
806
-
807
816
  .pf-v6-c-table.pf-m-compact {
808
817
  --pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-compact--cell--PaddingBlockStart);
809
818
  --pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--m-compact--cell--PaddingBlockEnd);
@@ -824,6 +833,10 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
824
833
  --pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-compact__action--PaddingBlockStart);
825
834
  --pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__action--PaddingBlockEnd);
826
835
  }
836
+ .pf-v6-c-table.pf-m-compact .pf-v6-c-table__td.pf-m-action {
837
+ --pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-compact__td--m-action--PaddingBlockStart);
838
+ --pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__td--m-action--PaddingBlockEnd);
839
+ }
827
840
  .pf-v6-c-table.pf-m-compact .pf-v6-c-table__icon {
828
841
  width: auto;
829
842
  min-width: 0;
@@ -859,6 +872,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
859
872
  }
860
873
  .pf-v6-c-table.pf-m-expandable .pf-v6-c-table__tbody.pf-m-expanded .pf-v6-c-table__control-row {
861
874
  background-color: var(--pf-v6-c-table__control-row--BackgroundColor);
875
+ border-block-end: var(--pf-v6-c-table__control-row--BorderBlockEndWidth) solid var(--pf-v6-c-table__control-row__tbody--BorderBlockEndColor);
876
+ }
877
+ .pf-v6-c-table.pf-m-expandable .pf-v6-c-table__tbody.pf-m-expanded .pf-v6-c-table__control-row.pf-m-expanded {
862
878
  border-block-end: 0;
863
879
  }
864
880
 
@@ -27,6 +27,7 @@ declare const _default: {
27
27
  "favorite": "pf-m-favorite",
28
28
  "borderRight": "pf-m-border-right",
29
29
  "borderLeft": "pf-m-border-left",
30
+ "action": "pf-m-action",
30
31
  "noBorderRows": "pf-m-no-border-rows",
31
32
  "expanded": "pf-m-expanded",
32
33
  "clickable": "pf-m-clickable",
@@ -29,6 +29,7 @@ exports.default = {
29
29
  "favorite": "pf-m-favorite",
30
30
  "borderRight": "pf-m-border-right",
31
31
  "borderLeft": "pf-m-border-left",
32
+ "action": "pf-m-action",
32
33
  "noBorderRows": "pf-m-no-border-rows",
33
34
  "expanded": "pf-m-expanded",
34
35
  "clickable": "pf-m-clickable",
@@ -27,6 +27,7 @@ export default {
27
27
  "favorite": "pf-m-favorite",
28
28
  "borderRight": "pf-m-border-right",
29
29
  "borderLeft": "pf-m-border-left",
30
+ "action": "pf-m-action",
30
31
  "noBorderRows": "pf-m-no-border-rows",
31
32
  "expanded": "pf-m-expanded",
32
33
  "clickable": "pf-m-clickable",
@@ -1855,7 +1855,7 @@ button.pf-v6-c-breadcrumb__link {
1855
1855
  cursor: pointer;
1856
1856
  -webkit-user-select: none;
1857
1857
  user-select: none;
1858
- background: var(--pf-v6-c-button--BackgroundColor) radial-gradient(circle, transparent 1%, color-mix(in srgb, currentcolor 15%, transparent) 1%) center/15000%;
1858
+ background: var(--pf-v6-c-button--BackgroundColor) radial-gradient(circle, transparent 1%, color-mix(in srgb, currentcolor 15%, transparent) 2%) center/15000% 15000%;
1859
1859
  border: 0;
1860
1860
  border-start-start-radius: var(--pf-v6-c-button--BorderStartStartRadius, var(--pf-v6-c-button--BorderRadius));
1861
1861
  border-start-end-radius: var(--pf-v6-c-button--BorderStartEndRadius, var(--pf-v6-c-button--BorderRadius));
@@ -2208,7 +2208,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
2208
2208
  --pf-v6-c-button__icon--Color: var(--pf-v6-c-button--m-clicked__icon--Color);
2209
2209
  }
2210
2210
  .pf-v6-c-button:active {
2211
- background-size: 100%;
2211
+ background-size: 100% 100%;
2212
2212
  transition-duration: 0s;
2213
2213
  }
2214
2214
  .pf-v6-c-button:disabled, .pf-v6-c-button.pf-m-disabled {
@@ -4127,8 +4127,8 @@ ul) {
4127
4127
  --pf-v6-c-data-list--m-compact__item-content--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
4128
4128
  --pf-v6-c-data-list--m-compact__item-draggable-button--MarginBlockStart: calc(var(--pf-t--global--spacer--sm) * -1);
4129
4129
  --pf-v6-c-data-list--m-compact__item-draggable-button--MarginBlockEnd: calc(var(--pf-t--global--spacer--sm) * -1);
4130
- --pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockStart: var(--pf-t--global--spacer--sm);
4131
- --pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
4130
+ --pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockStart: var(--pf-t--global--spacer--xs);
4131
+ --pf-v6-c-data-list--m-compact__item-draggable-button--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
4132
4132
  --pf-v6-c-data-list--m-compact__cell--m-icon--cell--PaddingBlockStart: var(--pf-t--global--spacer--sm);
4133
4133
  }
4134
4134
  @media screen and (min-width: 36rem) {
@@ -15747,6 +15747,12 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
15747
15747
  .pf-m-grid.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
15748
15748
  border-block-start: var(--pf-v6-c-table__tbody--responsive--border-width--base) solid var(--pf-v6-c-table--responsive--BorderColor);
15749
15749
  }
15750
+ .pf-m-grid.pf-v6-c-table.pf-m-animate-expand {
15751
+ --pf-v6-c-table__expandable-row--Display: block;
15752
+ }
15753
+ .pf-m-grid.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
15754
+ content: none;
15755
+ }
15750
15756
  .pf-m-grid.pf-v6-c-table.pf-m-expandable {
15751
15757
  --pf-v6-c-table__tr--BorderBlockEndWidth: 0;
15752
15758
  }
@@ -15803,6 +15809,9 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
15803
15809
  grid-template-columns: 1fr minmax(0, 1.5fr);
15804
15810
  align-items: start;
15805
15811
  }
15812
+ .pf-m-grid.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
15813
+ align-items: center;
15814
+ }
15806
15815
  .pf-m-grid.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
15807
15816
  grid-column: 2;
15808
15817
  }
@@ -16047,6 +16056,12 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
16047
16056
  .pf-m-grid-md.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
16048
16057
  border-block-start: var(--pf-v6-c-table__tbody--responsive--border-width--base) solid var(--pf-v6-c-table--responsive--BorderColor);
16049
16058
  }
16059
+ .pf-m-grid-md.pf-v6-c-table.pf-m-animate-expand {
16060
+ --pf-v6-c-table__expandable-row--Display: block;
16061
+ }
16062
+ .pf-m-grid-md.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
16063
+ content: none;
16064
+ }
16050
16065
  .pf-m-grid-md.pf-v6-c-table.pf-m-expandable {
16051
16066
  --pf-v6-c-table__tr--BorderBlockEndWidth: 0;
16052
16067
  }
@@ -16103,6 +16118,9 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
16103
16118
  grid-template-columns: 1fr minmax(0, 1.5fr);
16104
16119
  align-items: start;
16105
16120
  }
16121
+ .pf-m-grid-md.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
16122
+ align-items: center;
16123
+ }
16106
16124
  .pf-m-grid-md.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
16107
16125
  grid-column: 2;
16108
16126
  }
@@ -16350,6 +16368,12 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
16350
16368
  .pf-m-grid-lg.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
16351
16369
  border-block-start: var(--pf-v6-c-table__tbody--responsive--border-width--base) solid var(--pf-v6-c-table--responsive--BorderColor);
16352
16370
  }
16371
+ .pf-m-grid-lg.pf-v6-c-table.pf-m-animate-expand {
16372
+ --pf-v6-c-table__expandable-row--Display: block;
16373
+ }
16374
+ .pf-m-grid-lg.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
16375
+ content: none;
16376
+ }
16353
16377
  .pf-m-grid-lg.pf-v6-c-table.pf-m-expandable {
16354
16378
  --pf-v6-c-table__tr--BorderBlockEndWidth: 0;
16355
16379
  }
@@ -16406,6 +16430,9 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
16406
16430
  grid-template-columns: 1fr minmax(0, 1.5fr);
16407
16431
  align-items: start;
16408
16432
  }
16433
+ .pf-m-grid-lg.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
16434
+ align-items: center;
16435
+ }
16409
16436
  .pf-m-grid-lg.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
16410
16437
  grid-column: 2;
16411
16438
  }
@@ -16653,6 +16680,12 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
16653
16680
  .pf-m-grid-xl.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
16654
16681
  border-block-start: var(--pf-v6-c-table__tbody--responsive--border-width--base) solid var(--pf-v6-c-table--responsive--BorderColor);
16655
16682
  }
16683
+ .pf-m-grid-xl.pf-v6-c-table.pf-m-animate-expand {
16684
+ --pf-v6-c-table__expandable-row--Display: block;
16685
+ }
16686
+ .pf-m-grid-xl.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
16687
+ content: none;
16688
+ }
16656
16689
  .pf-m-grid-xl.pf-v6-c-table.pf-m-expandable {
16657
16690
  --pf-v6-c-table__tr--BorderBlockEndWidth: 0;
16658
16691
  }
@@ -16709,6 +16742,9 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
16709
16742
  grid-template-columns: 1fr minmax(0, 1.5fr);
16710
16743
  align-items: start;
16711
16744
  }
16745
+ .pf-m-grid-xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
16746
+ align-items: center;
16747
+ }
16712
16748
  .pf-m-grid-xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
16713
16749
  grid-column: 2;
16714
16750
  }
@@ -16956,6 +16992,12 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
16956
16992
  .pf-m-grid-2xl.pf-v6-c-table tbody:where(.pf-v6-c-table__tbody):first-of-type {
16957
16993
  border-block-start: var(--pf-v6-c-table__tbody--responsive--border-width--base) solid var(--pf-v6-c-table--responsive--BorderColor);
16958
16994
  }
16995
+ .pf-m-grid-2xl.pf-v6-c-table.pf-m-animate-expand {
16996
+ --pf-v6-c-table__expandable-row--Display: block;
16997
+ }
16998
+ .pf-m-grid-2xl.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
16999
+ content: none;
17000
+ }
16959
17001
  .pf-m-grid-2xl.pf-v6-c-table.pf-m-expandable {
16960
17002
  --pf-v6-c-table__tr--BorderBlockEndWidth: 0;
16961
17003
  }
@@ -17012,6 +17054,9 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
17012
17054
  grid-template-columns: 1fr minmax(0, 1.5fr);
17013
17055
  align-items: start;
17014
17056
  }
17057
+ .pf-m-grid-2xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label].pf-m-action {
17058
+ align-items: center;
17059
+ }
17015
17060
  .pf-m-grid-2xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label] > * {
17016
17061
  grid-column: 2;
17017
17062
  }
@@ -17339,6 +17384,10 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
17339
17384
  --pf-v6-c-table--m-compact__th--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
17340
17385
  --pf-v6-c-table--m-compact--cell--PaddingBlockStart: var(--pf-t--global--spacer--sm);
17341
17386
  --pf-v6-c-table--m-compact--cell--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
17387
+ --pf-v6-c-table__td--m-action--PaddingBlockStart: var(--pf-t--global--spacer--sm);
17388
+ --pf-v6-c-table__td--m-action--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
17389
+ --pf-v6-c-table--m-compact__td--m-action--PaddingBlockStart: var(--pf-t--global--spacer--xs);
17390
+ --pf-v6-c-table--m-compact__td--m-action--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
17342
17391
  --pf-v6-c-table--m-compact__action--PaddingBlockStart: var(--pf-t--global--spacer--xs);
17343
17392
  --pf-v6-c-table--m-compact__action--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
17344
17393
  --pf-v6-c-table__expandable-row--m-expanded--BorderBlockEndColor: var(--pf-t--global--border--color--default);
@@ -17567,6 +17616,10 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
17567
17616
  .pf-v6-c-table tbody:where(.pf-v6-c-table__tbody) > tr:where(.pf-v6-c-table__tr) > :where(th, td) {
17568
17617
  overflow-wrap: break-word;
17569
17618
  }
17619
+ .pf-v6-c-table .pf-v6-c-table__td.pf-m-action {
17620
+ --pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table__td--m-action--PaddingBlockStart);
17621
+ --pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table__td--m-action--PaddingBlockEnd);
17622
+ }
17570
17623
  .pf-v6-c-table .pf-v6-c-table__sort {
17571
17624
  min-width: var(--pf-v6-c-table__sort--MinWidth);
17572
17625
  }
@@ -17635,8 +17688,11 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
17635
17688
  .pf-v6-c-table .pf-v6-c-button .pf-v6-c-table__sort-indicator {
17636
17689
  --pf-v6-c-table__sort-indicator--MarginInlineStart: 0;
17637
17690
  }
17691
+ .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody.pf-m-expanded > .pf-v6-c-table__control-row {
17692
+ border-block-end: 0;
17693
+ }
17638
17694
  .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row {
17639
- display: revert;
17695
+ display: var(--pf-v6-c-table__expandable-row--Display, revert);
17640
17696
  visibility: hidden;
17641
17697
  opacity: var(--pf-v6-c-table__expandable-row--Opacity);
17642
17698
  transition-delay: 0s, 0s, var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
@@ -17646,7 +17702,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
17646
17702
  translate: 0 var(--pf-v6-c-table__expandable-row--TranslateY);
17647
17703
  }
17648
17704
  .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row[hidden] {
17649
- display: revert;
17705
+ display: var(--pf-v6-c-table__expandable-row--Display, revert);
17650
17706
  }
17651
17707
  .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row.pf-m-expanded {
17652
17708
  visibility: visible;
@@ -17668,6 +17724,9 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
17668
17724
  .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th) > .pf-v6-c-table__expandable-row-content {
17669
17725
  max-height: 0;
17670
17726
  }
17727
+ .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__tr:has(~ .pf-v6-c-table__expandable-row) {
17728
+ border-block-end: 0;
17729
+ }
17671
17730
  .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__control-row.pf-m-no-animate-expand ~ .pf-v6-c-table__expandable-row {
17672
17731
  --pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade: 0s;
17673
17732
  --pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide: 0s;
@@ -17979,23 +18038,22 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
17979
18038
  position: relative;
17980
18039
  border-block-end: 0 solid transparent;
17981
18040
  }
17982
- .pf-v6-c-table__expandable-row > .pf-v6-c-table__th,
17983
- .pf-v6-c-table__expandable-row > .pf-v6-c-table__td {
18041
+ :not(.pf-v6-c-table__control-row) ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__th,
18042
+ :not(.pf-v6-c-table__control-row) ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__td {
17984
18043
  padding-block-start: 0;
17985
18044
  }
17986
- .pf-v6-c-table__control-row ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__th,
17987
- .pf-v6-c-table__control-row ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__td {
18045
+ .pf-v6-c-table__control-row ~ .pf-v6-c-table__expandable-row.pf-m-expanded > :is(.pf-v6-c-table__th, .pf-v6-c-table__td):not(.pf-m-no-padding) {
17988
18046
  padding-block-start: var(--pf-v6-c-table--cell--PaddingBlockStart);
17989
18047
  }
17990
- .pf-v6-c-table__expandable-row .pf-v6-c-table__td.pf-m-no-padding,
17991
- .pf-v6-c-table__expandable-row .pf-v6-c-table__th.pf-m-no-padding {
18048
+ .pf-v6-c-table__expandable-row td:where(.pf-v6-c-table__td).pf-m-no-padding,
18049
+ .pf-v6-c-table__expandable-row th:where(.pf-v6-c-table__th).pf-m-no-padding {
17992
18050
  padding-block-start: 0;
17993
18051
  padding-block-end: 0;
17994
18052
  padding-inline-start: 0;
17995
18053
  padding-inline-end: 0;
17996
18054
  }
17997
- .pf-v6-c-table__expandable-row .pf-v6-c-table__td.pf-m-no-padding .pf-v6-c-table__expandable-row-content,
17998
- .pf-v6-c-table__expandable-row .pf-v6-c-table__th.pf-m-no-padding .pf-v6-c-table__expandable-row-content {
18055
+ .pf-v6-c-table__expandable-row td:where(.pf-v6-c-table__td).pf-m-no-padding .pf-v6-c-table__expandable-row-content,
18056
+ .pf-v6-c-table__expandable-row th:where(.pf-v6-c-table__th).pf-m-no-padding .pf-v6-c-table__expandable-row-content {
17999
18057
  padding: 0;
18000
18058
  border-radius: 0;
18001
18059
  }
@@ -18021,10 +18079,6 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
18021
18079
  border-block-end: 0;
18022
18080
  }
18023
18081
 
18024
- .pf-v6-c-table__tr:has(~ .pf-v6-c-table__expandable-row) {
18025
- border-block-end: 0;
18026
- }
18027
-
18028
18082
  .pf-v6-c-table.pf-m-compact {
18029
18083
  --pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-compact--cell--PaddingBlockStart);
18030
18084
  --pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--m-compact--cell--PaddingBlockEnd);
@@ -18045,6 +18099,10 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
18045
18099
  --pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-compact__action--PaddingBlockStart);
18046
18100
  --pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__action--PaddingBlockEnd);
18047
18101
  }
18102
+ .pf-v6-c-table.pf-m-compact .pf-v6-c-table__td.pf-m-action {
18103
+ --pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-compact__td--m-action--PaddingBlockStart);
18104
+ --pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--m-compact__td--m-action--PaddingBlockEnd);
18105
+ }
18048
18106
  .pf-v6-c-table.pf-m-compact .pf-v6-c-table__icon {
18049
18107
  width: auto;
18050
18108
  min-width: 0;
@@ -18080,6 +18138,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
18080
18138
  }
18081
18139
  .pf-v6-c-table.pf-m-expandable .pf-v6-c-table__tbody.pf-m-expanded .pf-v6-c-table__control-row {
18082
18140
  background-color: var(--pf-v6-c-table__control-row--BackgroundColor);
18141
+ border-block-end: var(--pf-v6-c-table__control-row--BorderBlockEndWidth) solid var(--pf-v6-c-table__control-row__tbody--BorderBlockEndColor);
18142
+ }
18143
+ .pf-v6-c-table.pf-m-expandable .pf-v6-c-table__tbody.pf-m-expanded .pf-v6-c-table__control-row.pf-m-expanded {
18083
18144
  border-block-end: 0;
18084
18145
  }
18085
18146
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/react-styles",
3
- "version": "6.3.0-prerelease.8",
3
+ "version": "6.3.0",
4
4
  "main": "dist/js/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/esm/index.d.ts",
@@ -19,10 +19,10 @@
19
19
  "clean": "rimraf dist css"
20
20
  },
21
21
  "devDependencies": {
22
- "@patternfly/patternfly": "6.3.0-prerelease.35",
22
+ "@patternfly/patternfly": "6.3.0-prerelease.41",
23
23
  "change-case": "^5.4.4",
24
24
  "fs-extra": "^11.3.0"
25
25
  },
26
26
  "license": "MIT",
27
- "gitHead": "f7974fbc0bcfaeff92cb05a4604bb48f4df54375"
27
+ "gitHead": "0652301cae338bfef026f04bada414d0a5c2ee79"
28
28
  }