@patternfly/react-styles 6.3.0-prerelease.2 → 6.3.0-prerelease.4

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,18 @@
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-prerelease.4](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.3.0-prerelease.3...@patternfly/react-styles@6.3.0-prerelease.4) (2025-06-11)
7
+
8
+ ### Features
9
+
10
+ - **Form:** enabled opt-in animations for expandable fieldgroup ([#11843](https://github.com/patternfly/patternfly-react/issues/11843)) ([8c6618b](https://github.com/patternfly/patternfly-react/commit/8c6618b87876924b7ef9b3651b86abb65e7e2dd4))
11
+
12
+ # [6.3.0-prerelease.3](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.3.0-prerelease.2...@patternfly/react-styles@6.3.0-prerelease.3) (2025-05-21)
13
+
14
+ ### Features
15
+
16
+ - **Tabs:** added animations ([#11767](https://github.com/patternfly/patternfly-react/issues/11767)) ([bae4fc3](https://github.com/patternfly/patternfly-react/commit/bae4fc36aa39007d9474236cbada62ac55a27989))
17
+
6
18
  # [6.3.0-prerelease.2](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.3.0-prerelease.1...@patternfly/react-styles@6.3.0-prerelease.2) (2025-05-20)
7
19
 
8
20
  ### Bug Fixes
@@ -183,33 +183,32 @@
183
183
  }
184
184
 
185
185
  .pf-v6-c-accordion__expandable-content {
186
- display: none;
187
- margin-block-end: var(--pf-v6-c-accordion__expandable-content--MarginBlockEnd);
186
+ max-height: 0;
188
187
  margin-inline-start: var(--pf-v6-c-accordion__expandable-content--MarginInlineStart);
189
188
  margin-inline-end: var(--pf-v6-c-accordion__expandable-content--MarginInlineEnd);
190
189
  font-size: var(--pf-v6-c-accordion__expandable-content--FontSize);
191
190
  color: var(--pf-v6-c-accordion__expandable-content--Color);
191
+ visibility: hidden;
192
192
  background-color: var(--pf-v6-c-accordion__expandable-content--BackgroundColor);
193
193
  border-radius: var(--pf-v6-c-accordion__expandable-content--BorderRadius);
194
194
  opacity: var(--pf-v6-c-accordion__expandable-content--Opacity);
195
+ transition-delay: 0s, 0s, var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade);
195
196
  transition-timing-function: var(--pf-v6-c-accordion__expandable-content--TransitionTimingFunction);
196
- transition-duration: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--slide), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade);
197
- transition-property: opacity, translate, display;
198
- transition-behavior: allow-discrete;
197
+ transition-duration: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--slide), 0s, 0s, 0s;
198
+ transition-property: opacity, translate, visibility, max-height, margin-block-end;
199
199
  translate: 0 var(--pf-v6-c-accordion__expandable-content--TranslateY);
200
200
  }
201
201
  .pf-v6-c-accordion__expandable-content.pf-m-fixed {
202
- max-height: var(--pf-v6-c-accordion__expandable-content--m-fixed--MaxHeight);
203
202
  overflow-y: auto;
204
203
  }
205
204
  .pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content {
206
- display: revert;
205
+ max-height: 9999px;
206
+ margin-block-end: var(--pf-v6-c-accordion__expandable-content--MarginBlockEnd);
207
+ visibility: revert;
208
+ transition-delay: 0s;
207
209
  }
