@patternfly/patternfly 6.3.0-prerelease.26 → 6.3.0-prerelease.28

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 (34) hide show
  1. package/base/patternfly-common.css +35 -0
  2. package/base/patternfly-common.scss +46 -1
  3. package/components/Accordion/accordion.css +1 -1
  4. package/components/Accordion/accordion.scss +1 -1
  5. package/components/DualListSelector/dual-list-selector.css +1 -1
  6. package/components/DualListSelector/dual-list-selector.scss +1 -1
  7. package/components/ExpandableSection/expandable-section.css +1 -1
  8. package/components/ExpandableSection/expandable-section.scss +1 -1
  9. package/components/Form/form.css +1 -1
  10. package/components/Form/form.scss +1 -1
  11. package/components/FormControl/form-control.css +16 -0
  12. package/components/FormControl/form-control.scss +9 -0
  13. package/components/Nav/nav.css +1 -1
  14. package/components/Nav/nav.scss +1 -1
  15. package/components/Progress/progress.css +16 -0
  16. package/components/Progress/progress.scss +11 -1
  17. package/components/Table/table.css +52 -25
  18. package/components/Table/table.scss +73 -22
  19. package/components/TextInputGroup/text-input-group.css +16 -0
  20. package/components/TextInputGroup/text-input-group.scss +8 -0
  21. package/components/TreeView/tree-view.css +1 -1
  22. package/components/TreeView/tree-view.scss +1 -1
  23. package/components/_index.css +106 -31
  24. package/docs/components/Table/examples/Table.md +8586 -5760
  25. package/docs/demos/Card/examples/Card.md +1 -1
  26. package/docs/demos/Table/examples/Table.md +2 -2
  27. package/package.json +2 -2
  28. package/patternfly-base-no-globals.css +34 -0
  29. package/patternfly-base.css +34 -0
  30. package/patternfly-no-globals.css +140 -31
  31. package/patternfly.css +140 -31
  32. package/patternfly.min.css +1 -1
  33. package/patternfly.min.css.map +1 -1
  34. package/sass-utilities/mixins.scss +19 -0
@@ -1359,7 +1359,7 @@ wrapperTag: div
1359
1359
  >Components of the Control Panel are responsible for maintaining and reconciling the state of the cluster.</div>
1360
1360
  <div class="pf-v6-c-popover__body">
1361
1361
  <table
1362
- class="pf-v6-c-table pf-m-expandable pf-m-compact"
1362
+ class="pf-v6-c-table pf-m-compact pf-m-expandable"
1363
1363
  aria-label="Control panel table"
1364
1364
  id="status-card-expanded-with-popover-example-popover-table"
1365
1365
  >
@@ -2649,7 +2649,7 @@ wrapperTag: div
2649
2649
  </div>
2650
2650
  </div>
2651
2651
  <table
2652
- class="pf-v6-c-table pf-m-expandable pf-m-grid-md"
2652
+ class="pf-v6-c-table pf-m-grid-md pf-m-expandable"
2653
2653
  role="grid"
2654
2654
  aria-label="Expandable table example"
2655
2655
  id="expandable-demo-table"
@@ -4893,7 +4893,7 @@ wrapperTag: div
4893
4893
  </div>
4894
4894
  </div>
4895
4895
  <table
4896
- class="pf-v6-c-table pf-m-expandable pf-m-grid-md"
4896
+ class="pf-v6-c-table pf-m-grid-md pf-m-expandable"
4897
4897
  role="grid"
4898
4898
  aria-label="Compound expandable table example"
4899
4899
  id="compound-expansion-demo-table"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@patternfly/patternfly",
3
3
  "description": "Assets, source, tooling, and content for PatternFly 4",
4
- "version": "6.3.0-prerelease.26",
4
+ "version": "6.3.0-prerelease.28",
5
5
  "keywords": [],
6
6
  "license": "MIT",
7
7
  "scripts": {
@@ -47,7 +47,7 @@
47
47
  "@commitlint/config-conventional": "^19.1.0",
48
48
  "@fortawesome/fontawesome": "^1.1.8",
49
49
  "@octokit/rest": "^20.1.0",
50
- "@patternfly/documentation-framework": "6.10.22",
50
+ "@patternfly/documentation-framework": "6.10.24",
51
51
  "@patternfly/patternfly-a11y": "5.1.0",
52
52
  "@patternfly/react-code-editor": "6.2.2",
53
53
  "@patternfly/react-core": "6.2.2",
@@ -57,6 +57,40 @@
57
57
  --pf-t--global--duration--50: 1ms !important;
58
58
  }
