@patternfly/react-styles 6.3.0-prerelease.2 → 6.3.0-prerelease.3
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 +6 -0
- package/css/components/DualListSelector/dual-list-selector.css +36 -0
- package/css/components/DualListSelector/dual-list-selector.d.ts +1 -0
- package/css/components/DualListSelector/dual-list-selector.js +1 -0
- package/css/components/DualListSelector/dual-list-selector.mjs +1 -0
- package/css/components/ExpandableSection/expandable-section.css +14 -14
- package/css/components/Spinner/spinner.css +5 -0
- package/css/components/Spinner/spinner.d.ts +1 -0
- package/css/components/Spinner/spinner.js +1 -0
- package/css/components/Spinner/spinner.mjs +1 -0
- package/css/components/Table/table-grid.css +6 -5
- package/css/components/Tabs/tabs.css +25 -15
- package/css/components/Tabs/tabs.d.ts +1 -0
- package/css/components/Tabs/tabs.js +1 -0
- package/css/components/Tabs/tabs.mjs +1 -0
- package/css/components/_index.css +86 -34
- package/css/components/_index.d.ts +2 -0
- package/css/components/_index.js +2 -0
- package/css/components/_index.mjs +2 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,12 @@
|
|
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.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)
|
7
|
+
|
8
|
+
### Features
|
9
|
+
|
10
|
+
- **Tabs:** added animations ([#11767](https://github.com/patternfly/patternfly-react/issues/11767)) ([bae4fc3](https://github.com/patternfly/patternfly-react/commit/bae4fc36aa39007d9474236cbada62ac55a27989))
|
11
|
+
|
6
12
|
# [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
13
|
|
8
14
|
### Bug Fixes
|
@@ -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);
|
@@ -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;
|
@@ -47,7 +48,10 @@
|
|
47
48
|
.pf-v6-c-expandable-section {
|
48
49
|
display: flex;
|
49
50
|
flex-direction: column;
|
50
|
-
gap:
|
51
|
+
gap: 0;
|
52
|
+
transition-delay: var(--pf-v6-c-expandable-section__content--TransitionDelay--hide);
|
53
|
+
transition-duration: 0s;
|
54
|
+
transition-property: gap;
|
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);
|
@@ -58,6 +62,10 @@
|
|
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
64
|
--pf-v6-c-expandable-section--m-display-lg--TransitionDelay: 0s;
|
65
|
+
--pf-v6-c-expandable-section__content--Visibility: auto;
|
66
|
+
--pf-v6-c-expandable-section__content--MaxHeight: 9999px;
|
67
|
+
--pf-v6-c-expandable-section__content--TransitionDelay--hide: 0s;
|
68
|
+
gap: var(--pf-v6-c-expandable-section--Gap);
|
61
69
|
}
|
62
70
|
.pf-v6-c-expandable-section.pf-m-limit-width {
|
63
71
|
--pf-v6-c-expandable-section__content--MaxWidth: var(--pf-v6-c-expandable-section--m-limit-width__content--MaxWidth);
|
@@ -109,20 +117,12 @@
|
|
109
117
|
display: revert;
|
110
118
|
}
|
111
119
|
.pf-v6-c-expandable-section:where(:not(.pf-m-truncate)) .pf-v6-c-expandable-section__content {
|
112
|
-
|
120
|
+
max-height: var(--pf-v6-c-expandable-section__content--MaxHeight, 0);
|
121
|
+
visibility: var(--pf-v6-c-expandable-section__content--Visibility, hidden);
|
113
122
|
opacity: var(--pf-v6-c-expandable-section__content--Opacity);
|
123
|
+
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
124
|
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),
|
116
|
-
transition-property: opacity, translate,
|
117
|
-
transition-behavior: allow-discrete;
|
125
|
+
transition-duration: var(--pf-v6-c-expandable-section__content--TransitionDuration--fade), var(--pf-v6-c-expandable-section__content--TransitionDuration--slide), 0s, 0s;
|
126
|
+
transition-property: opacity, translate, visibility, max-height;
|
118
127
|
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
128
|
}
|
@@ -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
|
}
|
@@ -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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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--
|
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--
|
117
|
-
--pf-v6-c-tabs--link-accent--
|
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
|
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
|
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:
|
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",
|
@@ -4745,6 +4745,17 @@ ul) {
|
|
4745
4745
|
--pf-v6-c-dual-list-selector__menu--MinHeight: 12.5rem;
|
4746
4746
|
--pf-v6-c-dual-list-selector__menu--MaxHeight: 20rem;
|
4747
4747
|
--pf-v6-c-dual-list-selector__menu--MarginBlockStart: var(--pf-t--global--spacer--md);
|
4748
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--expand--slide: 0s;
|
4749
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
4750
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--slide: 0s;
|
4751
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
4752
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--slide: var(--pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--slide);
|
4753
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--fade: var(--pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--fade);
|
4754
|
+
--pf-v6-c-dual-list-selector__list--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
4755
|
+
--pf-v6-c-dual-list-selector__list--Opacity: 0;
|
4756
|
+
--pf-v6-c-dual-list-selector--m-expanded__list--Opacity: 1;
|
4757
|
+
--pf-v6-c-dual-list-selector__list--TranslateY: 0;
|
4758
|
+
--pf-v6-c-dual-list-selector--m-expanded__list--TranslateY: 0;
|
4748
4759
|
--pf-v6-c-dual-list-selector__list-item-row--FontSize: var(--pf-t--global--font--size--sm);
|
4749
4760
|
--pf-v6-c-dual-list-selector__list-item-row--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
|
4750
4761
|
--pf-v6-c-dual-list-selector__list-item-row--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
|
@@ -4782,6 +4793,13 @@ ul) {
|
|
4782
4793
|
--pf-v6-c-dual-list-selector__item-toggle-icon--MinWidth: var(--pf-v6-c-dual-list-selector__list-item-row--FontSize);
|
4783
4794
|
--pf-v6-c-dual-list-selector__list-item--m-disabled__item-toggle-icon--Color: var(--pf-t--global--icon--color--disabled);
|
4784
4795
|
}
|
4796
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
4797
|
+
.pf-v6-c-dual-list-selector {
|
4798
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
4799
|
+
--pf-v6-c-dual-list-selector__list--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
4800
|
+
--pf-v6-c-dual-list-selector__list--TranslateY: -.5rem;
|
4801
|
+
}
|
4802
|
+
}
|
4785
4803
|
|
4786
4804
|
.pf-v6-c-dual-list-selector {
|
4787
4805
|
display: grid;
|
@@ -4877,9 +4895,27 @@ ul) {
|
|
4877
4895
|
.pf-v6-c-dual-list-selector__list-item.pf-m-expandable {
|
4878
4896
|
--pf-v6-c-dual-list-selector__item--PaddingInlineStart: var(--pf-v6-c-dual-list-selector__item--m-expandable--PaddingInlineStart);
|
4879
4897
|
}
|
4898
|
+
.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 {
|
4899
|
+
max-height: 0;
|
4900
|
+
visibility: hidden;
|
4901
|
+
opacity: var(--pf-v6-c-dual-list-selector__list--Opacity);
|
4902
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-dual-list-selector__list--TransitionDuration--fade), var(--pf-v6-c-dual-list-selector__list--TransitionDuration--fade);
|
4903
|
+
transition-timing-function: var(--pf-v6-c-dual-list-selector__list--TransitionTimingFunction);
|
4904
|
+
transition-duration: var(--pf-v6-c-dual-list-selector__list--TransitionDuration--fade), var(--pf-v6-c-dual-list-selector__list--TransitionDuration--slide), 0s, 0s;
|
4905
|
+
transition-property: opacity, translate, visibility, max-height;
|
4906
|
+
translate: 0 var(--pf-v6-c-dual-list-selector__list--TranslateY);
|
4907
|
+
}
|
4880
4908
|
.pf-v6-c-dual-list-selector__list-item.pf-m-expanded {
|
4881
4909
|
--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
4910
|
}
|
4911
|
+
.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 {
|
4912
|
+
max-height: 9999px;
|
4913
|
+
visibility: revert;
|
4914
|
+
opacity: var(--pf-v6-c-dual-list-selector--m-expanded__list--Opacity);
|
4915
|
+
transition-delay: 0s;
|
4916
|
+
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;
|
4917
|
+
translate: 0 var(--pf-v6-c-dual-list-selector--m-expanded__list--TranslateY);
|
4918
|
+
}
|
4883
4919
|
.pf-v6-c-dual-list-selector__list-item.pf-m-disabled {
|
4884
4920
|
--pf-v6-c-dual-list-selector__item-text--Color: var(--pf-v6-c-dual-list-selector__list-item--m-disabled__item-text--Color);
|
4885
4921
|
--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 +6458,7 @@ ul) {
|
|
6422
6458
|
--pf-v6-c-expandable-section__content--TransitionDuration--slide: var(--pf-v6-c-expandable-section__content--TransitionDuration--collapse--slide);
|
6423
6459
|
--pf-v6-c-expandable-section__content--TransitionDuration--fade: var(--pf-v6-c-expandable-section__content--TransitionDuration--collapse--fade);
|
6424
6460
|
--pf-v6-c-expandable-section__content--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
6461
|
+
--pf-v6-c-expandable-section__content--TransitionDelay--hide: var(--pf-v6-c-expandable-section__content--TransitionDuration--fade);
|
6425
6462
|
--pf-v6-c-expandable-section__content--Opacity: 0;
|
6426
6463
|
--pf-v6-c-expandable-section__content--TranslateY: 0;
|
6427
6464
|
--pf-v6-c-expandable-section--m-expanded__content--Opacity: 1;
|
@@ -6453,7 +6490,10 @@ ul) {
|
|
6453
6490
|
.pf-v6-c-expandable-section {
|
6454
6491
|
display: flex;
|
6455
6492
|
flex-direction: column;
|
6456
|
-
gap:
|
6493
|
+
gap: 0;
|
6494
|
+
transition-delay: var(--pf-v6-c-expandable-section__content--TransitionDelay--hide);
|
6495
|
+
transition-duration: 0s;
|
6496
|
+
transition-property: gap;
|
6457
6497
|
}
|
6458
6498
|
.pf-v6-c-expandable-section.pf-m-expanded {
|
6459
6499
|
--pf-v6-c-expandable-section__toggle-icon--Rotate: var(--pf-v6-c-expandable-section--m-expanded__toggle-icon--Rotate);
|
@@ -6464,6 +6504,10 @@ ul) {
|
|
6464
6504
|
--pf-v6-c-expandable-section__content--Opacity: var(--pf-v6-c-expandable-section--m-expanded__content--Opacity);
|
6465
6505
|
--pf-v6-c-expandable-section__content--TranslateY: var(--pf-v6-c-expandable-section--m-expanded__content--TranslateY);
|
6466
6506
|
--pf-v6-c-expandable-section--m-display-lg--TransitionDelay: 0s;
|
6507
|
+
--pf-v6-c-expandable-section__content--Visibility: auto;
|
6508
|
+
--pf-v6-c-expandable-section__content--MaxHeight: 9999px;
|
6509
|
+
--pf-v6-c-expandable-section__content--TransitionDelay--hide: 0s;
|
6510
|
+
gap: var(--pf-v6-c-expandable-section--Gap);
|
6467
6511
|
}
|
6468
6512
|
.pf-v6-c-expandable-section.pf-m-limit-width {
|
6469
6513
|
--pf-v6-c-expandable-section__content--MaxWidth: var(--pf-v6-c-expandable-section--m-limit-width__content--MaxWidth);
|
@@ -6515,23 +6559,15 @@ ul) {
|
|
6515
6559
|
display: revert;
|
6516
6560
|
}
|
6517
6561
|
.pf-v6-c-expandable-section:where(:not(.pf-m-truncate)) .pf-v6-c-expandable-section__content {
|
6518
|
-
|
6562
|
+
max-height: var(--pf-v6-c-expandable-section__content--MaxHeight, 0);
|
6563
|
+
visibility: var(--pf-v6-c-expandable-section__content--Visibility, hidden);
|
6519
6564
|
opacity: var(--pf-v6-c-expandable-section__content--Opacity);
|
6565
|
+
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
6566
|
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),
|
6522
|
-
transition-property: opacity, translate,
|
6523
|
-
transition-behavior: allow-discrete;
|
6567
|
+
transition-duration: var(--pf-v6-c-expandable-section__content--TransitionDuration--fade), var(--pf-v6-c-expandable-section__content--TransitionDuration--slide), 0s, 0s;
|
6568
|
+
transition-property: opacity, translate, visibility, max-height;
|
6524
6569
|
translate: 0 var(--pf-v6-c-expandable-section__content--TranslateY);
|
6525
6570
|
}
|
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
6571
|
|
6536
6572
|
.pf-v6-c-file-upload {
|
6537
6573
|
--pf-v6-c-file-upload--RowGap: var(--pf-t--global--spacer--gap--group--vertical);
|
@@ -14935,6 +14971,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
14935
14971
|
--pf-v6-c-spinner--StrokeWidth: 10;
|
14936
14972
|
--pf-v6-c-spinner__path--StrokeWidth: var(--pf-v6-c-spinner--StrokeWidth);
|
14937
14973
|
--pf-v6-c-spinner__path--AnimationTimingFunction: ease-in-out;
|
14974
|
+
--pf-v6-c-spinner--m-xs--diameter: var(--pf-t--global--icon--size--sm);
|
14938
14975
|
--pf-v6-c-spinner--m-sm--diameter: var(--pf-t--global--icon--size--md);
|
14939
14976
|
--pf-v6-c-spinner--m-md--diameter: var(--pf-t--global--icon--size--lg);
|
14940
14977
|
--pf-v6-c-spinner--m-lg--diameter: var(--pf-t--global--icon--size--xl);
|
@@ -14951,6 +14988,10 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
14951
14988
|
.pf-v6-c-spinner.pf-m-inline {
|
14952
14989
|
--pf-v6-c-spinner--diameter: var(--pf-v6-c-spinner--m-inline--diameter);
|
14953
14990
|
}
|
14991
|
+
.pf-v6-c-spinner.pf-m-xs {
|
14992
|
+
--pf-v6-c-spinner--diameter: var(--pf-v6-c-spinner--m-xs--diameter);
|
14993
|
+
--pf-v6-c-spinner--StrokeWidth: 15;
|
14994
|
+
}
|
14954
14995
|
.pf-v6-c-spinner.pf-m-sm {
|
14955
14996
|
--pf-v6-c-spinner--diameter: var(--pf-v6-c-spinner--m-sm--diameter);
|
14956
14997
|
}
|
@@ -15232,6 +15273,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
15232
15273
|
--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
15233
15274
|
--pf-v6-c-table--cell--responsive--PaddingInlineEnd: 0;
|
15234
15275
|
--pf-v6-c-table--cell--responsive--PaddingInlineStart: 0;
|
15276
|
+
--pf-v6-c-table--cell--responsive--th--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
15235
15277
|
--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
15236
15278
|
--pf-v6-c-table--m-compact__tr--responsive--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
15237
15279
|
--pf-v6-c-table--m-compact__tr__td--responsive--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
@@ -15356,7 +15398,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
15356
15398
|
}
|
15357
15399
|
.pf-m-grid.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
|
15358
15400
|
position: revert;
|
15359
|
-
font-weight:
|
15401
|
+
font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
|
15360
15402
|
text-align: start;
|
15361
15403
|
content: attr(data-label);
|
15362
15404
|
}
|
@@ -15656,7 +15698,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
15656
15698
|
}
|
15657
15699
|
.pf-m-grid-md.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
|
15658
15700
|
position: revert;
|
15659
|
-
font-weight:
|
15701
|
+
font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
|
15660
15702
|
text-align: start;
|
15661
15703
|
content: attr(data-label);
|
15662
15704
|
}
|
@@ -15959,7 +16001,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
15959
16001
|
}
|
15960
16002
|
.pf-m-grid-lg.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
|
15961
16003
|
position: revert;
|
15962
|
-
font-weight:
|
16004
|
+
font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
|
15963
16005
|
text-align: start;
|
15964
16006
|
content: attr(data-label);
|
15965
16007
|
}
|
@@ -16262,7 +16304,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
16262
16304
|
}
|
16263
16305
|
.pf-m-grid-xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
|
16264
16306
|
position: revert;
|
16265
|
-
font-weight:
|
16307
|
+
font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
|
16266
16308
|
text-align: start;
|
16267
16309
|
content: attr(data-label);
|
16268
16310
|
}
|
@@ -16565,7 +16607,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
16565
16607
|
}
|
16566
16608
|
.pf-m-grid-2xl.pf-v6-c-table :where(.pf-v6-c-table__th, .pf-v6-c-table__td)[data-label]::before {
|
16567
16609
|
position: revert;
|
16568
|
-
font-weight:
|
16610
|
+
font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
|
16569
16611
|
text-align: start;
|
16570
16612
|
content: attr(data-label);
|
16571
16613
|
}
|
@@ -18654,25 +18696,28 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
18654
18696
|
--pf-v6-c-tabs__item--m-current__link--after--BorderColor: var(--pf-t--global--border--color--clicked);
|
18655
18697
|
--pf-v6-c-tabs__item--m-current__link--after--BorderWidth: var(--pf-t--global--border--width--extra-strong);
|
18656
18698
|
--pf-v6-c-tabs--link-accent--start: 0;
|
18657
|
-
--pf-v6-c-tabs--link-accent--length:
|
18699
|
+
--pf-v6-c-tabs--link-accent--length: 0;
|
18658
18700
|
--pf-v6-c-tabs--link-accent--color: var(--pf-v6-c-tabs__item--m-current__link--after--BorderColor);
|
18659
18701
|
--pf-v6-c-tabs--link-accent--border-size: var(--pf-v6-c-tabs__item--m-current__link--after--BorderWidth);
|
18702
|
+
--pf-v6-c-tabs--link-accent--TransitionDuration: var(--pf-t--global--motion--duration--md);
|
18703
|
+
--pf-v6-c-tabs--link-accent--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
18660
18704
|
--pf-v6-c-tabs--link-accent--InsetBlockStart: auto;
|
18661
18705
|
--pf-v6-c-tabs--link-accent--InsetBlockEnd: 0;
|
18662
|
-
--pf-v6-c-tabs--link-accent--InsetInlineStart:
|
18706
|
+
--pf-v6-c-tabs--link-accent--InsetInlineStart: 0;
|
18663
18707
|
--pf-v6-c-tabs--link-accent--Width: initial;
|
18664
18708
|
--pf-v6-c-tabs--link-accent--Height: 0;
|
18665
18709
|
--pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--link-accent--border-size);
|
18666
18710
|
--pf-v6-c-tabs--link-accent--BorderInlineStartWidth: 0;
|
18667
|
-
--pf-v6-c-tabs--
|
18711
|
+
--pf-v6-c-tabs--link-accent--TranslateX: var(--pf-v6-c-tabs--link-accent--start);
|
18712
|
+
--pf-v6-c-tabs--link-accent--TranslateY: 0;
|
18713
|
+
--pf-v6-c-tabs--link-accent--TransformOrigin: 0 center;
|
18714
|
+
--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart: 0;
|
18668
18715
|
--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
18716
|
--pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth: 0;
|
18673
18717
|
--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--
|
18675
|
-
--pf-v6-c-tabs--link-accent--
|
18718
|
+
--pf-v6-c-tabs--m-vertical--link-accent--TranslateX: 0;
|
18719
|
+
--pf-v6-c-tabs--m-vertical--link-accent--TranslateY: var(--pf-v6-c-tabs--link-accent--start);
|
18720
|
+
--pf-v6-c-tabs--m-vertical--link-accent--TransformOrigin: center 0;
|
18676
18721
|
--pf-v6-c-tabs__scroll-button--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
18677
18722
|
--pf-v6-c-tabs__scroll-button--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
18678
18723
|
--pf-v6-c-tabs__scroll-button--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
@@ -18832,11 +18877,13 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
18832
18877
|
--pf-v6-c-tabs__list--ScrollSnapTypeAxis: var(--pf-v6-c-tabs--m-vertical__list--ScrollSnapTypeAxis);
|
18833
18878
|
--pf-v6-c-tabs--link-accent--InsetBlockStart: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart);
|
18834
18879
|
--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
18880
|
--pf-v6-c-tabs--link-accent--Width: var(--pf-v6-c-tabs--m-vertical--link-accent--Width);
|
18837
18881
|
--pf-v6-c-tabs--link-accent--Height: var(--pf-v6-c-tabs--m-vertical--link-accent--Height);
|
18838
18882
|
--pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth);
|
18839
18883
|
--pf-v6-c-tabs--link-accent--BorderInlineStartWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderInlineStartWidth);
|
18884
|
+
--pf-v6-c-tabs--link-accent--TranslateX: var(--pf-v6-c-tabs--m-vertical--link-accent--TranslateX);
|
18885
|
+
--pf-v6-c-tabs--link-accent--TranslateY: var(--pf-v6-c-tabs--m-vertical--link-accent--TranslateY);
|
18886
|
+
--pf-v6-c-tabs--link-accent--TransformOrigin: var(--pf-v6-c-tabs--m-vertical--link-accent--TransformOrigin);
|
18840
18887
|
display: inline-flex;
|
18841
18888
|
flex-direction: column;
|
18842
18889
|
height: 100%;
|
@@ -19413,15 +19460,15 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
19413
19460
|
}
|
19414
19461
|
|
19415
19462
|
@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 {
|
19463
|
+
.pf-v6-c-tabs.pf-m-animate-current:not(.pf-m-box) .pf-v6-c-tabs__link::after,
|
19464
|
+
.pf-v6-c-tabs.pf-m-animate-current:not(.pf-m-box) .pf-v6-c-tabs__item.pf-m-action::after {
|
19418
19465
|
content: revert;
|
19419
19466
|
}
|
19420
|
-
.pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__list::after {
|
19467
|
+
.pf-v6-c-tabs.pf-m-animate-current:not(.pf-m-box) .pf-v6-c-tabs__list::after {
|
19421
19468
|
position: absolute;
|
19422
|
-
inset-block-start: var(--pf-v6-c-tabs--link-accent--InsetBlockStart
|
19469
|
+
inset-block-start: var(--pf-v6-c-tabs--link-accent--InsetBlockStart);
|
19423
19470
|
inset-block-end: var(--pf-v6-c-tabs--link-accent--InsetBlockEnd);
|
19424
|
-
inset-inline-start: var(--pf-v6-c-tabs--link-accent--InsetInlineStart
|
19471
|
+
inset-inline-start: var(--pf-v6-c-tabs--link-accent--InsetInlineStart);
|
19425
19472
|
width: var(--pf-v6-c-tabs--link-accent--Width, var(--pf-v6-c-tabs--link-accent--length));
|
19426
19473
|
height: var(--pf-v6-c-tabs--link-accent--Height, var(--pf-v6-c-tabs--link-accent--length));
|
19427
19474
|
content: "";
|
@@ -19430,7 +19477,12 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
19430
19477
|
border-inline-start-width: var(--pf-v6-c-tabs--link-accent--BorderInlineStartWidth);
|
19431
19478
|
transition-timing-function: var(--pf-v6-c-tabs--link-accent--TransitionTimingFunction);
|
19432
19479
|
transition-duration: var(--pf-v6-c-tabs--link-accent--TransitionDuration);
|
19433
|
-
transition-property:
|
19480
|
+
transition-property: width, height, translate;
|
19481
|
+
transform-origin: var(--pf-v6-c-tabs--link-accent--TransformOrigin);
|
19482
|
+
translate: var(--pf-v6-c-tabs--link-accent--TranslateX) var(--pf-v6-c-tabs--link-accent--TranslateY);
|
19483
|
+
}
|
19484
|
+
: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 {
|
19485
|
+
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
19486
|
}
|
19435
19487
|
.pf-v6-c-tabs.pf-m-initializing-accent {
|
19436
19488
|
--pf-v6-c-tabs--link-accent--TransitionDuration: 0;
|
@@ -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",
|
package/css/components/_index.js
CHANGED
@@ -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.
|
3
|
+
"version": "6.3.0-prerelease.3",
|
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.
|
22
|
+
"@patternfly/patternfly": "6.3.0-prerelease.20",
|
23
23
|
"change-case": "^5.4.4",
|
24
24
|
"fs-extra": "^11.3.0"
|
25
25
|
},
|
26
26
|
"license": "MIT",
|
27
|
-
"gitHead": "
|
27
|
+
"gitHead": "e62933d6c64d3fbeb599a2e3a7c8dc3ab7a981e1"
|
28
28
|
}
|