208
- @starting-style {
209
- .pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content {
210
- --pf-v6-c-accordion__expandable-content--Opacity: 0;
211
- --pf-v6-c-accordion__expandable-content--TranslateY: -.5rem;
212
- }
210
+ .pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content.pf-m-fixed {
211
+ max-height: var(--pf-v6-c-accordion__expandable-content--m-fixed--MaxHeight);
213
212
  }
214
213
 
215
214
  .pf-v6-c-accordion__expandable-content-body {
@@ -21,6 +21,17 @@
21
21
  --pf-v6-c-dual-list-selector__menu--MinHeight: 12.5rem;
22
22
  --pf-v6-c-dual-list-selector__menu--MaxHeight: 20rem;
23
23
  --pf-v6-c-dual-list-selector__menu--MarginBlockStart: var(--pf-t--global--spacer--md);
24
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--expand--slide: 0s;
25
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
26
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--slide: 0s;
27
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
28
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--slide: var(--pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--slide);
29
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--fade: var(--pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--fade);
30
+ --pf-v6-c-dual-list-selector__list--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
31
+ --pf-v6-c-dual-list-selector__list--Opacity: 0;
32
+ --pf-v6-c-dual-list-selector--m-expanded__list--Opacity: 1;
33
+ --pf-v6-c-dual-list-selector__list--TranslateY: 0;
34
+ --pf-v6-c-dual-list-selector--m-expanded__list--TranslateY: 0;
24
35
  --pf-v6-c-dual-list-selector__list-item-row--FontSize: var(--pf-t--global--font--size--sm);
25
36
  --pf-v6-c-dual-list-selector__list-item-row--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
26
37
  --pf-v6-c-dual-list-selector__list-item-row--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
@@ -58,6 +69,13 @@
58
69
  --pf-v6-c-dual-list-selector__item-toggle-icon--MinWidth: var(--pf-v6-c-dual-list-selector__list-item-row--FontSize);
59
70
  --pf-v6-c-dual-list-selector__list-item--m-disabled__item-toggle-icon--Color: var(--pf-t--global--icon--color--disabled);
60
71
  }
72
+ @media screen and (prefers-reduced-motion: no-preference) {
73
+ .pf-v6-c-dual-list-selector {
74
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
75
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
76
+ --pf-v6-c-dual-list-selector__list--TranslateY: -.5rem;
77
+ }
78
+ }
61
79
 
62
80
  .pf-v6-c-dual-list-selector {
63
81
  display: grid;
@@ -153,9 +171,27 @@
153
171
  .pf-v6-c-dual-list-selector__list-item.pf-m-expandable {
154
172
  --pf-v6-c-dual-list-selector__item--PaddingInlineStart: var(--pf-v6-c-dual-list-selector__item--m-expandable--PaddingInlineStart);
155
173
  }
174
+ .pf-v6-c-dual-list-selector.pf-m-animate-expand .pf-v6-c-dual-list-selector__list-item.pf-m-expandable > .pf-v6-c-dual-list-selector__list {
175
+ max-height: 0;
176
+ visibility: hidden;
177
+ opacity: var(--pf-v6-c-dual-list-selector__list--Opacity);
178
+ transition-delay: 0s, 0s, var(--pf-v6-c-dual-list-selector__list--TransitionDuration--fade), var(--pf-v6-c-dual-list-selector__list--TransitionDuration--fade);
179
+ transition-timing-function: var(--pf-v6-c-dual-list-selector__list--TransitionTimingFunction);
180
+ transition-duration: var(--pf-v6-c-dual-list-selector__list--TransitionDuration--fade), var(--pf-v6-c-dual-list-selector__list--TransitionDuration--slide), 0s, 0s;
181
+ transition-property: opacity, translate, visibility, max-height;
182
+ translate: 0 var(--pf-v6-c-dual-list-selector__list--TranslateY);
183
+ }
156
184
  .pf-v6-c-dual-list-selector__list-item.pf-m-expanded {
157
185
  --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);
158
186
  }
187
+ .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 {
188
+ max-height: 9999px;
189
+ visibility: revert;
190
+ opacity: var(--pf-v6-c-dual-list-selector--m-expanded__list--Opacity);
191
+ transition-delay: 0s;
192
+ transition-duration: var(--pf-v6-c-dual-list-selector__list--TransitionDuration--expand--fade), var(--pf-v6-c-dual-list-selector__list--TransitionDuration--expand--slide), 0s, 0s;
193
+ translate: 0 var(--pf-v6-c-dual-list-selector--m-expanded__list--TranslateY);
194
+ }
159
195
  .pf-v6-c-dual-list-selector__list-item.pf-m-disabled {
160
196
  --pf-v6-c-dual-list-selector__item-text--Color: var(--pf-v6-c-dual-list-selector__list-item--m-disabled__item-text--Color);
161
197
  --pf-v6-c-dual-list-selector__item-toggle-icon--Color: var(--pf-v6-c-dual-list-selector__list-item--m-disabled__item-toggle-icon--Color);
@@ -31,6 +31,7 @@ declare const _default: {
31
31
  "chosen": "pf-m-chosen",
32
32
  "dragOver": "pf-m-drag-over",
33
33
  "expandable": "pf-m-expandable",
34
+ "animateExpand": "pf-m-animate-expand",
34
35
  "expanded": "pf-m-expanded",
35
36
  "disabled": "pf-m-disabled",
36
37
  "selected": "pf-m-selected",
@@ -33,6 +33,7 @@ exports.default = {
33
33
  "chosen": "pf-m-chosen",
34
34
  "dragOver": "pf-m-drag-over",
35
35
  "expandable": "pf-m-expandable",
36
+ "animateExpand": "pf-m-animate-expand",
36
37
  "expanded": "pf-m-expanded",
37
38
  "disabled": "pf-m-disabled",
38
39
  "selected": "pf-m-selected",
@@ -31,6 +31,7 @@ export default {
31
31
  "chosen": "pf-m-chosen",
32
32
  "dragOver": "pf-m-drag-over",
33
33
  "expandable": "pf-m-expandable",
34
+ "animateExpand": "pf-m-animate-expand",
34
35
  "expanded": "pf-m-expanded",
35
36
  "disabled": "pf-m-disabled",
36
37
  "selected": "pf-m-selected",
@@ -16,6 +16,7 @@
16
16
  --pf-v6-c-expandable-section__content--TransitionDuration--slide: var(--pf-v6-c-expandable-section__content--TransitionDuration--collapse--slide);
17
17
  --pf-v6-c-expandable-section__content--TransitionDuration--fade: var(--pf-v6-c-expandable-section__content--TransitionDuration--collapse--fade);
18
18
  --pf-v6-c-expandable-section__content--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
19
+ --pf-v6-c-expandable-section__content--TransitionDelay--hide: var(--pf-v6-c-expandable-section__content--TransitionDuration--fade);
19
20
  --pf-v6-c-expandable-section__content--Opacity: 0;
20
21
  --pf-v6-c-expandable-section__content--TranslateY: 0;
21
22
  --pf-v6-c-expandable-section--m-expanded__content--Opacity: 1;
@@ -31,7 +32,7 @@
31
32
  --pf-v6-c-expandable-section--m-display-lg--BorderWidth: var(--pf-t--global--border--width--box--default);
32
33
  --pf-v6-c-expandable-section--m-display-lg--BorderColor: var(--pf-t--global--border--color--default);
33
34
  --pf-v6-c-expandable-section--m-display-lg--BorderRadius: var(--pf-t--global--border--radius--medium);
34
- --pf-v6-c-expandable-section--m-display-lg--TransitionDelay: var(--pf-v6-c-expandable-section__content--TransitionDuration--fade);
35
+ --pf-v6-c-expandable-section--m-display-lg--TransitionDelay: var(--pf-v6-c-expandable-section__content--TransitionDuration--collapse--fade);
35
36
  --pf-v6-c-expandable-section--m-indented__content--PaddingInlineStart: calc(var(--pf-t--global--spacer--action--horizontal--plain--default) + var(--pf-t--global--spacer--gap--text-to-element--default) + var(--pf-v6-c-expandable-section__toggle-icon--MinWidth));
36
37
  --pf-v6-c-expandable-section--m-truncate__content--LineClamp: 3;
37
38
  --pf-v6-c-expandable-section--m-truncate--Gap: var(--pf-t--global--spacer--xs);
@@ -47,7 +48,10 @@
47
48
  .pf-v6-c-expandable-section {
48
49
  display: flex;
49
50
  flex-direction: column;
50
- gap: var(--pf-v6-c-expandable-section--Gap);
51
+ gap: 0;
52
+ transition-delay: var(--pf-v6-c-expandable-section__content--TransitionDelay--hide);
53
+ transition-duration: 0s;
54
+ transition-property: gap, padding-block-end;
51
55
  }
52
56
  .pf-v6-c-expandable-section.pf-m-expanded {
53
57
  --pf-v6-c-expandable-section__toggle-icon--Rotate: var(--pf-v6-c-expandable-section--m-expanded__toggle-icon--Rotate);
@@ -57,7 +61,10 @@
57
61
  --pf-v6-c-expandable-section__content--TransitionDuration--fade: var(--pf-v6-c-expandable-section__content--TransitionDuration--expand--fade);
58
62
  --pf-v6-c-expandable-section__content--Opacity: var(--pf-v6-c-expandable-section--m-expanded__content--Opacity);
59
63
  --pf-v6-c-expandable-section__content--TranslateY: var(--pf-v6-c-expandable-section--m-expanded__content--TranslateY);
60
- --pf-v6-c-expandable-section--m-display-lg--TransitionDelay: 0s;
64
+ --pf-v6-c-expandable-section__content--Visibility: auto;
65
+ --pf-v6-c-expandable-section__content--MaxHeight: 9999px;
66
+ --pf-v6-c-expandable-section__content--TransitionDelay--hide: 0s;
67
+ gap: var(--pf-v6-c-expandable-section--Gap);
61
68
  }
62
69
  .pf-v6-c-expandable-section.pf-m-limit-width {
63
70
  --pf-v6-c-expandable-section__content--MaxWidth: var(--pf-v6-c-expandable-section--m-limit-width__content--MaxWidth);
@@ -70,7 +77,6 @@
70
77
  background-color: var(--pf-v6-c-expandable-section--m-display-lg--BackgroundColor);
71
78
  border: var(--pf-v6-c-expandable-section--m-display-lg--BorderWidth) solid var(--pf-v6-c-expandable-section--m-display-lg--BorderColor);
72
79
  border-radius: var(--pf-v6-c-expandable-section--m-display-lg--BorderRadius);
73
- transition: padding-block-end 0s var(--pf-v6-c-expandable-section--m-display-lg--TransitionDelay, 0s);
74
80
  }
75
81
  .pf-v6-c-expandable-section.pf-m-indented {
76
82
  --pf-v6-c-expandable-section__content--PaddingInlineStart: var(--pf-v6-c-expandable-section--m-indented__content--PaddingInlineStart);
@@ -109,20 +115,12 @@
109
115
  display: revert;
110
116
  }
111
117
  .pf-v6-c-expandable-section:where(:not(.pf-m-truncate)) .pf-v6-c-expandable-section__content {
112
- display: none;
118
+ max-height: var(--pf-v6-c-expandable-section__content--MaxHeight, 0);
119
+ visibility: var(--pf-v6-c-expandable-section__content--Visibility, hidden);
113
120
  opacity: var(--pf-v6-c-expandable-section__content--Opacity);
121
+ transition-delay: 0s, 0s, var(--pf-v6-c-expandable-section__content--TransitionDelay--hide, 0s), var(--pf-v6-c-expandable-section__content--TransitionDelay--hide, 0s);
114
122
  transition-timing-function: var(--pf-v6-c-expandable-section__content--TransitionTimingFunction);
115
- transition-duration: var(--pf-v6-c-expandable-section__content--TransitionDuration--fade), var(--pf-v6-c-expandable-section__content--TransitionDuration--slide), var(--pf-v6-c-expandable-section__content--TransitionDuration--fade);
116
- transition-property: opacity, translate, display;
117
- transition-behavior: allow-discrete;
123
+ transition-duration: var(--pf-v6-c-expandable-section__content--TransitionDuration--fade), var(--pf-v6-c-expandable-section__content--TransitionDuration--slide), 0s, 0s;
124
+ transition-property: opacity, translate, visibility, max-height;
118
125
  translate: 0 var(--pf-v6-c-expandable-section__content--TranslateY);
119
- }
120
- .pf-v6-c-expandable-section.pf-m-expanded .pf-v6-c-expandable-section__content {
121
- display: revert;
122
- }
123
- @starting-style {
124
- .pf-v6-c-expandable-section.pf-m-expanded .pf-v6-c-expandable-section__content {
125
- --pf-v6-c-expandable-section__content--Opacity: 0;
126
- --pf-v6-c-expandable-section__content--TranslateY: -.5rem;
127
- }
128
126
  }
@@ -78,6 +78,19 @@
78
78
  --pf-v6-c-form__field-group__field-group__field-group-body--GridColumn: 1 / 3;
79
79
  --pf-v6-c-form__field-group__field-group__field-group-toggle--field-group-body--GridColumn: 2 / 3;
80
80
  --pf-v6-c-form__field-group-body__field-group--last-child--MarginBlockEnd: calc(var(--pf-v6-c-form__field-group-body--PaddingBlockEnd) * -1);
81
+ --pf-v6-c-form__field-group-body--TranslateY: 0;
82
+ --pf-v6-c-form__field-group--m-expanded__field-group-body--TranslateY: 0;
83
+ --pf-v6-c-form__field-group-body--TransitionDuration--expand--slide: 0s;
84
+ --pf-v6-c-form__field-group-body--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
85
+ --pf-v6-c-form__field-group-body--TransitionDuration--collapse--slide: 0s;
86
+ --pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
87
+ }
88
+ @media screen and (prefers-reduced-motion: no-preference) {
89
+ .pf-v6-c-form {
90
+ --pf-v6-c-form__field-group-body--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
91
+ --pf-v6-c-form__field-group-body--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
92
+ --pf-v6-c-form__field-group-body--TranslateY: -.5rem;
93
+ }
81
94
  }
82
95
 
83
96
  .pf-v6-c-form {
@@ -434,6 +447,16 @@
434
447
  .pf-v6-c-form__field-group.pf-m-expanded > .pf-v6-c-form__field-group-toggle {
435
448
  --pf-v6-c-form__field-group-toggle-icon--Rotate: var(--pf-v6-c-form__field-group--m-expanded__toggle-icon--Rotate);
436
449
  }
450
+ .pf-v6-c-form__field-group.pf-m-expanded.pf-m-expandable > .pf-v6-c-form__field-group-body {
451
+ max-height: 9999px;
452
+ padding-block-start: var(--pf-v6-c-form__field-group-body--PaddingBlockStart);
453
+ padding-block-end: var(--pf-v6-c-form__field-group-body--PaddingBlockEnd);
454
+ visibility: visible;
455
+ opacity: 1;
456
+ transition-delay: 0s;
457
+ transition-duration: var(--pf-v6-c-form__field-group-body--TransitionDuration--expand--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--expand--slide), 0s, 0s, 0s, 0s;
458
+ translate: 0 var(--pf-v6-c-form__field-group--m-expanded__field-group-body--TranslateY);
459
+ }
437
460
 
438
461
  .pf-v6-c-form__field-group-toggle {
439
462
  grid-row: 1/2;
@@ -500,9 +523,17 @@
500
523
  display: grid;
501
524
  grid-column: var(--pf-v6-c-form__field-group-body--GridColumn);
502
525
  gap: var(--pf-v6-c-form__field-group-body--Gap);
503
- padding-block-start: var(--pf-v6-c-form__field-group-body--PaddingBlockStart);
504
- padding-block-end: var(--pf-v6-c-form__field-group-body--PaddingBlockEnd);
505
526
  }
527
+ .pf-v6-c-form__field-group.pf-m-expandable > .pf-v6-c-form__field-group-body {
528
+ max-height: 0;
529
+ visibility: hidden;
530
+ opacity: 0;
531
+ transition-delay: 0s, 0s, var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade);
532
+ transition-duration: var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--slide), 0s, 0s, 0s, 0s;
533
+ transition-property: opacity, translate, visibility, max-height, padding-block-start, padding-block-end;
534
+ translate: 0 var(--pf-v6-c-form__field-group-body--TranslateY);
535
+ }
536
+
506
537
  .pf-v6-c-form__field-group-body > .pf-v6-c-form__field-group:first-child {
507
538
  --pf-v6-c-form__field-group-toggle--PaddingBlockStart: 0;
508
539
  --pf-v6-c-form__field-group-header--PaddingBlockStart: 0;
@@ -46,7 +46,8 @@ declare const _default: {
46
46
  "stack": "pf-m-stack",
47
47
  "inactive": "pf-m-inactive",
48
48
  "hidden": "pf-m-hidden",
49
- "expanded": "pf-m-expanded"
49
+ "expanded": "pf-m-expanded",
50
+ "expandable": "pf-m-expandable"
50
51
  }
51
52
  };
52
53
  export default _default;
@@ -48,6 +48,7 @@ exports.default = {
48
48
  "stack": "pf-m-stack",
49
49
  "inactive": "pf-m-inactive",
50
50
  "hidden": "pf-m-hidden",
51
- "expanded": "pf-m-expanded"
51
+ "expanded": "pf-m-expanded",
52
+ "expandable": "pf-m-expandable"
52
53
  }
53
54
  };
@@ -46,6 +46,7 @@ export default {
46
46
  "stack": "pf-m-stack",
47
47
  "inactive": "pf-m-inactive",
48
48
  "hidden": "pf-m-hidden",
49
- "expanded": "pf-m-expanded"
49
+ "expanded": "pf-m-expanded",
50
+ "expandable": "pf-m-expandable"
50
51
  }
51
52
  };
@@ -52,9 +52,13 @@
52
52
  --pf-v6-c-nav__subnav--PaddingBlockStart: var(--pf-v6-c-nav__item--RowGap);
53
53
  --pf-v6-c-nav__subnav--PaddingBlockEnd: var(--pf-v6-c-nav__item--RowGap);
54
54
  --pf-v6-c-nav__subnav--PaddingInlineStart: var(--pf-t--global--spacer--md);
55
- --pf-v6-c-nav__subnav--TransitionDuration--expand: var(--pf-t--global--motion--duration--slide-in--default);
56
- --pf-v6-c-nav__subnav--TransitionDuration--collapse: var(--pf-t--global--motion--duration--slide-in--short);
55
+ --pf-v6-c-nav__subnav--TransitionDuration--expand: var(--pf-t--global--motion--duration--fade--default);
56
+ --pf-v6-c-nav__subnav--TransitionDuration--expand--slide: 0s;
57
+ --pf-v6-c-nav__subnav--TransitionDuration--collapse: var(--pf-t--global--motion--duration--fade--short);
58
+ --pf-v6-c-nav__subnav--TransitionDuration--collapse--slide: 0s;
57
59
  --pf-v6-c-nav__subnav--TransitionTimingFunction--expand: var(--pf-t--global--motion--timing-function--default);
60
+ --pf-v6-c-nav__subnav--TranslateY: 0;
61
+ --pf-v6-c-nav__subnav--hidden--TranslateY: 0;
58
62
  --pf-v6-c-nav__scroll-button--BorderColor: var(--pf-t--global--border--color--default);
59
63
  --pf-v6-c-nav__scroll-button--BorderWidth: var(--pf-t--global--border--width--divider--default);
60
64
  --pf-v6-c-nav__scroll-button--first-of-type--c-button--BorderStartStartRadius: var(--pf-t--global--border--radius--pill);
@@ -83,6 +87,13 @@
83
87
  --pf-v6-c-nav--m-horizontal--m-subnav__link--PaddingInlineStart: var(--pf-t--global--spacer--md);
84
88
  --pf-v6-c-nav--m-horizontal--m-subnav__link--PaddingInlineEnd: var(--pf-t--global--spacer--md);
85
89
  }