59
59
 
60
+ :root {
61
+ --pf-v6-global--danger-jiggle--AnimationDuration--Transform: var(--pf-t--global--motion--duration--fade--default);
62
+ --pf-v6-global--danger-jiggle--AnimationTimingFunction--Transform: var(--pf-t--global--motion--timing-function--default);
63
+ }
64
+
65
+ @property --pf-v6-global--danger-jiggle--TranslateX {
66
+ syntax: "<length>";
67
+ inherits: false;
68
+ initial-value: 0;
69
+ }
70
+ @keyframes pf-v6-global-danger-jiggle-motion {
71
+ 33% {
72
+ --pf-v6-global--danger-jiggle--TranslateX: -2px;
73
+ }
74
+ 66% {
75
+ --pf-v6-global--danger-jiggle--TranslateX: 3px;
76
+ }
77
+ }
78
+ @keyframes pf-v6-global-fade-in {
79
+ from {
80
+ opacity: 0;
81
+ }
82
+ to {
83
+ opacity: 1;
84
+ }
85
+ }
86
+ @keyframes pf-v6-global-fade-out {
87
+ from {
88
+ opacity: 1;
89
+ }
90
+ to {
91
+ opacity: 0;
92
+ }
93
+ }
60
94
  @font-face {
61
95
  font-family: "Red Hat Text";
62
96
  font-style: normal;
@@ -193,6 +193,40 @@ button) {
193
193
  --pf-t--global--duration--50: 1ms !important;
194
194
  }
195
195
 
196
+ :root {
197
+ --pf-v6-global--danger-jiggle--AnimationDuration--Transform: var(--pf-t--global--motion--duration--fade--default);
198
+ --pf-v6-global--danger-jiggle--AnimationTimingFunction--Transform: var(--pf-t--global--motion--timing-function--default);
199
+ }
200
+
201
+ @property --pf-v6-global--danger-jiggle--TranslateX {
202
+ syntax: "<length>";
203
+ inherits: false;
204
+ initial-value: 0;
205
+ }
206
+ @keyframes pf-v6-global-danger-jiggle-motion {
207
+ 33% {
208
+ --pf-v6-global--danger-jiggle--TranslateX: -2px;
209
+ }
210
+ 66% {
211
+ --pf-v6-global--danger-jiggle--TranslateX: 3px;
212
+ }
213
+ }
214
+ @keyframes pf-v6-global-fade-in {
215
+ from {
216
+ opacity: 0;
217
+ }
218
+ to {
219
+ opacity: 1;
220
+ }
221
+ }
222
+ @keyframes pf-v6-global-fade-out {
223
+ from {
224
+ opacity: 1;
225
+ }
226
+ to {
227
+ opacity: 0;
228
+ }
229
+ }
196
230
  @font-face {
197
231
  font-family: "Red Hat Text";
198
232
  font-style: normal;
@@ -58,6 +58,40 @@
58
58
  --pf-t--global--duration--50: 1ms !important;
59
59
  }
60
60
 
61
+ :root {
62
+ --pf-v6-global--danger-jiggle--AnimationDuration--Transform: var(--pf-t--global--motion--duration--fade--default);
63
+ --pf-v6-global--danger-jiggle--AnimationTimingFunction--Transform: var(--pf-t--global--motion--timing-function--default);
64
+ }
65
+
66
+ @property --pf-v6-global--danger-jiggle--TranslateX {
67
+ syntax: "<length>";
68
+ inherits: false;
69
+ initial-value: 0;
70
+ }
71
+ @keyframes pf-v6-global-danger-jiggle-motion {
72
+ 33% {
73
+ --pf-v6-global--danger-jiggle--TranslateX: -2px;
74
+ }
75
+ 66% {
76
+ --pf-v6-global--danger-jiggle--TranslateX: 3px;
77
+ }
78
+ }
79
+ @keyframes pf-v6-global-fade-in {
80
+ from {
81
+ opacity: 0;
82
+ }
83
+ to {
84
+ opacity: 1;
85
+ }
86
+ }
87
+ @keyframes pf-v6-global-fade-out {
88
+ from {
89
+ opacity: 1;
90
+ }
91
+ to {
92
+ opacity: 0;
93
+ }
94
+ }
61
95
  @font-face {
62
96
  font-family: "Red Hat Text";
63
97
  font-style: normal;
@@ -7857,7 +7891,7 @@
7857
7891
  overflow-y: auto;
7858
7892
  }