90
+ @media screen and (prefers-reduced-motion: no-preference) {
91
+ .pf-v6-c-nav {
92
+ --pf-v6-c-nav__subnav--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
93
+ --pf-v6-c-nav__subnav--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
94
+ --pf-v6-c-nav__subnav--hidden--TranslateY: -.5rem;
95
+ }
96
+ }
86
97
 
87
98
  .pf-v6-c-nav,
88
99
  .pf-v6-c-nav__section,
@@ -153,24 +164,27 @@
153
164
 
154
165
  .pf-v6-c-nav__subnav {
155
166
  --pf-v6-c-nav__list--RowGap: var(--pf-v6-c-nav__subnav--RowGap);
156
- grid-template-rows: 1fr;
157
- min-height: 0;
167
+ max-height: 9999px;
158
168
  padding-block-start: var(--pf-v6-c-nav__subnav--PaddingBlockStart);
159
169
  padding-block-end: var(--pf-v6-c-nav__subnav--PaddingBlockEnd);
160
170
  padding-inline-start: var(--pf-v6-c-nav__subnav--PaddingInlineStart);
161
171
  overflow-y: clip;
162
- transition-delay: 0s, var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s), var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s), var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s), var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s);
172
+ visibility: visible;
173
+ transition-delay: 0s, 0s, var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s), var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s), var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s), var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s);
163
174
  transition-timing-function: var(--pf-v6-c-nav__subnav--TransitionTimingFunction--expand);
164
- transition-duration: var(--pf-v6-c-nav__subnav--TransitionDuration--expand), 0s, 0s, 0s, 0s;
165
- transition-property: opacity, visibility, grid-template-rows, padding-block-start, padding-block-end;
175
+ transition-duration: var(--pf-v6-c-nav__subnav--TransitionDuration--expand), var(--pf-v6-c-nav__subnav--TransitionDuration--expand--slide), 0s, 0s, 0s, 0s;
176
+ transition-property: opacity, translate, visibility, max-height, padding-block-start, padding-block-end;
177
+ translate: 0 var(--pf-v6-c-nav__subnav--TranslateY);
166
178
  }
167
179
  .pf-v6-c-nav__subnav[hidden] {
168
180
  --pf-v6-c-nav__subnav--TransitionDelay--expand--focus: var(--pf-v6-c-nav__subnav--TransitionDuration--expand);
169
181
  --pf-v6-c-nav__subnav--TransitionDuration--expand: var(--pf-v6-c-nav__subnav--TransitionDuration--collapse);
182
+ --pf-v6-c-nav__subnav--TransitionDuration--expand--slide: var(--pf-v6-c-nav__subnav--TransitionDuration--collapse--slide);
170
183
  --pf-v6-c-nav__subnav--PaddingBlockStart: 0;
171
184
  --pf-v6-c-nav__subnav--PaddingBlockEnd: 0;
185
+ --pf-v6-c-nav__subnav--TranslateY: var(--pf-v6-c-nav__subnav--hidden--TranslateY);
172
186
  display: grid;
173
- grid-template-rows: 0fr;
187
+ max-height: 0;
174
188
  visibility: hidden;
175
189
  opacity: 0;
176
190
  }
@@ -8,6 +8,7 @@
8
8
  --pf-v6-c-spinner--StrokeWidth: 10;
9
9
  --pf-v6-c-spinner__path--StrokeWidth: var(--pf-v6-c-spinner--StrokeWidth);
10
10
  --pf-v6-c-spinner__path--AnimationTimingFunction: ease-in-out;
11
+ --pf-v6-c-spinner--m-xs--diameter: var(--pf-t--global--icon--size--sm);
11
12
  --pf-v6-c-spinner--m-sm--diameter: var(--pf-t--global--icon--size--md);
12
13
  --pf-v6-c-spinner--m-md--diameter: var(--pf-t--global--icon--size--lg);
13
14
  --pf-v6-c-spinner--m-lg--diameter: var(--pf-t--global--icon--size--xl);
@@ -24,6 +25,10 @@
24
25
  .pf-v6-c-spinner.pf-m-inline {
25
26
  --pf-v6-c-spinner--diameter: var(--pf-v6-c-spinner--m-inline--diameter);
26
27
  }
28
+ .pf-v6-c-spinner.pf-m-xs {
29
+ --pf-v6-c-spinner--diameter: var(--pf-v6-c-spinner--m-xs--diameter);
30
+ --pf-v6-c-spinner--StrokeWidth: 15;
31
+ }
27
32
  .pf-v6-c-spinner.pf-m-sm {
28
33
  --pf-v6-c-spinner--diameter: var(--pf-v6-c-spinner--m-sm--diameter);
29
34
  }
@@ -2,6 +2,7 @@ import './spinner.css';
2
2
  declare const _default: {
3
3
  "modifiers": {
4
4
  "inline": "pf-m-inline",
5
+ "xs": "pf-m-xs",
5
6
  "sm": "pf-m-sm",
6
7
  "md": "pf-m-md",
7
8
  "lg": "pf-m-lg",
@@ -4,6 +4,7 @@ require('./spinner.css');
4
4
  exports.default = {
5
5
  "modifiers": {
6
6
  "inline": "pf-m-inline",
7
+ "xs": "pf-m-xs",
7
8
  "sm": "pf-m-sm",
8
9
  "md": "pf-m-md",
9
10
  "lg": "pf-m-lg",
@@ -2,6 +2,7 @@ import './spinner.css';
2
2
  export default {
3
3
  "modifiers": {
4
4
  "inline": "pf-m-inline",
5
+ "xs": "pf-m-xs",
5
6
  "sm": "pf-m-sm",
6
7
  "md": "pf-m-md",
7
8
  "lg": "pf-m-lg",
@@ -34,6 +34,7 @@
34
34
  --pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart: var(--pf-t--global--spacer--sm);
35
35
  --pf-v6-c-table--cell--responsive--PaddingInlineEnd: 0;
36
36
  --pf-v6-c-table--cell--responsive--PaddingInlineStart: 0;
37
+ --pf-v6-c-table--cell--responsive--th--FontWeight: var(--pf-t--global--font--weight--body--bold);
37
38
  --pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart: var(--pf-t--global--spacer--sm);
38
39
  --pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
39
40
  --pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart: var(--pf-t--global--spacer--xs);
@@ -158,7 +159,7 @@
158
159
  }
159
160
  .pf-m-grid.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
160
161
  position: revert;
161
- font-weight: bold;
162
+ font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
162
163
  text-align: start;
163
164
  content: attr(data-label);
164
165
  }
@@ -458,7 +459,7 @@
458
459
  }
459
460
  .pf-m-grid-md.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
460
461
  position: revert;
461
- font-weight: bold;
462
+ font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
462
463
  text-align: start;
463
464
  content: attr(data-label);
464
465
  }
@@ -761,7 +762,7 @@
761
762
  }
762
763
  .pf-m-grid-lg.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
763
764
  position: revert;
764
- font-weight: bold;
765
+ font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
765
766
  text-align: start;
766
767
  content: attr(data-label);
767
768
  }
@@ -1064,7 +1065,7 @@
1064
1065
  }
1065
1066
  .pf-m-grid-xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
1066
1067
  position: revert;
1067
- font-weight: bold;
1068
+ font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
1068
1069
  text-align: start;
1069
1070
  content: attr(data-label);
1070
1071
  }
@@ -1367,7 +1368,7 @@
1367
1368
  }
1368
1369
  .pf-m-grid-2xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
1369
1370
  position: revert;
1370
- font-weight: bold;
1371
+ font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
1371
1372
  text-align: start;
1372
1373
  content: attr(data-label);
1373
1374
  }
@@ -96,25 +96,28 @@
96
96
  --pf-v6-c-tabs__item--m-current__link--after--BorderColor: var(--pf-t--global--border--color--clicked);
97
97
  --pf-v6-c-tabs__item--m-current__link--after--BorderWidth: var(--pf-t--global--border--width--extra-strong);
98
98
  --pf-v6-c-tabs--link-accent--start: 0;
99
- --pf-v6-c-tabs--link-accent--length: auto;
99
+ --pf-v6-c-tabs--link-accent--length: 0;
100
100
  --pf-v6-c-tabs--link-accent--color: var(--pf-v6-c-tabs__item--m-current__link--after--BorderColor);
101
101
  --pf-v6-c-tabs--link-accent--border-size: var(--pf-v6-c-tabs__item--m-current__link--after--BorderWidth);
102
+ --pf-v6-c-tabs--link-accent--TransitionDuration: var(--pf-t--global--motion--duration--md);
103
+ --pf-v6-c-tabs--link-accent--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
102
104
  --pf-v6-c-tabs--link-accent--InsetBlockStart: auto;
103
105
  --pf-v6-c-tabs--link-accent--InsetBlockEnd: 0;
104
- --pf-v6-c-tabs--link-accent--InsetInlineStart: initial;
106
+ --pf-v6-c-tabs--link-accent--InsetInlineStart: 0;
105
107
  --pf-v6-c-tabs--link-accent--Width: initial;
106
108
  --pf-v6-c-tabs--link-accent--Height: 0;
107
109
  --pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--link-accent--border-size);
108
110
  --pf-v6-c-tabs--link-accent--BorderInlineStartWidth: 0;
109
- --pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart: initial;
111
+ --pf-v6-c-tabs--link-accent--TranslateX: var(--pf-v6-c-tabs--link-accent--start);
112
+ --pf-v6-c-tabs--link-accent--TranslateY: 0;
113
+ --pf-v6-c-tabs--link-accent--TransformOrigin: 0 center;
114
+ --pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart: 0;
110
115
  --pf-v6-c-tabs--m-vertical--link-accent--InsetBlockEnd: auto;
111
- --pf-v6-c-tabs--m-vertical--link-accent--InsetInlineStart: 0;
112
- --pf-v6-c-tabs--m-vertical--link-accent--Width: 0;
113
- --pf-v6-c-tabs--m-vertical--link-accent--Height: initial;
114
116
  --pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth: 0;
115
117
  --pf-v6-c-tabs--m-vertical--link-accent--BorderInlineStartWidth: var(--pf-v6-c-tabs--link-accent--border-size);
116
- --pf-v6-c-tabs--link-accent--TransitionDuration: var(--pf-t--global--motion--duration--md);
117
- --pf-v6-c-tabs--link-accent--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
118
+ --pf-v6-c-tabs--m-vertical--link-accent--TranslateX: 0;
119
+ --pf-v6-c-tabs--m-vertical--link-accent--TranslateY: var(--pf-v6-c-tabs--link-accent--start);
120
+ --pf-v6-c-tabs--m-vertical--link-accent--TransformOrigin: center 0;
118
121
  --pf-v6-c-tabs__scroll-button--PaddingBlockStart: var(--pf-t--global--spacer--sm);
119
122
  --pf-v6-c-tabs__scroll-button--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
120
123
  --pf-v6-c-tabs__scroll-button--PaddingInlineStart: var(--pf-t--global--spacer--sm);
@@ -274,11 +277,13 @@
274
277
  --pf-v6-c-tabs__list--ScrollSnapTypeAxis: var(--pf-v6-c-tabs--m-vertical__list--ScrollSnapTypeAxis);
275
278
  --pf-v6-c-tabs--link-accent--InsetBlockStart: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart);
276
279
  --pf-v6-c-tabs--link-accent--InsetBlockEnd: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockEnd);
277
- --pf-v6-c-tabs--link-accent--InsetInlineStart: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetInlineStart);
278
280
  --pf-v6-c-tabs--link-accent--Width: var(--pf-v6-c-tabs--m-vertical--link-accent--Width);
279
281
  --pf-v6-c-tabs--link-accent--Height: var(--pf-v6-c-tabs--m-vertical--link-accent--Height);
280
282
  --pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth);
281
283
  --pf-v6-c-tabs--link-accent--BorderInlineStartWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderInlineStartWidth);
284
+ --pf-v6-c-tabs--link-accent--TranslateX: var(--pf-v6-c-tabs--m-vertical--link-accent--TranslateX);
285
+ --pf-v6-c-tabs--link-accent--TranslateY: var(--pf-v6-c-tabs--m-vertical--link-accent--TranslateY);
286
+ --pf-v6-c-tabs--link-accent--TransformOrigin: var(--pf-v6-c-tabs--m-vertical--link-accent--TransformOrigin);
282
287
  display: inline-flex;
283
288
  flex-direction: column;
284
289
  height: 100%;
@@ -855,15 +860,15 @@
855
860
  }
856
861
 
857
862
  @media (prefers-reduced-motion: no-preference) {
858
- .pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__link::after,
859
- .pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__item.pf-m-action::after {
863
+ .pf-v6-c-tabs.pf-m-animate-current:not(.pf-m-box) .pf-v6-c-tabs__link::after,
864
+ .pf-v6-c-tabs.pf-m-animate-current:not(.pf-m-box) .pf-v6-c-tabs__item.pf-m-action::after {
860
865
  content: revert;
861
866
  }
862
- .pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__list::after {
867
+ .pf-v6-c-tabs.pf-m-animate-current:not(.pf-m-box) .pf-v6-c-tabs__list::after {
863
868
  position: absolute;
864
- inset-block-start: var(--pf-v6-c-tabs--link-accent--InsetBlockStart, var(--pf-v6-c-tabs--link-accent--start));
869
+ inset-block-start: var(--pf-v6-c-tabs--link-accent--InsetBlockStart);
865
870
  inset-block-end: var(--pf-v6-c-tabs--link-accent--InsetBlockEnd);
866
- inset-inline-start: var(--pf-v6-c-tabs--link-accent--InsetInlineStart, var(--pf-v6-c-tabs--link-accent--start));
871
+ inset-inline-start: var(--pf-v6-c-tabs--link-accent--InsetInlineStart);
867
872
  width: var(--pf-v6-c-tabs--link-accent--Width, var(--pf-v6-c-tabs--link-accent--length));
868
873
  height: var(--pf-v6-c-tabs--link-accent--Height, var(--pf-v6-c-tabs--link-accent--length));
869
874
  content: "";
@@ -872,7 +877,12 @@
872
877
  border-inline-start-width: var(--pf-v6-c-tabs--link-accent--BorderInlineStartWidth);
873
878
  transition-timing-function: var(--pf-v6-c-tabs--link-accent--TransitionTimingFunction);
874
879
  transition-duration: var(--pf-v6-c-tabs--link-accent--TransitionDuration);
875
- transition-property: --pf-v6-c-tabs--link-accent--length, --pf-v6-c-tabs--link-accent--start, width;
880
+ transition-property: width, height, translate;
881
+ transform-origin: var(--pf-v6-c-tabs--link-accent--TransformOrigin);
882
+ translate: var(--pf-v6-c-tabs--link-accent--TranslateX) var(--pf-v6-c-tabs--link-accent--TranslateY);
883
+ }
884
+ :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-tabs.pf-m-animate-current:not(.pf-m-box) .pf-v6-c-tabs__list::after {
885
+ translate: calc(var(--pf-v6-c-tabs--link-accent--TranslateX) * var(--pf-v6-global--inverse--multiplier)) var(--pf-v6-c-tabs--link-accent--TranslateY);
876
886
  }
877
887
  .pf-v6-c-tabs.pf-m-initializing-accent {
878
888
  --pf-v6-c-tabs--link-accent--TransitionDuration: 0;
@@ -65,6 +65,7 @@ declare const _default: {
65
65
  "insetLgOn_2xl": "pf-m-inset-lg-on-2xl",
66
66
  "insetXlOn_2xl": "pf-m-inset-xl-on-2xl",
67
67
  "inset_2xlOn_2xl": "pf-m-inset-2xl-on-2xl",
68
+ "animateCurrent": "pf-m-animate-current",
68
69
  "initializingAccent": "pf-m-initializing-accent"
69
70
  },
70
71
  "tabs": "pf-v6-c-tabs",
@@ -67,6 +67,7 @@ exports.default = {
67
67
  "insetLgOn_2xl": "pf-m-inset-lg-on-2xl",
68
68
  "insetXlOn_2xl": "pf-m-inset-xl-on-2xl",
69
69
  "inset_2xlOn_2xl": "pf-m-inset-2xl-on-2xl",
70
+ "animateCurrent": "pf-m-animate-current",
70
71
  "initializingAccent": "pf-m-initializing-accent"
71
72
  },
72
73
  "tabs": "pf-v6-c-tabs",
@@ -65,6 +65,7 @@ export default {
65
65
  "insetLgOn_2xl": "pf-m-inset-lg-on-2xl",
66
66
  "insetXlOn_2xl": "pf-m-inset-xl-on-2xl",
67
67
  "inset_2xlOn_2xl": "pf-m-inset-2xl-on-2xl",
68
+ "animateCurrent": "pf-m-animate-current",
68
69
  "initializingAccent": "pf-m-initializing-accent"
69
70
  },
70
71
  "tabs": "pf-v6-c-tabs",
@@ -247,10 +247,13 @@
247
247
  }
248
248
 
249
249
  .pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list {
250
+ max-height: 0;
251
+ visibility: hidden;
250
252
  opacity: var(--pf-v6-c-tree-view__list--Opacity);
253
+ transition-delay: 0s, 0s, var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--fade);
251
254
  transition-timing-function: var(--pf-v6-c-tree-view__list--TransitionTimingFunction);
252
- transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--slide);
253
- transition-property: opacity, translate;
255
+ transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--slide), 0s, 0s;
256
+ transition-property: opacity, translate, visibility, max-height;
254
257
  translate: 0 var(--pf-v6-c-tree-view__list--TranslateY);
255
258
  }
256
259
  .pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list-item {
@@ -262,8 +265,11 @@
262
265
  --pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate);
263
266
  }