7859
7893
  .pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content {
7860
- max-height: 9999px;
7894
+ max-height: 99999px;
7861
7895
  margin-block-end: var(--pf-v6-c-accordion__expandable-content--MarginBlockEnd);
7862
7896
  visibility: revert;
7863
7897
  transition-delay: 0s;
@@ -12480,7 +12514,7 @@ ul) {
12480
12514
  --pf-v6-c-dual-list-selector__item-toggle-icon--Rotate: var(--pf-v6-c-dual-list-selector__list-item--m-expanded__item-toggle-icon--Rotate);
12481
12515
  }
12482
12516
  .pf-v6-c-dual-list-selector.pf-m-animate-expand .pf-v6-c-dual-list-selector__list-item.pf-m-expanded > .pf-v6-c-dual-list-selector__list {
12483
- max-height: 9999px;
12517
+ max-height: 99999px;
12484
12518
  visibility: revert;
12485
12519
  opacity: var(--pf-v6-c-dual-list-selector--m-expanded__list--Opacity);
12486
12520
  transition-delay: 0s;
@@ -14075,7 +14109,7 @@ ul) {
14075
14109
  --pf-v6-c-expandable-section__content--Opacity: var(--pf-v6-c-expandable-section--m-expanded__content--Opacity);
14076
14110
  --pf-v6-c-expandable-section__content--TranslateY: var(--pf-v6-c-expandable-section--m-expanded__content--TranslateY);
14077
14111
  --pf-v6-c-expandable-section__content--Visibility: auto;
14078
- --pf-v6-c-expandable-section__content--MaxHeight: 9999px;
14112
+ --pf-v6-c-expandable-section__content--MaxHeight: 99999px;
14079
14113
  --pf-v6-c-expandable-section__content--TransitionDelay--hide: 0s;
14080
14114
  gap: var(--pf-v6-c-expandable-section--Gap);
14081
14115
  }
@@ -14645,7 +14679,7 @@ ul) {
14645
14679
  --pf-v6-c-form__field-group-toggle-icon--Rotate: var(--pf-v6-c-form__field-group--m-expanded__toggle-icon--Rotate);
14646
14680
  }
14647
14681
  .pf-v6-c-form__field-group.pf-m-expanded.pf-m-expandable > .pf-v6-c-form__field-group-body {
14648
- max-height: 9999px;
14682
+ max-height: 99999px;
14649
14683
  padding-block-start: var(--pf-v6-c-form__field-group-body--PaddingBlockStart);
14650
14684
  padding-block-end: var(--pf-v6-c-form__field-group-body--PaddingBlockEnd);
14651
14685
  visibility: visible;
@@ -14967,6 +15001,22 @@ ul) {
14967
15001
  --pf-v6-c-form-control__icon--m-status--Color: var(--pf-v6-c-form-control--m-error__icon--m-status--Color);
14968
15002
  --pf-v6-c-form-control--after--BorderWidth: var(--pf-v6-c-form-control--m-error--after--BorderWidth);
14969
15003
  }
15004
+ @media (prefers-reduced-motion: no-preference) {
15005
+ .pf-v6-c-form-control.pf-m-error {
15006
+ translate: var(--pf-v6-global--danger-jiggle--TranslateX, 0);
15007
+ animation-name: pf-v6-global-danger-jiggle-motion;
15008
+ animation-duration: var(--pf-v6-global--danger-jiggle--AnimationDuration--Transform);
15009
+ animation-timing-function: var(--pf-v6-global--danger-jiggle--AnimationTimingFunction--Transform);
15010
+ animation-fill-mode: both;
15011
+ }
15012
+ }
15013
+ .pf-v6-c-form-control.pf-m-error .pf-v6-c-form-control__icon.pf-m-status {
15014
+ --pf-v6-c-form-control--TransitionDuration--Opacity: var(--pf-t--global--motion--duration--fade--default);
15015
+ --pf-v6-c-form-control--TransitionTimingFunction--Opacity: var(--pf-t--global--motion--timing-function--default);
15016
+ animation-name: pf-v6-global-fade-in;
15017
+ animation-duration: var(--pf-v6-c-form-control--TransitionDuration--Opacity);
15018
+ animation-timing-function: var(--pf-v6-c-form-control--TransitionTimingFunction--Opacity);
15019
+ }
14970
15020
  .pf-v6-c-form-control.pf-m-error > textarea {
14971
15021
  padding-inline-end: var(--pf-v6-c-form-control--m-error--PaddingInlineEnd, var(--pf-v6-c-form-control__textarea--m-error--PaddingInlineEnd));
14972
15022
  }