264
267
  .pf-v6-c-tree-view__list-item.pf-m-expanded > .pf-v6-c-tree-view__list {
268
+ max-height: 9999px;
269
+ visibility: revert;
265
270
  opacity: var(--pf-v6-c-tree-view--m-expanded__list--Opacity);
266
- transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--expand--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--expand--slide);
271
+ transition-delay: 0s;
272
+ transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--expand--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--expand--slide), 0s, 0s;
267
273
  translate: 0 var(--pf-v6-c-tree-view--m-expanded__list--TranslateY);
268
274
  }
269
275
 
@@ -376,33 +376,32 @@
376
376
  }
377
377
 
378
378
  .pf-v6-c-accordion__expandable-content {
379
- display: none;
380
- margin-block-end: var(--pf-v6-c-accordion__expandable-content--MarginBlockEnd);
379
+ max-height: 0;
381
380
  margin-inline-start: var(--pf-v6-c-accordion__expandable-content--MarginInlineStart);
382
381
  margin-inline-end: var(--pf-v6-c-accordion__expandable-content--MarginInlineEnd);
383
382
  font-size: var(--pf-v6-c-accordion__expandable-content--FontSize);
384
383
  color: var(--pf-v6-c-accordion__expandable-content--Color);
384
+ visibility: hidden;
385
385
  background-color: var(--pf-v6-c-accordion__expandable-content--BackgroundColor);
386
386
  border-radius: var(--pf-v6-c-accordion__expandable-content--BorderRadius);
387
387
  opacity: var(--pf-v6-c-accordion__expandable-content--Opacity);
388
+ transition-delay: 0s, 0s, var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade);
388
389
  transition-timing-function: var(--pf-v6-c-accordion__expandable-content--TransitionTimingFunction);
389
- transition-duration: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--slide), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade);
390
- transition-property: opacity, translate, display;
391
- transition-behavior: allow-discrete;
390
+ transition-duration: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--slide), 0s, 0s, 0s;
391
+ transition-property: opacity, translate, visibility, max-height, margin-block-end;
392
392
  translate: 0 var(--pf-v6-c-accordion__expandable-content--TranslateY);
393
393
  }
394
394
  .pf-v6-c-accordion__expandable-content.pf-m-fixed {
395
- max-height: var(--pf-v6-c-accordion__expandable-content--m-fixed--MaxHeight);
396
395
  overflow-y: auto;
397
396
  }
398
397
  .pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content {
399
- display: revert;
398
+ max-height: 9999px;
399
+ margin-block-end: var(--pf-v6-c-accordion__expandable-content--MarginBlockEnd);
400
+ visibility: revert;
401
+ transition-delay: 0s;
400
402
  }
401
- @starting-style {
402
- .pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content {
403
- --pf-v6-c-accordion__expandable-content--Opacity: 0;
404
- --pf-v6-c-accordion__expandable-content--TranslateY: -.5rem;
405
- }
403
+ .pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content.pf-m-fixed {
404
+ max-height: var(--pf-v6-c-accordion__expandable-content--m-fixed--MaxHeight);
406
405
  }
407
406
 
408
407
  .pf-v6-c-accordion__expandable-content-body {
@@ -4745,6 +4744,17 @@ ul) {
4745
4744
  --pf-v6-c-dual-list-selector__menu--MinHeight: 12.5rem;
4746
4745
  --pf-v6-c-dual-list-selector__menu--MaxHeight: 20rem;
4747
4746
  --pf-v6-c-dual-list-selector__menu--MarginBlockStart: var(--pf-t--global--spacer--md);
4747
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--expand--slide: 0s;
4748
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
4749
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--slide: 0s;
4750
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
4751
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--slide: var(--pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--slide);
4752
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--fade: var(--pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--fade);
4753
+ --pf-v6-c-dual-list-selector__list--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
4754
+ --pf-v6-c-dual-list-selector__list--Opacity: 0;
4755
+ --pf-v6-c-dual-list-selector--m-expanded__list--Opacity: 1;
4756
+ --pf-v6-c-dual-list-selector__list--TranslateY: 0;
4757
+ --pf-v6-c-dual-list-selector--m-expanded__list--TranslateY: 0;
4748
4758
  --pf-v6-c-dual-list-selector__list-item-row--FontSize: var(--pf-t--global--font--size--sm);
4749
4759
  --pf-v6-c-dual-list-selector__list-item-row--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
4750
4760
  --pf-v6-c-dual-list-selector__list-item-row--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
@@ -4782,6 +4792,13 @@ ul) {
4782
4792
  --pf-v6-c-dual-list-selector__item-toggle-icon--MinWidth: var(--pf-v6-c-dual-list-selector__list-item-row--FontSize);
4783
4793
  --pf-v6-c-dual-list-selector__list-item--m-disabled__item-toggle-icon--Color: var(--pf-t--global--icon--color--disabled);
4784
4794
  }
4795
+ @media screen and (prefers-reduced-motion: no-preference) {
4796
+ .pf-v6-c-dual-list-selector {
4797
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
4798
+ --pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
4799
+ --pf-v6-c-dual-list-selector__list--TranslateY: -.5rem;
4800
+ }
4801
+ }
4785
4802
 
4786
4803
  .pf-v6-c-dual-list-selector {
4787
4804
  display: grid;
@@ -4877,9 +4894,27 @@ ul) {
4877
4894
  .pf-v6-c-dual-list-selector__list-item.pf-m-expandable {
4878
4895
  --pf-v6-c-dual-list-selector__item--PaddingInlineStart: var(--pf-v6-c-dual-list-selector__item--m-expandable--PaddingInlineStart);
4879
4896
  }
4897
+ .pf-v6-c-dual-list-selector.pf-m-animate-expand .pf-v6-c-dual-list-selector__list-item.pf-m-expandable > .pf-v6-c-dual-list-selector__list {
4898
+ max-height: 0;
4899
+ visibility: hidden;
4900
+ opacity: var(--pf-v6-c-dual-list-selector__list--Opacity);
4901
+ transition-delay: 0s, 0s, var(--pf-v6-c-dual-list-selector__list--TransitionDuration--fade), var(--pf-v6-c-dual-list-selector__list--TransitionDuration--fade);
4902
+ transition-timing-function: var(--pf-v6-c-dual-list-selector__list--TransitionTimingFunction);
4903
+ transition-duration: var(--pf-v6-c-dual-list-selector__list--TransitionDuration--fade), var(--pf-v6-c-dual-list-selector__list--TransitionDuration--slide), 0s, 0s;
4904
+ transition-property: opacity, translate, visibility, max-height;
4905
+ translate: 0 var(--pf-v6-c-dual-list-selector__list--TranslateY);
4906
+ }
4880
4907
  .pf-v6-c-dual-list-selector__list-item.pf-m-expanded {
4881
4908
  --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);
4882
4909
  }
4910
+ .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 {
4911
+ max-height: 9999px;
4912
+ visibility: revert;
4913
+ opacity: var(--pf-v6-c-dual-list-selector--m-expanded__list--Opacity);
4914
+ transition-delay: 0s;
4915
+ transition-duration: var(--pf-v6-c-dual-list-selector__list--TransitionDuration--expand--fade), var(--pf-v6-c-dual-list-selector__list--TransitionDuration--expand--slide), 0s, 0s;
4916
+ translate: 0 var(--pf-v6-c-dual-list-selector--m-expanded__list--TranslateY);
4917
+ }
4883
4918
  .pf-v6-c-dual-list-selector__list-item.pf-m-disabled {
4884
4919
  --pf-v6-c-dual-list-selector__item-text--Color: var(--pf-v6-c-dual-list-selector__list-item--m-disabled__item-text--Color);
4885
4920
  --pf-v6-c-dual-list-selector__item-toggle-icon--Color: var(--pf-v6-c-dual-list-selector__list-item--m-disabled__item-toggle-icon--Color);
@@ -6422,6 +6457,7 @@ ul) {
6422
6457
  --pf-v6-c-expandable-section__content--TransitionDuration--slide: var(--pf-v6-c-expandable-section__content--TransitionDuration--collapse--slide);
6423
6458
  --pf-v6-c-expandable-section__content--TransitionDuration--fade: var(--pf-v6-c-expandable-section__content--TransitionDuration--collapse--fade);
6424
6459
  --pf-v6-c-expandable-section__content--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
6460
+ --pf-v6-c-expandable-section__content--TransitionDelay--hide: var(--pf-v6-c-expandable-section__content--TransitionDuration--fade);
6425
6461
  --pf-v6-c-expandable-section__content--Opacity: 0;
6426
6462
  --pf-v6-c-expandable-section__content--TranslateY: 0;
6427
6463
  --pf-v6-c-expandable-section--m-expanded__content--Opacity: 1;
@@ -6437,7 +6473,7 @@ ul) {
6437
6473
  --pf-v6-c-expandable-section--m-display-lg--BorderWidth: var(--pf-t--global--border--width--box--default);
6438
6474
  --pf-v6-c-expandable-section--m-display-lg--BorderColor: var(--pf-t--global--border--color--default);
6439
6475
  --pf-v6-c-expandable-section--m-display-lg--BorderRadius: var(--pf-t--global--border--radius--medium);
6440
- --pf-v6-c-expandable-section--m-display-lg--TransitionDelay: var(--pf-v6-c-expandable-section__content--TransitionDuration--fade);
6476
+ --pf-v6-c-expandable-section--m-display-lg--TransitionDelay: var(--pf-v6-c-expandable-section__content--TransitionDuration--collapse--fade);
6441
6477
  --pf-v6-c-expandable-section--m-indented__content--PaddingInlineStart: calc(var(--pf-t--global--spacer--action--horizontal--plain--default) + var(--pf-t--global--spacer--gap--text-to-element--default) + var(--pf-v6-c-expandable-section__toggle-icon--MinWidth));
6442
6478
  --pf-v6-c-expandable-section--m-truncate__content--LineClamp: 3;
6443
6479
  --pf-v6-c-expandable-section--m-truncate--Gap: var(--pf-t--global--spacer--xs);
@@ -6453,7 +6489,10 @@ ul) {
6453
6489
  .pf-v6-c-expandable-section {
6454
6490
  display: flex;
6455
6491
  flex-direction: column;
6456
- gap: var(--pf-v6-c-expandable-section--Gap);
6492
+ gap: 0;
6493
+ transition-delay: var(--pf-v6-c-expandable-section__content--TransitionDelay--hide);
6494
+ transition-duration: 0s;
6495
+ transition-property: gap, padding-block-end;
6457
6496
  }
6458
6497
  .pf-v6-c-expandable-section.pf-m-expanded {
6459
6498
  --pf-v6-c-expandable-section__toggle-icon--Rotate: var(--pf-v6-c-expandable-section--m-expanded__toggle-icon--Rotate);
@@ -6463,7 +6502,10 @@ ul) {
6463
6502
  --pf-v6-c-expandable-section__content--TransitionDuration--fade: var(--pf-v6-c-expandable-section__content--TransitionDuration--expand--fade);
6464
6503
  --pf-v6-c-expandable-section__content--Opacity: var(--pf-v6-c-expandable-section--m-expanded__content--Opacity);
6465
6504
  --pf-v6-c-expandable-section__content--TranslateY: var(--pf-v6-c-expandable-section--m-expanded__content--TranslateY);
6466
- --pf-v6-c-expandable-section--m-display-lg--TransitionDelay: 0s;
6505
+ --pf-v6-c-expandable-section__content--Visibility: auto;
6506
+ --pf-v6-c-expandable-section__content--MaxHeight: 9999px;
6507
+ --pf-v6-c-expandable-section__content--TransitionDelay--hide: 0s;
6508
+ gap: var(--pf-v6-c-expandable-section--Gap);
6467
6509
  }
6468
6510
  .pf-v6-c-expandable-section.pf-m-limit-width {
6469
6511
  --pf-v6-c-expandable-section__content--MaxWidth: var(--pf-v6-c-expandable-section--m-limit-width__content--MaxWidth);
@@ -6476,7 +6518,6 @@ ul) {
6476
6518
  background-color: var(--pf-v6-c-expandable-section--m-display-lg--BackgroundColor);
6477
6519
  border: var(--pf-v6-c-expandable-section--m-display-lg--BorderWidth) solid var(--pf-v6-c-expandable-section--m-display-lg--BorderColor);
6478
6520
  border-radius: var(--pf-v6-c-expandable-section--m-display-lg--BorderRadius);
6479
- transition: padding-block-end 0s var(--pf-v6-c-expandable-section--m-display-lg--TransitionDelay, 0s);
6480
6521
  }
6481
6522
  .pf-v6-c-expandable-section.pf-m-indented {
6482
6523
  --pf-v6-c-expandable-section__content--PaddingInlineStart: var(--pf-v6-c-expandable-section--m-indented__content--PaddingInlineStart);
@@ -6515,23 +6556,15 @@ ul) {
6515
6556
  display: revert;
6516
6557
  }
6517
6558
  .pf-v6-c-expandable-section:where(:not(.pf-m-truncate)) .pf-v6-c-expandable-section__content {
6518
- display: none;
6559
+ max-height: var(--pf-v6-c-expandable-section__content--MaxHeight, 0);
6560
+ visibility: var(--pf-v6-c-expandable-section__content--Visibility, hidden);
6519
6561
  opacity: var(--pf-v6-c-expandable-section__content--Opacity);
6562
+ transition-delay: 0s, 0s, var(--pf-v6-c-expandable-section__content--TransitionDelay--hide, 0s), var(--pf-v6-c-expandable-section__content--TransitionDelay--hide, 0s);
6520
6563
  transition-timing-function: var(--pf-v6-c-expandable-section__content--TransitionTimingFunction);
6521
- transition-duration: var(--pf-v6-c-expandable-section__content--TransitionDuration--fade), var(--pf-v6-c-expandable-section__content--TransitionDuration--slide), var(--pf-v6-c-expandable-section__content--TransitionDuration--fade);
6522
- transition-property: opacity, translate, display;
6523
- transition-behavior: allow-discrete;
6564
+ transition-duration: var(--pf-v6-c-expandable-section__content--TransitionDuration--fade), var(--pf-v6-c-expandable-section__content--TransitionDuration--slide), 0s, 0s;
6565
+ transition-property: opacity, translate, visibility, max-height;
6524
6566
  translate: 0 var(--pf-v6-c-expandable-section__content--TranslateY);
6525
6567
  }
6526
- .pf-v6-c-expandable-section.pf-m-expanded .pf-v6-c-expandable-section__content {
6527
- display: revert;
6528
- }
6529
- @starting-style {
6530
- .pf-v6-c-expandable-section.pf-m-expanded .pf-v6-c-expandable-section__content {
6531
- --pf-v6-c-expandable-section__content--Opacity: 0;
6532
- --pf-v6-c-expandable-section__content--TranslateY: -.5rem;
6533
- }
6534
- }
6535
6568
 
6536
6569
  .pf-v6-c-file-upload {
6537
6570
  --pf-v6-c-file-upload--RowGap: var(--pf-t--global--spacer--gap--group--vertical);
@@ -6670,6 +6703,19 @@ ul) {
6670
6703
  --pf-v6-c-form__field-group__field-group__field-group-body--GridColumn: 1 / 3;
6671
6704
  --pf-v6-c-form__field-group__field-group__field-group-toggle--field-group-body--GridColumn: 2 / 3;
6672
6705
  --pf-v6-c-form__field-group-body__field-group--last-child--MarginBlockEnd: calc(var(--pf-v6-c-form__field-group-body--PaddingBlockEnd) * -1);
6706
+ --pf-v6-c-form__field-group-body--TranslateY: 0;
6707
+ --pf-v6-c-form__field-group--m-expanded__field-group-body--TranslateY: 0;
6708
+ --pf-v6-c-form__field-group-body--TransitionDuration--expand--slide: 0s;
6709
+ --pf-v6-c-form__field-group-body--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
6710
+ --pf-v6-c-form__field-group-body--TransitionDuration--collapse--slide: 0s;
6711
+ --pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
6712
+ }
6713
+ @media screen and (prefers-reduced-motion: no-preference) {
6714
+ .pf-v6-c-form {
6715
+ --pf-v6-c-form__field-group-body--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
6716
+ --pf-v6-c-form__field-group-body--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
6717
+ --pf-v6-c-form__field-group-body--TranslateY: -.5rem;
6718
+ }
6673
6719
  }
6674
6720
 
6675
6721
  .pf-v6-c-form {
@@ -7026,6 +7072,16 @@ ul) {
7026
7072
  .pf-v6-c-form__field-group.pf-m-expanded > .pf-v6-c-form__field-group-toggle {
7027
7073
  --pf-v6-c-form__field-group-toggle-icon--Rotate: var(--pf-v6-c-form__field-group--m-expanded__toggle-icon--Rotate);
7028
7074
  }
7075
+ .pf-v6-c-form__field-group.pf-m-expanded.pf-m-expandable > .pf-v6-c-form__field-group-body {
7076
+ max-height: 9999px;
7077
+ padding-block-start: var(--pf-v6-c-form__field-group-body--PaddingBlockStart);
7078
+ padding-block-end: var(--pf-v6-c-form__field-group-body--PaddingBlockEnd);
7079
+ visibility: visible;
7080
+ opacity: 1;
7081
+ transition-delay: 0s;
7082
+ transition-duration: var(--pf-v6-c-form__field-group-body--TransitionDuration--expand--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--expand--slide), 0s, 0s, 0s, 0s;
7083
+ translate: 0 var(--pf-v6-c-form__field-group--m-expanded__field-group-body--TranslateY);
7084
+ }
7029
7085
 
7030
7086
  .pf-v6-c-form__field-group-toggle {
7031
7087
  grid-row: 1/2;
@@ -7092,9 +7148,17 @@ ul) {
7092
7148
  display: grid;
7093
7149
  grid-column: var(--pf-v6-c-form__field-group-body--GridColumn);
7094
7150
  gap: var(--pf-v6-c-form__field-group-body--Gap);
7095
- padding-block-start: var(--pf-v6-c-form__field-group-body--PaddingBlockStart);
7096
- padding-block-end: var(--pf-v6-c-form__field-group-body--PaddingBlockEnd);
7097
7151
  }
7152
+ .pf-v6-c-form__field-group.pf-m-expandable > .pf-v6-c-form__field-group-body {
7153
+ max-height: 0;
7154
+ visibility: hidden;
7155
+ opacity: 0;
7156
+ transition-delay: 0s, 0s, var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade);
7157
+ transition-duration: var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--slide), 0s, 0s, 0s, 0s;
7158
+ transition-property: opacity, translate, visibility, max-height, padding-block-start, padding-block-end;
7159
+ translate: 0 var(--pf-v6-c-form__field-group-body--TranslateY);
7160
+ }
7161
+
7098
7162
  .pf-v6-c-form__field-group-body > .pf-v6-c-form__field-group:first-child {
7099
7163
  --pf-v6-c-form__field-group-toggle--PaddingBlockStart: 0;
7100
7164
  --pf-v6-c-form__field-group-header--PaddingBlockStart: 0;
@@ -11330,9 +11394,13 @@ ul.pf-v6-c-list {
11330
11394
  --pf-v6-c-nav__subnav--PaddingBlockStart: var(--pf-v6-c-nav__item--RowGap);
11331
11395
  --pf-v6-c-nav__subnav--PaddingBlockEnd: var(--pf-v6-c-nav__item--RowGap);
11332
11396
  --pf-v6-c-nav__subnav--PaddingInlineStart: var(--pf-t--global--spacer--md);
11333
- --pf-v6-c-nav__subnav--TransitionDuration--expand: var(--pf-t--global--motion--duration--slide-in--default);
11334
- --pf-v6-c-nav__subnav--TransitionDuration--collapse: var(--pf-t--global--motion--duration--slide-in--short);
11397
+ --pf-v6-c-nav__subnav--TransitionDuration--expand: var(--pf-t--global--motion--duration--fade--default);
11398
+ --pf-v6-c-nav__subnav--TransitionDuration--expand--slide: 0s;
11399
+ --pf-v6-c-nav__subnav--TransitionDuration--collapse: var(--pf-t--global--motion--duration--fade--short);
11400
+ --pf-v6-c-nav__subnav--TransitionDuration--collapse--slide: 0s;
11335
11401
  --pf-v6-c-nav__subnav--TransitionTimingFunction--expand: var(--pf-t--global--motion--timing-function--default);
11402
+ --pf-v6-c-nav__subnav--TranslateY: 0;
11403
+ --pf-v6-c-nav__subnav--hidden--TranslateY: 0;
11336
11404
  --pf-v6-c-nav__scroll-button--BorderColor: var(--pf-t--global--border--color--default);
11337
11405
  --pf-v6-c-nav__scroll-button--BorderWidth: var(--pf-t--global--border--width--divider--default);
11338
11406
  --pf-v6-c-nav__scroll-button--first-of-type--c-button--BorderStartStartRadius: var(--pf-t--global--border--radius--pill);
@@ -11361,6 +11429,13 @@ ul.pf-v6-c-list {
11361
11429
  --pf-v6-c-nav--m-horizontal--m-subnav__link--PaddingInlineStart: var(--pf-t--global--spacer--md);
11362
11430
  --pf-v6-c-nav--m-horizontal--m-subnav__link--PaddingInlineEnd: var(--pf-t--global--spacer--md);
11363
11431
  }
11432
+ @media screen and (prefers-reduced-motion: no-preference) {
11433
+ .pf-v6-c-nav {
11434
+ --pf-v6-c-nav__subnav--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
11435
+ --pf-v6-c-nav__subnav--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
11436
+ --pf-v6-c-nav__subnav--hidden--TranslateY: -.5rem;
11437
+ }
11438
+ }
11364
11439
 
11365
11440
  .pf-v6-c-nav,
11366
11441
  .pf-v6-c-nav__section,
@@ -11431,24 +11506,27 @@ ul.pf-v6-c-list {
11431
11506
 
11432
11507
  .pf-v6-c-nav__subnav {
11433
11508
  --pf-v6-c-nav__list--RowGap: var(--pf-v6-c-nav__subnav--RowGap);
11434
- grid-template-rows: 1fr;
11435
- min-height: 0;
11509
+ max-height: 9999px;
11436
11510
  padding-block-start: var(--pf-v6-c-nav__subnav--PaddingBlockStart);
11437
11511
  padding-block-end: var(--pf-v6-c-nav__subnav--PaddingBlockEnd);
11438
11512
  padding-inline-start: var(--pf-v6-c-nav__subnav--PaddingInlineStart);
11439
11513
  overflow-y: clip;
11440
- transition-delay: 0s, var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s), var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s), var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s), var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s);
11514
+ visibility: visible;
11515
+ transition-delay: 0s, 0s, var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s), var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s), var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s), var(--pf-v6-c-nav__subnav--TransitionDelay--expand--focus, 0s);
11441
11516
  transition-timing-function: var(--pf-v6-c-nav__subnav--TransitionTimingFunction--expand);