@@ -19128,7 +19178,7 @@ ul.pf-v6-c-list {
19128
19178
 
19129
19179
  .pf-v6-c-nav__subnav {
19130
19180
  --pf-v6-c-nav__list--RowGap: var(--pf-v6-c-nav__subnav--RowGap);
19131
- max-height: 9999px;
19181
+ max-height: 99999px;
19132
19182
  padding-block-start: var(--pf-v6-c-nav__subnav--PaddingBlockStart);
19133
19183
  padding-block-end: var(--pf-v6-c-nav__subnav--PaddingBlockEnd);
19134
19184
  padding-inline-start: var(--pf-v6-c-nav__subnav--PaddingInlineStart);
@@ -21083,6 +21133,22 @@ ul.pf-v6-c-list {
21083
21133
  --pf-v6-c-progress__status-icon--Color: var(--pf-v6-c-progress--m-danger__status-icon--Color);
21084
21134
  --pf-v6-c-progress--m-inside__measure--Color: var(--pf-v6-c-progress--m-danger--m-inside__measure--Color);
21085
21135
  }
21136
+ @media (prefers-reduced-motion: no-preference) {
21137
+ .pf-v6-c-progress.pf-m-danger .pf-v6-c-progress__bar {
21138
+ translate: var(--pf-v6-global--danger-jiggle--TranslateX, 0);
21139
+ animation-name: pf-v6-global-danger-jiggle-motion;
21140
+ animation-duration: var(--pf-v6-global--danger-jiggle--AnimationDuration--Transform);
21141
+ animation-timing-function: var(--pf-v6-global--danger-jiggle--AnimationTimingFunction--Transform);
21142
+ animation-fill-mode: both;
21143
+ }
21144
+ }
21145
+ .pf-v6-c-progress.pf-m-danger .pf-v6-c-progress__status-icon {
21146
+ --pf-v6-c-progress--TransitionDuration--Opacity: var(--pf-t--global--motion--duration--fade--default);
21147
+ --pf-v6-c-progress--TransitionTimingFunction--Opacity: var(--pf-t--global--motion--timing-function--default);
21148
+ animation-name: pf-v6-global-fade-in;
21149
+ animation-duration: var(--pf-v6-c-progress--TransitionDuration--Opacity);
21150
+ animation-timing-function: var(--pf-v6-c-progress--TransitionTimingFunction--Opacity);
21151
+ }
21086
21152
 
21087
21153
  .pf-v6-c-progress__description {
21088
21154
  grid-column: 1/2;
@@ -24598,8 +24664,6 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
24598
24664
  --pf-v6-c-table__expandable-row--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
24599
24665
  --pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide: 0s;
24600
24666
  --pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
24601
- --pf-v6-c-table__expandable-row--TransitionDuration--slide: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide);
24602
- --pf-v6-c-table__expandable-row--TransitionDuration--fade: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
24603
24667
  --pf-v6-c-table__expandable-row--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
24604
24668
  --pf-v6-c-table__expandable-row--Opacity: 0;
24605
24669
  --pf-v6-c-table__tbody--m-expanded__expandable-row--Opacity: 1;
@@ -24936,6 +25000,39 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
24936
25000
  .pf-v6-c-table .pf-v6-c-button .pf-v6-c-table__sort-indicator {
24937
25001
  --pf-v6-c-table__sort-indicator--MarginInlineStart: 0;
24938
25002
  }
25003
+ .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row {
25004
+ display: revert;
25005
+ visibility: hidden;
25006
+ opacity: var(--pf-v6-c-table__expandable-row--Opacity);
25007
+ transition-delay: 0s, 0s, var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
25008
+ transition-timing-function: var(--pf-v6-c-table__expandable-row--TransitionTimingFunction);
25009
+ transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide), 0s;
25010
+ transition-property: opacity, translate, visibility;
25011
+ translate: 0 var(--pf-v6-c-table__expandable-row--TranslateY);
25012
+ }
25013
+ .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row[hidden] {
25014
+ display: revert;
25015
+ }
25016
+ .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row.pf-m-expanded {
25017
+ visibility: visible;
25018
+ opacity: var(--pf-v6-c-table__tbody--m-expanded__expandable-row--Opacity);
25019
+ transition-delay: 0s;
25020
+ transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--slide), 0s, 0s;
25021
+ translate: 0 var(--pf-v6-c-table__tbody--m-expanded__expandable-row--TranslateY);
25022
+ }
25023
+ .pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row.pf-m-expanded > :is(.pf-v6-c-table__td, .pf-v6-c-table__th) > .pf-v6-c-table__expandable-row-content {
25024
+ max-height: 99999px;
25025
+ }
25026
+ .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),
25027
+ .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 {
25028
+ padding: 0;
25029
+ overflow: hidden;
25030
+ transition-delay: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
25031
+ transition-property: padding, max-height, overflow;
25032
+ }
25033
+ .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 {
25034
+ max-height: 0;
25035
+ }
24939
25036
 