11442
- transition-duration: var(--pf-v6-c-nav__subnav--TransitionDuration--expand), 0s, 0s, 0s, 0s;
11443
- transition-property: opacity, visibility, grid-template-rows, padding-block-start, padding-block-end;
11517
+ transition-duration: var(--pf-v6-c-nav__subnav--TransitionDuration--expand), var(--pf-v6-c-nav__subnav--TransitionDuration--expand--slide), 0s, 0s, 0s, 0s;
11518
+ transition-property: opacity, translate, visibility, max-height, padding-block-start, padding-block-end;
11519
+ translate: 0 var(--pf-v6-c-nav__subnav--TranslateY);
11444
11520
  }
11445
11521
  .pf-v6-c-nav__subnav[hidden] {
11446
11522
  --pf-v6-c-nav__subnav--TransitionDelay--expand--focus: var(--pf-v6-c-nav__subnav--TransitionDuration--expand);
11447
11523
  --pf-v6-c-nav__subnav--TransitionDuration--expand: var(--pf-v6-c-nav__subnav--TransitionDuration--collapse);
11524
+ --pf-v6-c-nav__subnav--TransitionDuration--expand--slide: var(--pf-v6-c-nav__subnav--TransitionDuration--collapse--slide);
11448
11525
  --pf-v6-c-nav__subnav--PaddingBlockStart: 0;
11449
11526
  --pf-v6-c-nav__subnav--PaddingBlockEnd: 0;
11527
+ --pf-v6-c-nav__subnav--TranslateY: var(--pf-v6-c-nav__subnav--hidden--TranslateY);
11450
11528
  display: grid;
11451
- grid-template-rows: 0fr;
11529
+ max-height: 0;
11452
11530
  visibility: hidden;
11453
11531
  opacity: 0;
11454
11532
  }
@@ -14935,6 +15013,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
14935
15013
  --pf-v6-c-spinner--StrokeWidth: 10;
14936
15014
  --pf-v6-c-spinner__path--StrokeWidth: var(--pf-v6-c-spinner--StrokeWidth);
14937
15015
  --pf-v6-c-spinner__path--AnimationTimingFunction: ease-in-out;
15016
+ --pf-v6-c-spinner--m-xs--diameter: var(--pf-t--global--icon--size--sm);
14938
15017
  --pf-v6-c-spinner--m-sm--diameter: var(--pf-t--global--icon--size--md);
14939
15018
  --pf-v6-c-spinner--m-md--diameter: var(--pf-t--global--icon--size--lg);
14940
15019
  --pf-v6-c-spinner--m-lg--diameter: var(--pf-t--global--icon--size--xl);
@@ -14951,6 +15030,10 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
14951
15030
  .pf-v6-c-spinner.pf-m-inline {
14952
15031
  --pf-v6-c-spinner--diameter: var(--pf-v6-c-spinner--m-inline--diameter);
14953
15032
  }
15033
+ .pf-v6-c-spinner.pf-m-xs {
15034
+ --pf-v6-c-spinner--diameter: var(--pf-v6-c-spinner--m-xs--diameter);
15035
+ --pf-v6-c-spinner--StrokeWidth: 15;
15036
+ }
14954
15037
  .pf-v6-c-spinner.pf-m-sm {
14955
15038
  --pf-v6-c-spinner--diameter: var(--pf-v6-c-spinner--m-sm--diameter);
14956
15039
  }
@@ -15232,6 +15315,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
15232
15315
  --pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart: var(--pf-t--global--spacer--sm);
15233
15316
  --pf-v6-c-table--cell--responsive--PaddingInlineEnd: 0;
15234
15317
  --pf-v6-c-table--cell--responsive--PaddingInlineStart: 0;
15318
+ --pf-v6-c-table--cell--responsive--th--FontWeight: var(--pf-t--global--font--weight--body--bold);
15235
15319
  --pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart: var(--pf-t--global--spacer--sm);
15236
15320
  --pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
15237
15321
  --pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart: var(--pf-t--global--spacer--xs);
@@ -15356,7 +15440,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
15356
15440
  }
15357
15441
  .pf-m-grid.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
15358
15442
  position: revert;
15359
- font-weight: bold;
15443
+ font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
15360
15444
  text-align: start;
15361
15445
  content: attr(data-label);
15362
15446
  }
@@ -15656,7 +15740,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
15656
15740
  }
15657
15741
  .pf-m-grid-md.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
15658
15742
  position: revert;
15659
- font-weight: bold;
15743
+ font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
15660
15744
  text-align: start;
15661
15745
  content: attr(data-label);
15662
15746
  }
@@ -15959,7 +16043,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
15959
16043
  }
15960
16044
  .pf-m-grid-lg.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
15961
16045
  position: revert;
15962
- font-weight: bold;
16046
+ font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
15963
16047
  text-align: start;
15964
16048
  content: attr(data-label);
15965
16049
  }
@@ -16262,7 +16346,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
16262
16346
  }
16263
16347
  .pf-m-grid-xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
16264
16348
  position: revert;
16265
- font-weight: bold;
16349
+ font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
16266
16350
  text-align: start;
16267
16351
  content: attr(data-label);
16268
16352
  }
@@ -16565,7 +16649,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
16565
16649
  }
16566
16650
  .pf-m-grid-2xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
16567
16651
  position: revert;
16568
- font-weight: bold;
16652
+ font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
16569
16653
  text-align: start;
16570
16654
  content: attr(data-label);
16571
16655
  }
@@ -18654,25 +18738,28 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
18654
18738
  --pf-v6-c-tabs__item--m-current__link--after--BorderColor: var(--pf-t--global--border--color--clicked);
18655
18739
  --pf-v6-c-tabs__item--m-current__link--after--BorderWidth: var(--pf-t--global--border--width--extra-strong);
18656
18740
  --pf-v6-c-tabs--link-accent--start: 0;
18657
- --pf-v6-c-tabs--link-accent--length: auto;
18741
+ --pf-v6-c-tabs--link-accent--length: 0;
18658
18742
  --pf-v6-c-tabs--link-accent--color: var(--pf-v6-c-tabs__item--m-current__link--after--BorderColor);
18659
18743
  --pf-v6-c-tabs--link-accent--border-size: var(--pf-v6-c-tabs__item--m-current__link--after--BorderWidth);
18744
+ --pf-v6-c-tabs--link-accent--TransitionDuration: var(--pf-t--global--motion--duration--md);
18745
+ --pf-v6-c-tabs--link-accent--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
18660
18746
  --pf-v6-c-tabs--link-accent--InsetBlockStart: auto;
18661
18747
  --pf-v6-c-tabs--link-accent--InsetBlockEnd: 0;
18662
- --pf-v6-c-tabs--link-accent--InsetInlineStart: initial;
18748
+ --pf-v6-c-tabs--link-accent--InsetInlineStart: 0;
18663
18749
  --pf-v6-c-tabs--link-accent--Width: initial;
18664
18750
  --pf-v6-c-tabs--link-accent--Height: 0;
18665
18751
  --pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--link-accent--border-size);
18666
18752
  --pf-v6-c-tabs--link-accent--BorderInlineStartWidth: 0;
18667
- --pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart: initial;
18753
+ --pf-v6-c-tabs--link-accent--TranslateX: var(--pf-v6-c-tabs--link-accent--start);
18754
+ --pf-v6-c-tabs--link-accent--TranslateY: 0;
18755
+ --pf-v6-c-tabs--link-accent--TransformOrigin: 0 center;
18756
+ --pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart: 0;
18668
18757
  --pf-v6-c-tabs--m-vertical--link-accent--InsetBlockEnd: auto;
18669
- --pf-v6-c-tabs--m-vertical--link-accent--InsetInlineStart: 0;
18670
- --pf-v6-c-tabs--m-vertical--link-accent--Width: 0;
18671
- --pf-v6-c-tabs--m-vertical--link-accent--Height: initial;
18672
18758
  --pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth: 0;
18673
18759
  --pf-v6-c-tabs--m-vertical--link-accent--BorderInlineStartWidth: var(--pf-v6-c-tabs--link-accent--border-size);
18674
- --pf-v6-c-tabs--link-accent--TransitionDuration: var(--pf-t--global--motion--duration--md);
18675
- --pf-v6-c-tabs--link-accent--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
18760
+ --pf-v6-c-tabs--m-vertical--link-accent--TranslateX: 0;
18761
+ --pf-v6-c-tabs--m-vertical--link-accent--TranslateY: var(--pf-v6-c-tabs--link-accent--start);
18762
+ --pf-v6-c-tabs--m-vertical--link-accent--TransformOrigin: center 0;
18676
18763
  --pf-v6-c-tabs__scroll-button--PaddingBlockStart: var(--pf-t--global--spacer--sm);
18677
18764
  --pf-v6-c-tabs__scroll-button--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
18678
18765
  --pf-v6-c-tabs__scroll-button--PaddingInlineStart: var(--pf-t--global--spacer--sm);
@@ -18832,11 +18919,13 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
18832
18919
  --pf-v6-c-tabs__list--ScrollSnapTypeAxis: var(--pf-v6-c-tabs--m-vertical__list--ScrollSnapTypeAxis);
18833
18920
  --pf-v6-c-tabs--link-accent--InsetBlockStart: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart);
18834
18921
  --pf-v6-c-tabs--link-accent--InsetBlockEnd: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockEnd);
18835
- --pf-v6-c-tabs--link-accent--InsetInlineStart: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetInlineStart);
18836
18922
  --pf-v6-c-tabs--link-accent--Width: var(--pf-v6-c-tabs--m-vertical--link-accent--Width);
18837
18923
  --pf-v6-c-tabs--link-accent--Height: var(--pf-v6-c-tabs--m-vertical--link-accent--Height);
18838
18924
  --pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth);
18839
18925
  --pf-v6-c-tabs--link-accent--BorderInlineStartWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderInlineStartWidth);
18926
+ --pf-v6-c-tabs--link-accent--TranslateX: var(--pf-v6-c-tabs--m-vertical--link-accent--TranslateX);
18927
+ --pf-v6-c-tabs--link-accent--TranslateY: var(--pf-v6-c-tabs--m-vertical--link-accent--TranslateY);
18928
+ --pf-v6-c-tabs--link-accent--TransformOrigin: var(--pf-v6-c-tabs--m-vertical--link-accent--TransformOrigin);
18840
18929
  display: inline-flex;
18841
18930
  flex-direction: column;
18842
18931
  height: 100%;
@@ -19413,15 +19502,15 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
19413
19502
  }
19414
19503
 
19415
19504
  @media (prefers-reduced-motion: no-preference) {
19416
- .pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__link::after,
19417
- .pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__item.pf-m-action::after {
19505
+ .pf-v6-c-tabs.pf-m-animate-current:not(.pf-m-box) .pf-v6-c-tabs__link::after,
19506
+ .pf-v6-c-tabs.pf-m-animate-current:not(.pf-m-box) .pf-v6-c-tabs__item.pf-m-action::after {
19418
19507
  content: revert;
19419
19508
  }
19420
- .pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__list::after {
19509
+ .pf-v6-c-tabs.pf-m-animate-current:not(.pf-m-box) .pf-v6-c-tabs__list::after {
19421
19510
  position: absolute;
19422
- inset-block-start: var(--pf-v6-c-tabs--link-accent--InsetBlockStart, var(--pf-v6-c-tabs--link-accent--start));
19511
+ inset-block-start: var(--pf-v6-c-tabs--link-accent--InsetBlockStart);
19423
19512
  inset-block-end: var(--pf-v6-c-tabs--link-accent--InsetBlockEnd);
19424
- inset-inline-start: var(--pf-v6-c-tabs--link-accent--InsetInlineStart, var(--pf-v6-c-tabs--link-accent--start));
19513
+ inset-inline-start: var(--pf-v6-c-tabs--link-accent--InsetInlineStart);
19425
19514
  width: var(--pf-v6-c-tabs--link-accent--Width, var(--pf-v6-c-tabs--link-accent--length));
19426
19515
  height: var(--pf-v6-c-tabs--link-accent--Height, var(--pf-v6-c-tabs--link-accent--length));
19427
19516
  content: "";
@@ -19430,7 +19519,12 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
19430
19519
  border-inline-start-width: var(--pf-v6-c-tabs--link-accent--BorderInlineStartWidth);
19431
19520
  transition-timing-function: var(--pf-v6-c-tabs--link-accent--TransitionTimingFunction);
19432
19521
  transition-duration: var(--pf-v6-c-tabs--link-accent--TransitionDuration);
19433
- transition-property: --pf-v6-c-tabs--link-accent--length, --pf-v6-c-tabs--link-accent--start, width;
19522
+ transition-property: width, height, translate;
19523
+ transform-origin: var(--pf-v6-c-tabs--link-accent--TransformOrigin);
19524
+ translate: var(--pf-v6-c-tabs--link-accent--TranslateX) var(--pf-v6-c-tabs--link-accent--TranslateY);
19525
+ }
19526
+ :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-tabs.pf-m-animate-current:not(.pf-m-box) .pf-v6-c-tabs__list::after {
19527
+ translate: calc(var(--pf-v6-c-tabs--link-accent--TranslateX) * var(--pf-v6-global--inverse--multiplier)) var(--pf-v6-c-tabs--link-accent--TranslateY);
19434
19528
  }
19435
19529
  .pf-v6-c-tabs.pf-m-initializing-accent {
19436
19530
  --pf-v6-c-tabs--link-accent--TransitionDuration: 0;
@@ -22380,10 +22474,13 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
22380
22474
  }
22381
22475
 
22382
22476
  .pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list {
22477
+ max-height: 0;
22478
+ visibility: hidden;
22383
22479
  opacity: var(--pf-v6-c-tree-view__list--Opacity);
22480
+ transition-delay: 0s, 0s, var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--fade);
22384
22481
  transition-timing-function: var(--pf-v6-c-tree-view__list--TransitionTimingFunction);
22385
- transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--slide);
22386
- transition-property: opacity, translate;
22482
+ transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--slide), 0s, 0s;
22483
+ transition-property: opacity, translate, visibility, max-height;
22387
22484
  translate: 0 var(--pf-v6-c-tree-view__list--TranslateY);
22388
22485
  }
22389
22486
  .pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list-item {
@@ -22395,8 +22492,11 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
22395
22492
  --pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate);
22396
22493
  }
22397
22494
  .pf-v6-c-tree-view__list-item.pf-m-expanded > .pf-v6-c-tree-view__list {
22495
+ max-height: 9999px;
22496
+ visibility: revert;
22398
22497
  opacity: var(--pf-v6-c-tree-view--m-expanded__list--Opacity);
22399
- transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--expand--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--expand--slide);
22498
+ transition-delay: 0s;
22499
+ transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--expand--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--expand--slide), 0s, 0s;
22400
22500
  translate: 0 var(--pf-v6-c-tree-view--m-expanded__list--TranslateY);
22401
22501
  }
22402
22502
 
@@ -490,6 +490,7 @@ declare const _default: {
490
490
  "dragging": "pf-m-dragging",
491
491
  "dragOutside": "pf-m-drag-outside",
492
492
  "chosen": "pf-m-chosen",
493
+ "animateExpand": "pf-m-animate-expand",
493
494
  "check": "pf-m-check",
494
495
  "top": "pf-m-top",
495
496
  "static": "pf-m-static",
@@ -814,6 +815,7 @@ declare const _default: {
814
815
  "treeViewGrid_2xl": "pf-m-tree-view-grid-2xl",
815
816
  "noBorderBottom": "pf-m-no-border-bottom",
816
817
  "subtab": "pf-m-subtab",
818
+ "animateCurrent": "pf-m-animate-current",
817
819
  "initializingAccent": "pf-m-initializing-accent",
818
820
  "hint": "pf-m-hint",
819
821
  "stacked": "pf-m-stacked",
@@ -492,6 +492,7 @@ exports.default = {
492
492
  "dragging": "pf-m-dragging",
493
493
  "dragOutside": "pf-m-drag-outside",
494
494
  "chosen": "pf-m-chosen",
495
+ "animateExpand": "pf-m-animate-expand",
495
496
  "check": "pf-m-check",
496
497
  "top": "pf-m-top",
497
498
  "static": "pf-m-static",
@@ -816,6 +817,7 @@ exports.default = {
816
817
  "treeViewGrid_2xl": "pf-m-tree-view-grid-2xl",
817
818
  "noBorderBottom": "pf-m-no-border-bottom",
818
819
  "subtab": "pf-m-subtab",
820
+ "animateCurrent": "pf-m-animate-current",
819
821
  "initializingAccent": "pf-m-initializing-accent",
820
822
  "hint": "pf-m-hint",
821
823
  "stacked": "pf-m-stacked",
@@ -490,6 +490,7 @@ export default {
490
490
  "dragging": "pf-m-dragging",
491
491
  "dragOutside": "pf-m-drag-outside",
492
492
  "chosen": "pf-m-chosen",
493
+ "animateExpand": "pf-m-animate-expand",
493
494
  "check": "pf-m-check",
494
495
  "top": "pf-m-top",
495
496
  "static": "pf-m-static",
@@ -814,6 +815,7 @@ export default {
814
815
  "treeViewGrid_2xl": "pf-m-tree-view-grid-2xl",
815
816
  "noBorderBottom": "pf-m-no-border-bottom",
816
817
  "subtab": "pf-m-subtab",
818
+ "animateCurrent": "pf-m-animate-current",
817
819
  "initializingAccent": "pf-m-initializing-accent",
818
820
  "hint": "pf-m-hint",
819
821
  "stacked": "pf-m-stacked",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@patternfly/react-styles",
3
- "version": "6.3.0-prerelease.2",
3
+ "version": "6.3.0-prerelease.4",
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.15",
22
+ "@patternfly/patternfly": "6.3.0-prerelease.24",
23
23
  "change-case": "^5.4.4",
24
24
  "fs-extra": "^11.3.0"
25
25
  },
26
26
  "license": "MIT",
27
- "gitHead": "cc484047417c328ce89f0c01641c6f845cdbc43f"
27
+ "gitHead": "2a9c798759283f3a0d482ec6ffd3dd9eb0d3807d"
28
28
  }