24940
25037
  [class*=pf-v6-c-table].pf-m-truncate {
24941
25038
  --pf-v6-c-table--cell--MinWidth: var(--pf-v6-c-table--m-truncate--cell--MinWidth);
@@ -25240,28 +25337,26 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
25240
25337
  .pf-v6-c-table__expandable-row {
25241
25338
  position: relative;
25242
25339
  border-block-end: 0 solid transparent;
25243
- opacity: var(--pf-v6-c-table__expandable-row--Opacity);
25244
- transition-timing-function: var(--pf-v6-c-table__expandable-row--TransitionTimingFunction);
25245
- transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--slide), var(--pf-v6-c-table__expandable-row--TransitionDuration--fade);
25246
- transition-property: opacity, translate, display;
25247
- transition-behavior: allow-discrete;
25248
- translate: 0 var(--pf-v6-c-table__expandable-row--TranslateY);
25249
25340
  }
25250
- :not(.pf-v6-c-table__control-row) ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__th,
25251
- :not(.pf-v6-c-table__control-row) ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__td {
25341
+ .pf-v6-c-table__expandable-row > .pf-v6-c-table__th,
25342
+ .pf-v6-c-table__expandable-row > .pf-v6-c-table__td {
25252
25343
  padding-block-start: 0;
25253
25344
  }
25254
-
25255
- .pf-v6-c-table__expandable-row td:where(.pf-v6-c-table__td).pf-m-no-padding,
25256
- .pf-v6-c-table__expandable-row th:where(.pf-v6-c-table__th).pf-m-no-padding {
25345
+ .pf-v6-c-table__control-row ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__th,
25346
+ .pf-v6-c-table__control-row ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__td {
25347
+ padding-block-start: var(--pf-v6-c-table--cell--PaddingBlockStart);
25348
+ }
25349
+ .pf-v6-c-table__expandable-row .pf-v6-c-table__td.pf-m-no-padding,
25350
+ .pf-v6-c-table__expandable-row .pf-v6-c-table__th.pf-m-no-padding {
25257
25351
  padding-block-start: 0;
25258
25352
  padding-block-end: 0;
25259
25353
  padding-inline-start: 0;
25260
25354
  padding-inline-end: 0;
25261
25355
  }
25262
- .pf-v6-c-table__expandable-row td:where(.pf-v6-c-table__td).pf-m-no-padding .pf-v6-c-table__expandable-row-content,
25263
- .pf-v6-c-table__expandable-row th:where(.pf-v6-c-table__th).pf-m-no-padding .pf-v6-c-table__expandable-row-content {
25356
+ .pf-v6-c-table__expandable-row .pf-v6-c-table__td.pf-m-no-padding .pf-v6-c-table__expandable-row-content,
25357
+ .pf-v6-c-table__expandable-row .pf-v6-c-table__th.pf-m-no-padding .pf-v6-c-table__expandable-row-content {
25264
25358
  padding: 0;
25359
+ border-radius: 0;
25265
25360
  }
25266
25361
  .pf-v6-c-table__expandable-row .pf-v6-c-table__expandable-row-content {
25267
25362
  padding-block-start: var(--pf-v6-c-table__expandable-row-content--PaddingBlockStart);
@@ -25271,18 +25366,12 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
25271
25366
  background-color: var(--pf-v6-c-table__expandable-row-content--BackgroundColor);
25272
25367
  border-radius: var(--pf-v6-c-table__expandable-row-content--BorderRadius);
25273
25368
  }
25369
+ .pf-v6-c-table__expandable-row .pf-v6-c-table__expandable-row-content.pf-m-no-background {
25370
+ background-color: transparent;
25371
+ }
25274
25372
  .pf-v6-c-table__expandable-row.pf-m-expanded {
25275
25373
  border-block-end-color: var(--pf-v6-c-table__expandable-row--m-expanded--BorderBlockEndColor);
25276
25374
  border-block-end-width: var(--pf-v6-c-table--border-width--base);
25277
- opacity: var(--pf-v6-c-table__tbody--m-expanded__expandable-row--Opacity);
25278
- transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--slide), var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade);
25279
- translate: 0 var(--pf-v6-c-table__tbody--m-expanded__expandable-row--TranslateY);
25280
- }
25281
- @starting-style {
25282
- .pf-v6-c-table__expandable-row.pf-m-expanded {
25283
- opacity: var(--pf-v6-c-table__expandable-row--Opacity);
25284
- translate: 0 var(--pf-v6-c-table__expandable-row--TranslateY);
25285
- }
25286
25375
  }
25287
25376
  .pf-v6-c-table__expandable-row:not(.pf-m-expanded) {
25288
25377
  display: none;
@@ -25291,6 +25380,10 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
25291
25380
  border-block-end: 0;
25292
25381
  }
25293
25382
 
25383
+ .pf-v6-c-table__tr:has(~ .pf-v6-c-table__expandable-row) {
25384
+ border-block-end: 0;
25385
+ }
25386
+
25294
25387
  .pf-v6-c-table.pf-m-compact {
25295
25388
  --pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-compact--cell--PaddingBlockStart);
25296
25389
  --pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--m-compact--cell--PaddingBlockEnd);
@@ -25346,7 +25439,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
25346
25439
  }
25347
25440
  .pf-v6-c-table.pf-m-expandable .pf-v6-c-table__tbody.pf-m-expanded .pf-v6-c-table__control-row {
25348
25441
  background-color: var(--pf-v6-c-table__control-row--BackgroundColor);
25349
- border-block-end: var(--pf-v6-c-table__control-row--BorderBlockEndWidth) solid var(--pf-v6-c-table__control-row__tbody--BorderBlockEndColor);
25442
+ border-block-end: 0;
25350
25443
  }
25351
25444
 
25352
25445
  .pf-v6-c-table__tr {
@@ -27302,6 +27395,22 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
27302
27395
  --pf-v6-c-text-input-group--m-hover--BorderColor: var(--pf-v6-c-text-input-group--m-hover--m-error--BorderColor);
27303
27396
  --pf-v6-c-text-input-group__icon--m-status--Color: var(--pf-v6-c-text-input-group__main--m-error__icon--m-status--Color);
27304
27397
  }
27398
+ @media (prefers-reduced-motion: no-preference) {
27399
+ .pf-v6-c-text-input-group.pf-m-error {
27400
+ translate: var(--pf-v6-global--danger-jiggle--TranslateX, 0);
27401
+ animation-name: pf-v6-global-danger-jiggle-motion;
27402
+ animation-duration: var(--pf-v6-global--danger-jiggle--AnimationDuration--Transform);
27403
+ animation-timing-function: var(--pf-v6-global--danger-jiggle--AnimationTimingFunction--Transform);
27404
+ animation-fill-mode: both;
27405
+ }
27406
+ }
27407
+ .pf-v6-c-text-input-group.pf-m-error .pf-v6-c-text-input-group__icon.pf-m-status {
27408
+ --pf-v6-c-text-input-group--TransitionDuration--Opacity: var(--pf-t--global--motion--duration--fade--default);
27409
+ --pf-v6-c-text-input-group--TransitionTimingFunction--Opacity: var(--pf-t--global--motion--timing-function--default);
27410
+ animation-name: pf-v6-global-fade-in;
27411
+ animation-duration: var(--pf-v6-c-text-input-group--TransitionDuration--Opacity);
27412
+ animation-timing-function: var(--pf-v6-c-text-input-group--TransitionTimingFunction--Opacity);
27413
+ }
27305
27414
  .pf-v6-c-text-input-group:hover {
27306
27415
  --pf-v6-c-text-input-group--BorderColor: var(--pf-v6-c-text-input-group--m-hover--BorderColor);
27307
27416
  }
@@ -30159,7 +30268,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
30159
30268
  --pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate);
30160
30269
  }
30161
30270
  .pf-v6-c-tree-view__list-item.pf-m-expanded > .pf-v6-c-tree-view__list {
30162
- max-height: 9999px;
30271
+ max-height: 99999px;
30163
30272
  visibility: revert;
30164
30273
  opacity: var(--pf-v6-c-tree-view--m-expanded__list--Opacity);
30165
30274
  transition-delay: 0s;