@patternfly/react-styles 6.2.0 → 6.2.1-prerelease.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/css/components/Card/card.css +3 -0
- package/css/components/CodeEditor/code-editor.css +3 -0
- package/css/components/CodeEditor/code-editor.d.ts +1 -0
- package/css/components/CodeEditor/code-editor.js +1 -0
- package/css/components/CodeEditor/code-editor.mjs +1 -0
- package/css/components/Drawer/drawer.css +28 -14
- package/css/components/FormControl/form-control.css +1 -2
- package/css/components/Page/page.css +4 -3
- package/css/components/Page/page.d.ts +1 -0
- package/css/components/Page/page.js +1 -0
- package/css/components/Page/page.mjs +1 -0
- package/css/components/Tabs/tabs.css +65 -0
- package/css/components/Tabs/tabs.d.ts +2 -1
- package/css/components/Tabs/tabs.js +2 -1
- package/css/components/Tabs/tabs.mjs +2 -1
- package/css/components/Truncate/truncate.css +5 -0
- package/css/components/Truncate/truncate.d.ts +3 -0
- package/css/components/Truncate/truncate.js +3 -0
- package/css/components/Truncate/truncate.mjs +3 -0
- package/css/components/_index.css +108 -19
- package/css/components/_index.d.ts +3 -0
- package/css/components/_index.js +3 -0
- package/css/components/_index.mjs +3 -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.2.1-prerelease.0](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.2.0...@patternfly/react-styles@6.2.1-prerelease.0) (2025-04-14)
|
7
|
+
|
8
|
+
### Features
|
9
|
+
|
10
|
+
- **Page:** Added support for sidebar-less layout ([#11760](https://github.com/patternfly/patternfly-react/issues/11760)) ([217aad3](https://github.com/patternfly/patternfly-react/commit/217aad3241e79b02ab8f1f74fd1d8022860a138b))
|
11
|
+
|
6
12
|
# 6.2.0 (2025-04-07)
|
7
13
|
|
8
14
|
**Note:** Version bump only for package @patternfly/react-styles
|
@@ -15,6 +15,7 @@
|
|
15
15
|
--pf-v6-c-card__title-text--FontSize: var(--pf-t--global--font--size--heading--xs);
|
16
16
|
--pf-v6-c-card__title-text--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
17
17
|
--pf-v6-c-card__title-text--LineHeight: var(--pf-t--global--font--line-height--heading);
|
18
|
+
--pf-v6-c-card__title-text--OverflowWrap: break-word;
|
18
19
|
--pf-v6-c-card--c-button--disabled--Color: var(--pf-t--global--text--color--on-disabled);
|
19
20
|
--pf-v6-c-card__body--FontSize: var(--pf-t--global--font--size--body--default);
|
20
21
|
--pf-v6-c-card__footer--FontSize: var(--pf-t--global--font--size--body--default);
|
@@ -227,11 +228,13 @@
|
|
227
228
|
}
|
228
229
|
|
229
230
|
.pf-v6-c-card__title-text {
|
231
|
+
overflow: auto;
|
230
232
|
font-family: var(--pf-v6-c-card__title-text--FontFamily);
|
231
233
|
font-size: var(--pf-v6-c-card__title-text--FontSize);
|
232
234
|
font-weight: var(--pf-v6-c-card__title-text--FontWeight);
|
233
235
|
line-height: var(--pf-v6-c-card__title-text--LineHeight);
|
234
236
|
color: var(--pf-v6-c-card__title-text--Color);
|
237
|
+
overflow-wrap: var(--pf-v6-c-card__title-text--OverflowWrap);
|
235
238
|
}
|
236
239
|
|
237
240
|
.pf-v6-c-card__actions {
|
@@ -148,6 +148,9 @@
|
|
148
148
|
.pf-v6-c-code-editor__main .monaco-editor {
|
149
149
|
background-color: var(--pf-v6-c-code-editor__main--BackgroundColor);
|
150
150
|
}
|
151
|
+
.pf-v6-c-code-editor__main a.label-name {
|
152
|
+
text-decoration-line: none;
|
153
|
+
}
|
151
154
|
|
152
155
|
.pf-v6-c-code-editor__header + .pf-v6-c-code-editor__main {
|
153
156
|
border-block-start-width: 0;
|
@@ -13,6 +13,7 @@ declare const _default: {
|
|
13
13
|
"codeEditorTabIcon": "pf-v6-c-code-editor__tab-icon",
|
14
14
|
"codeEditorTabText": "pf-v6-c-code-editor__tab-text",
|
15
15
|
"codeEditorUpload": "pf-v6-c-code-editor__upload",
|
16
|
+
"labelName": "label-name",
|
16
17
|
"modifiers": {
|
17
18
|
"readOnly": "pf-m-read-only",
|
18
19
|
"fullHeight": "pf-m-full-height",
|
@@ -15,6 +15,7 @@ exports.default = {
|
|
15
15
|
"codeEditorTabIcon": "pf-v6-c-code-editor__tab-icon",
|
16
16
|
"codeEditorTabText": "pf-v6-c-code-editor__tab-text",
|
17
17
|
"codeEditorUpload": "pf-v6-c-code-editor__upload",
|
18
|
+
"labelName": "label-name",
|
18
19
|
"modifiers": {
|
19
20
|
"readOnly": "pf-m-read-only",
|
20
21
|
"fullHeight": "pf-m-full-height",
|
@@ -13,6 +13,7 @@ export default {
|
|
13
13
|
"codeEditorTabIcon": "pf-v6-c-code-editor__tab-icon",
|
14
14
|
"codeEditorTabText": "pf-v6-c-code-editor__tab-text",
|
15
15
|
"codeEditorUpload": "pf-v6-c-code-editor__upload",
|
16
|
+
"labelName": "label-name",
|
16
17
|
"modifiers": {
|
17
18
|
"readOnly": "pf-m-read-only",
|
18
19
|
"fullHeight": "pf-m-full-height",
|
@@ -15,9 +15,15 @@
|
|
15
15
|
--pf-v6-c-drawer__panel--RowGap: var(--pf-t--global--spacer--sm);
|
16
16
|
--pf-v6-c-drawer__panel--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
17
17
|
--pf-v6-c-drawer__panel--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
18
|
+
--pf-v6-c-drawer__panel--TransitionDelay: 0s, var(--pf-v6-c-drawer__panel--TransitionDelay--focus), var(--pf-v6-c-drawer__panel--TransitionDelay--focus);
|
19
|
+
--pf-v6-c-drawer__panel--TransitionDelay--focus: var(--pf-v6-c-drawer__panel--TransitionDuration--fade);
|
20
|
+
--pf-v6-c-drawer__panel--TransitionDelay--expand--focus: 0s;
|
18
21
|
--pf-v6-c-drawer__panel--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
19
|
-
--pf-v6-c-drawer__panel--TransitionDuration: var(--pf-t--global--motion--duration--
|
20
|
-
--pf-v6-c-drawer__panel--
|
22
|
+
--pf-v6-c-drawer__panel--TransitionDuration--fade: var(--pf-t--global--motion--duration--fade--default);
|
23
|
+
--pf-v6-c-drawer__panel--TransitionDuration: var(--pf-v6-c-drawer__panel--TransitionDuration--fade), 0s, 0s;
|
24
|
+
--pf-v6-c-drawer__panel--TransitionProperty: opacity, visibility, transform;
|
25
|
+
--pf-v6-c-drawer__panel--Opacity: 0;
|
26
|
+
--pf-v6-c-drawer--m-expanded__panel--Opacity: 1;
|
21
27
|
--pf-v6-c-drawer__panel--FlexBasis: 100%;
|
22
28
|
--pf-v6-c-drawer__panel--md--FlexBasis--min: 1.5rem;
|
23
29
|
--pf-v6-c-drawer__panel--md--FlexBasis: 50%;
|
@@ -107,6 +113,17 @@
|
|
107
113
|
--pf-v6-c-drawer--m-panel-left--m-inline__panel--PaddingInlineEnd: var(--pf-v6-c-drawer__panel--after--Width);
|
108
114
|
--pf-v6-c-drawer--m-panel-bottom--m-inline__panel--PaddingBlockStart: var(--pf-v6-c-drawer__panel--after--Width);
|
109
115
|
}
|
116
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
117
|
+
.pf-v6-c-drawer {
|
118
|
+
--pf-v6-c-drawer__panel--TransitionDuration--slide: var(--pf-t--global--motion--duration--slide-in--short);
|
119
|
+
--pf-v6-c-drawer__panel--TransitionDelay--focus: var(--pf-v6-c-drawer__panel--TransitionDuration--slide);
|
120
|
+
--pf-v6-c-drawer__panel--TransitionDelay: 0s, 0s, 0s, 0s, var(--pf-v6-c-drawer__panel--TransitionDelay--focus);
|
121
|
+
--pf-v6-c-drawer__panel--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
122
|
+
--pf-v6-c-drawer__panel--TransitionDuration: 0s, var(--pf-v6-c-drawer__panel--TransitionDuration--slide), 0s, 0s, 0s;
|
123
|
+
--pf-v6-c-drawer__panel--TransitionProperty: margin, transform, box-shadow, flex-basis, visibility;
|
124
|
+
--pf-v6-c-drawer__panel--Opacity: 1;
|
125
|
+
}
|
126
|
+
}
|
110
127
|
@media screen and (min-width: 75rem) {
|
111
128
|
.pf-v6-c-drawer {
|
112
129
|
--pf-v6-c-drawer__panel--MinWidth: var(--pf-v6-c-drawer__panel--xl--MinWidth);
|
@@ -154,8 +171,13 @@
|
|
154
171
|
.pf-v6-c-drawer.pf-m-panel-bottom > .pf-v6-c-drawer__main {
|
155
172
|
flex-direction: column;
|
156
173
|
}
|
174
|
+
.pf-v6-c-drawer.pf-m-expanded {
|
175
|
+
--pf-v6-c-drawer__panel--TransitionDelay--focus: var(--pf-v6-c-drawer__panel--TransitionDelay--expand--focus);
|
176
|
+
}
|
157
177
|
.pf-v6-c-drawer.pf-m-expanded > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
|
158
178
|
transform: translateX(-100%);
|
179
|
+
--pf-v6-c-drawer__panel--Opacity: var(--pf-v6-c-drawer--m-expanded__panel--Opacity);
|
180
|
+
visibility: visible;
|
159
181
|
}
|
160
182
|
:where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-drawer.pf-m-expanded > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
|
161
183
|
transform: translateX(calc(-100% * var(--pf-v6-global--inverse--multiplier)));
|
@@ -228,8 +250,11 @@
|
|
228
250
|
order: 1;
|
229
251
|
max-height: var(--pf-v6-c-drawer__panel--MaxHeight);
|
230
252
|
overflow: auto;
|
253
|
+
visibility: hidden;
|
231
254
|
background-color: var(--pf-v6-c-drawer__panel--BackgroundColor);
|
232
255
|
box-shadow: var(--pf-v6-c-drawer__panel--BoxShadow);
|
256
|
+
opacity: var(--pf-v6-c-drawer__panel--Opacity);
|
257
|
+
transition-delay: var(--pf-v6-c-drawer__panel--TransitionDelay);
|
233
258
|
transition-timing-function: var(--pf-v6-c-drawer__panel--TransitionTimingFunction);
|
234
259
|
transition-duration: var(--pf-v6-c-drawer__panel--TransitionDuration);
|
235
260
|
transition-property: var(--pf-v6-c-drawer__panel--TransitionProperty);
|
@@ -286,17 +311,6 @@
|
|
286
311
|
padding-block-end: var(--pf-v6-c-drawer__panel--PaddingBlockEnd);
|
287
312
|
}
|
288
313
|
|
289
|
-
@keyframes pf-remove-tab-focus {
|
290
|
-
to {
|
291
|
-
visibility: hidden;
|
292
|
-
}
|
293
|
-
}
|
294
|
-
.pf-v6-c-drawer__panel[hidden] {
|
295
|
-
animation-name: pf-remove-tab-focus;
|
296
|
-
animation-delay: var(--pf-v6-c-drawer__panel--TransitionDuration);
|
297
|
-
animation-fill-mode: forwards;
|
298
|
-
}
|
299
|
-
|
300
314
|
.pf-v6-c-drawer__head {
|
301
315
|
display: grid;
|
302
316
|
grid-template-columns: auto;
|
@@ -404,7 +418,7 @@
|
|
404
418
|
.pf-v6-c-drawer {
|
405
419
|
min-width: var(--pf-v6-c-drawer__panel--MinWidth);
|
406
420
|
}
|
407
|
-
.pf-v6-c-drawer
|
421
|
+
.pf-v6-c-drawer > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
|
408
422
|
box-shadow: var(--pf-v6-c-drawer--m-expanded__panel--BoxShadow);
|
409
423
|
}
|
410
424
|
.pf-v6-c-drawer > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel.pf-m-resizable {
|
@@ -146,12 +146,11 @@
|
|
146
146
|
padding-inline-start: var(--pf-v6-c-form-control--PaddingInlineStart);
|
147
147
|
padding-inline-end: var(--pf-v6-c-form-control--PaddingInlineEnd);
|
148
148
|
color: var(--pf-v6-c-form-control--Color);
|
149
|
+
appearance: none;
|
149
150
|
background-color: transparent;
|
150
151
|
border: none;
|
151
152
|
border-radius: var(--pf-v6-c-form-control--BorderRadius);
|
152
153
|
outline-offset: var(--pf-v6-c-form-control--OutlineOffset);
|
153
|
-
-moz-appearance: none;
|
154
|
-
-webkit-appearance: none;
|
155
154
|
}
|
156
155
|
.pf-v6-c-form-control > ::placeholder {
|
157
156
|
color: var(--pf-v6-c-form-control--m-placeholder--Color);
|
@@ -3,8 +3,9 @@
|
|
3
3
|
--pf-v6-c-page--inset: var(--pf-t--global--spacer--inset--page-chrome);
|
4
4
|
--pf-v6-c-page--c-masthead--ZIndex: var(--pf-t--global--z-index--md);
|
5
5
|
--pf-v6-c-page__sidebar--ZIndex: var(--pf-t--global--z-index--sm);
|
6
|
-
--pf-v6-c-page__sidebar--Width: 18.125rem;
|
7
|
-
--pf-v6-c-page__sidebar--
|
6
|
+
--pf-v6-c-page__sidebar--Width--base: 18.125rem;
|
7
|
+
--pf-v6-c-page__sidebar--Width: var(--pf-v6-c-page__sidebar--Width--base);
|
8
|
+
--pf-v6-c-page__sidebar--xl--Width: var(--pf-v6-c-page__sidebar--Width--base);
|
8
9
|
--pf-v6-c-page__sidebar--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
|
9
10
|
--pf-v6-c-page__sidebar--BoxShadow: none;
|
10
11
|
--pf-v6-c-page__sidebar--TransitionDuration: var(--pf-t--global--motion--duration--slide-in--default);
|
@@ -432,7 +433,7 @@
|
|
432
433
|
-webkit-overflow-scrolling: touch;
|
433
434
|
}
|
434
435
|
@media screen and (min-width: 75rem) {
|
435
|
-
.pf-v6-c-masthead + .pf-v6-c-page__main-container, .pf-v6-c-page__sidebar.pf-m-collapsed + .pf-v6-c-page__main-container,
|
436
|
+
.pf-v6-c-page.pf-m-no-sidebar, .pf-v6-c-masthead + .pf-v6-c-page__main-container, .pf-v6-c-page__sidebar.pf-m-collapsed + .pf-v6-c-page__main-container,
|
436
437
|
.pf-v6-c-masthead + .pf-v6-c-page__drawer,
|
437
438
|
.pf-v6-c-page__sidebar.pf-m-collapsed + .pf-v6-c-page__drawer {
|
438
439
|
--pf-v6-c-page__main-container--GridArea: var(--pf-v6-c-page--masthead--main-container--GridArea);
|
@@ -27,6 +27,7 @@ declare const _default: {
|
|
27
27
|
"stickyBottomOnXlHeight": "pf-m-sticky-bottom-on-xl-height",
|
28
28
|
"stickyTopOn_2xlHeight": "pf-m-sticky-top-on-2xl-height",
|
29
29
|
"stickyBottomOn_2xlHeight": "pf-m-sticky-bottom-on-2xl-height",
|
30
|
+
"noSidebar": "pf-m-no-sidebar",
|
30
31
|
"secondary": "pf-m-secondary",
|
31
32
|
"padding": "pf-m-padding",
|
32
33
|
"noPadding": "pf-m-no-padding",
|
@@ -29,6 +29,7 @@ exports.default = {
|
|
29
29
|
"stickyBottomOnXlHeight": "pf-m-sticky-bottom-on-xl-height",
|
30
30
|
"stickyTopOn_2xlHeight": "pf-m-sticky-top-on-2xl-height",
|
31
31
|
"stickyBottomOn_2xlHeight": "pf-m-sticky-bottom-on-2xl-height",
|
32
|
+
"noSidebar": "pf-m-no-sidebar",
|
32
33
|
"secondary": "pf-m-secondary",
|
33
34
|
"padding": "pf-m-padding",
|
34
35
|
"noPadding": "pf-m-no-padding",
|
@@ -27,6 +27,7 @@ export default {
|
|
27
27
|
"stickyBottomOnXlHeight": "pf-m-sticky-bottom-on-xl-height",
|
28
28
|
"stickyTopOn_2xlHeight": "pf-m-sticky-top-on-2xl-height",
|
29
29
|
"stickyBottomOn_2xlHeight": "pf-m-sticky-bottom-on-2xl-height",
|
30
|
+
"noSidebar": "pf-m-no-sidebar",
|
30
31
|
"secondary": "pf-m-secondary",
|
31
32
|
"padding": "pf-m-padding",
|
32
33
|
"noPadding": "pf-m-no-padding",
|
@@ -1,3 +1,13 @@
|
|
1
|
+
@property --pf-v6-c-tabs--link-accent--length {
|
2
|
+
syntax: "<length>";
|
3
|
+
inherits: true;
|
4
|
+
initial-value: 0px;
|
5
|
+
}
|
6
|
+
@property --pf-v6-c-tabs--link-accent--start {
|
7
|
+
syntax: "<length>";
|
8
|
+
inherits: true;
|
9
|
+
initial-value: 0px;
|
10
|
+
}
|
1
11
|
.pf-v6-c-tabs {
|
2
12
|
--pf-v6-c-tabs--inset: 0;
|
3
13
|
--pf-v6-c-tabs--Width: auto;
|
@@ -59,6 +69,8 @@
|
|
59
69
|
--pf-v6-c-tabs--m-box--m-secondary__link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
|
60
70
|
--pf-v6-c-tabs--m-box--m-secondary__item--m-current__link--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
|
61
71
|
--pf-v6-c-tabs--m-subtab__link--FontSize: var(--pf-t--global--font--size--xs);
|
72
|
+
--pf-v6-c-tabs__link--TransitionDuration--background-color: var(--pf-t--global--motion--duration--fade--short);
|
73
|
+
--pf-v6-c-tabs__link--TransitionTimingFunction--background-color: var(--pf-t--global--motion--timing-function--default);
|
62
74
|
--pf-v6-c-tabs__link--before--border-color--base: var(--pf-t--global--border--color--default);
|
63
75
|
--pf-v6-c-tabs__link--before--border-width--base: var(--pf-t--global--border--width--regular);
|
64
76
|
--pf-v6-c-tabs__link--before--BorderBlockStartColor: var(--pf-v6-c-tabs__link--before--border-color--base);
|
@@ -83,6 +95,26 @@
|
|
83
95
|
--pf-v6-c-tabs__link--after--BorderInlineStartWidth: 0;
|
84
96
|
--pf-v6-c-tabs__item--m-current__link--after--BorderColor: var(--pf-t--global--border--color--clicked);
|
85
97
|
--pf-v6-c-tabs__item--m-current__link--after--BorderWidth: var(--pf-t--global--border--width--extra-strong);
|
98
|
+
--pf-v6-c-tabs--link-accent--start: 0;
|
99
|
+
--pf-v6-c-tabs--link-accent--length: auto;
|
100
|
+
--pf-v6-c-tabs--link-accent--color: var(--pf-v6-c-tabs__item--m-current__link--after--BorderColor);
|
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--InsetBlockStart: auto;
|
103
|
+
--pf-v6-c-tabs--link-accent--InsetBlockEnd: 0;
|
104
|
+
--pf-v6-c-tabs--link-accent--InsetInlineStart: initial;
|
105
|
+
--pf-v6-c-tabs--link-accent--Width: initial;
|
106
|
+
--pf-v6-c-tabs--link-accent--Height: 0;
|
107
|
+
--pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--link-accent--border-size);
|
108
|
+
--pf-v6-c-tabs--link-accent--BorderInlineStartWidth: 0;
|
109
|
+
--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart: initial;
|
110
|
+
--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
|
+
--pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth: 0;
|
115
|
+
--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);
|
86
118
|
--pf-v6-c-tabs__scroll-button--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
87
119
|
--pf-v6-c-tabs__scroll-button--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
88
120
|
--pf-v6-c-tabs__scroll-button--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
@@ -240,6 +272,13 @@
|
|
240
272
|
--pf-v6-c-tabs__link--after--InsetBlockEnd: 0;
|
241
273
|
--pf-v6-c-tabs__link--after--InsetInlineEnd: auto;
|
242
274
|
--pf-v6-c-tabs__list--ScrollSnapTypeAxis: var(--pf-v6-c-tabs--m-vertical__list--ScrollSnapTypeAxis);
|
275
|
+
--pf-v6-c-tabs--link-accent--InsetBlockStart: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart);
|
276
|
+
--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
|
+
--pf-v6-c-tabs--link-accent--Width: var(--pf-v6-c-tabs--m-vertical--link-accent--Width);
|
279
|
+
--pf-v6-c-tabs--link-accent--Height: var(--pf-v6-c-tabs--m-vertical--link-accent--Height);
|
280
|
+
--pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth);
|
281
|
+
--pf-v6-c-tabs--link-accent--BorderInlineStartWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderInlineStartWidth);
|
243
282
|
display: inline-flex;
|
244
283
|
flex-direction: column;
|
245
284
|
height: 100%;
|
@@ -502,6 +541,7 @@
|
|
502
541
|
text-decoration-line: none;
|
503
542
|
background-color: var(--pf-v6-c-tabs__link--BackgroundColor);
|
504
543
|
border-radius: var(--pf-v6-c-tabs__link--BorderRadius);
|
544
|
+
transition: background-color var(--pf-v6-c-tabs__link--TransitionDuration--background-color) var(--pf-v6-c-tabs__link--TransitionTimingFunction--background-color);
|
505
545
|
}
|
506
546
|
.pf-v6-c-tabs__item.pf-m-action, .pf-v6-c-tabs__link {
|
507
547
|
--pf-v6-c-tabs__link--after--BorderBlockEndWidth: var(--pf-v6-c-tabs__link--after--BorderWidth);
|
@@ -812,4 +852,29 @@
|
|
812
852
|
--pf-v6-c-tabs--m-vertical--inset: var(--pf-t--global--spacer--2xl);
|
813
853
|
--pf-v6-c-tabs--m-vertical--m-box--inset: var(--pf-t--global--spacer--2xl);
|
814
854
|
}
|
855
|
+
}
|
856
|
+
|
857
|
+
@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 {
|
860
|
+
content: revert;
|
861
|
+
}
|
862
|
+
.pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__list::after {
|
863
|
+
position: absolute;
|
864
|
+
inset-block-start: var(--pf-v6-c-tabs--link-accent--InsetBlockStart, var(--pf-v6-c-tabs--link-accent--start));
|
865
|
+
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));
|
867
|
+
width: var(--pf-v6-c-tabs--link-accent--Width, var(--pf-v6-c-tabs--link-accent--length));
|
868
|
+
height: var(--pf-v6-c-tabs--link-accent--Height, var(--pf-v6-c-tabs--link-accent--length));
|
869
|
+
content: "";
|
870
|
+
border: 0 solid var(--pf-v6-c-tabs--link-accent--color);
|
871
|
+
border-block-end-width: var(--pf-v6-c-tabs--link-accent--BorderBlockEndWidth);
|
872
|
+
border-inline-start-width: var(--pf-v6-c-tabs--link-accent--BorderInlineStartWidth);
|
873
|
+
transition-timing-function: var(--pf-v6-c-tabs--link-accent--TransitionTimingFunction);
|
874
|
+
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;
|
876
|
+
}
|
877
|
+
.pf-v6-c-tabs.pf-m-initializing-accent {
|
878
|
+
--pf-v6-c-tabs--link-accent--TransitionDuration: 0;
|
879
|
+
}
|
815
880
|
}
|
@@ -64,7 +64,8 @@ declare const _default: {
|
|
64
64
|
"insetMdOn_2xl": "pf-m-inset-md-on-2xl",
|
65
65
|
"insetLgOn_2xl": "pf-m-inset-lg-on-2xl",
|
66
66
|
"insetXlOn_2xl": "pf-m-inset-xl-on-2xl",
|
67
|
-
"inset_2xlOn_2xl": "pf-m-inset-2xl-on-2xl"
|
67
|
+
"inset_2xlOn_2xl": "pf-m-inset-2xl-on-2xl",
|
68
|
+
"initializingAccent": "pf-m-initializing-accent"
|
68
69
|
},
|
69
70
|
"tabs": "pf-v6-c-tabs",
|
70
71
|
"tabsAdd": "pf-v6-c-tabs__add",
|
@@ -66,7 +66,8 @@ exports.default = {
|
|
66
66
|
"insetMdOn_2xl": "pf-m-inset-md-on-2xl",
|
67
67
|
"insetLgOn_2xl": "pf-m-inset-lg-on-2xl",
|
68
68
|
"insetXlOn_2xl": "pf-m-inset-xl-on-2xl",
|
69
|
-
"inset_2xlOn_2xl": "pf-m-inset-2xl-on-2xl"
|
69
|
+
"inset_2xlOn_2xl": "pf-m-inset-2xl-on-2xl",
|
70
|
+
"initializingAccent": "pf-m-initializing-accent"
|
70
71
|
},
|
71
72
|
"tabs": "pf-v6-c-tabs",
|
72
73
|
"tabsAdd": "pf-v6-c-tabs__add",
|
@@ -64,7 +64,8 @@ export default {
|
|
64
64
|
"insetMdOn_2xl": "pf-m-inset-md-on-2xl",
|
65
65
|
"insetLgOn_2xl": "pf-m-inset-lg-on-2xl",
|
66
66
|
"insetXlOn_2xl": "pf-m-inset-xl-on-2xl",
|
67
|
-
"inset_2xlOn_2xl": "pf-m-inset-2xl-on-2xl"
|
67
|
+
"inset_2xlOn_2xl": "pf-m-inset-2xl-on-2xl",
|
68
|
+
"initializingAccent": "pf-m-initializing-accent"
|
68
69
|
},
|
69
70
|
"tabs": "pf-v6-c-tabs",
|
70
71
|
"tabsAdd": "pf-v6-c-tabs__add",
|
@@ -3,6 +3,9 @@ exports.__esModule = true;
|
|
3
3
|
require('./truncate.css');
|
4
4
|
exports.default = {
|
5
5
|
"dirRtl": "pf-v6-m-dir-rtl",
|
6
|
+
"modifiers": {
|
7
|
+
"fixed": "pf-m-fixed"
|
8
|
+
},
|
6
9
|
"truncate": "pf-v6-c-truncate",
|
7
10
|
"truncateEnd": "pf-v6-c-truncate__end",
|
8
11
|
"truncateStart": "pf-v6-c-truncate__start"
|
@@ -2329,6 +2329,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
2329
2329
|
--pf-v6-c-card__title-text--FontSize: var(--pf-t--global--font--size--heading--xs);
|
2330
2330
|
--pf-v6-c-card__title-text--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
2331
2331
|
--pf-v6-c-card__title-text--LineHeight: var(--pf-t--global--font--line-height--heading);
|
2332
|
+
--pf-v6-c-card__title-text--OverflowWrap: break-word;
|
2332
2333
|
--pf-v6-c-card--c-button--disabled--Color: var(--pf-t--global--text--color--on-disabled);
|
2333
2334
|
--pf-v6-c-card__body--FontSize: var(--pf-t--global--font--size--body--default);
|
2334
2335
|
--pf-v6-c-card__footer--FontSize: var(--pf-t--global--font--size--body--default);
|
@@ -2541,11 +2542,13 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
2541
2542
|
}
|
2542
2543
|
|
2543
2544
|
.pf-v6-c-card__title-text {
|
2545
|
+
overflow: auto;
|
2544
2546
|
font-family: var(--pf-v6-c-card__title-text--FontFamily);
|
2545
2547
|
font-size: var(--pf-v6-c-card__title-text--FontSize);
|
2546
2548
|
font-weight: var(--pf-v6-c-card__title-text--FontWeight);
|
2547
2549
|
line-height: var(--pf-v6-c-card__title-text--LineHeight);
|
2548
2550
|
color: var(--pf-v6-c-card__title-text--Color);
|
2551
|
+
overflow-wrap: var(--pf-v6-c-card__title-text--OverflowWrap);
|
2549
2552
|
}
|
2550
2553
|
|
2551
2554
|
.pf-v6-c-card__actions {
|
@@ -3048,6 +3051,9 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
3048
3051
|
.pf-v6-c-code-editor__main .monaco-editor {
|
3049
3052
|
background-color: var(--pf-v6-c-code-editor__main--BackgroundColor);
|
3050
3053
|
}
|
3054
|
+
.pf-v6-c-code-editor__main a.label-name {
|
3055
|
+
text-decoration-line: none;
|
3056
|
+
}
|
3051
3057
|
|
3052
3058
|
.pf-v6-c-code-editor__header + .pf-v6-c-code-editor__main {
|
3053
3059
|
border-block-start-width: 0;
|
@@ -5304,9 +5310,15 @@ ul) {
|
|
5304
5310
|
--pf-v6-c-drawer__panel--RowGap: var(--pf-t--global--spacer--sm);
|
5305
5311
|
--pf-v6-c-drawer__panel--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
5306
5312
|
--pf-v6-c-drawer__panel--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
5313
|
+
--pf-v6-c-drawer__panel--TransitionDelay: 0s, var(--pf-v6-c-drawer__panel--TransitionDelay--focus), var(--pf-v6-c-drawer__panel--TransitionDelay--focus);
|
5314
|
+
--pf-v6-c-drawer__panel--TransitionDelay--focus: var(--pf-v6-c-drawer__panel--TransitionDuration--fade);
|
5315
|
+
--pf-v6-c-drawer__panel--TransitionDelay--expand--focus: 0s;
|
5307
5316
|
--pf-v6-c-drawer__panel--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
5308
|
-
--pf-v6-c-drawer__panel--TransitionDuration: var(--pf-t--global--motion--duration--
|
5309
|
-
--pf-v6-c-drawer__panel--
|
5317
|
+
--pf-v6-c-drawer__panel--TransitionDuration--fade: var(--pf-t--global--motion--duration--fade--default);
|
5318
|
+
--pf-v6-c-drawer__panel--TransitionDuration: var(--pf-v6-c-drawer__panel--TransitionDuration--fade), 0s, 0s;
|
5319
|
+
--pf-v6-c-drawer__panel--TransitionProperty: opacity, visibility, transform;
|
5320
|
+
--pf-v6-c-drawer__panel--Opacity: 0;
|
5321
|
+
--pf-v6-c-drawer--m-expanded__panel--Opacity: 1;
|
5310
5322
|
--pf-v6-c-drawer__panel--FlexBasis: 100%;
|
5311
5323
|
--pf-v6-c-drawer__panel--md--FlexBasis--min: 1.5rem;
|
5312
5324
|
--pf-v6-c-drawer__panel--md--FlexBasis: 50%;
|
@@ -5396,6 +5408,17 @@ ul) {
|
|
5396
5408
|
--pf-v6-c-drawer--m-panel-left--m-inline__panel--PaddingInlineEnd: var(--pf-v6-c-drawer__panel--after--Width);
|
5397
5409
|
--pf-v6-c-drawer--m-panel-bottom--m-inline__panel--PaddingBlockStart: var(--pf-v6-c-drawer__panel--after--Width);
|
5398
5410
|
}
|
5411
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
5412
|
+
.pf-v6-c-drawer {
|
5413
|
+
--pf-v6-c-drawer__panel--TransitionDuration--slide: var(--pf-t--global--motion--duration--slide-in--short);
|
5414
|
+
--pf-v6-c-drawer__panel--TransitionDelay--focus: var(--pf-v6-c-drawer__panel--TransitionDuration--slide);
|
5415
|
+
--pf-v6-c-drawer__panel--TransitionDelay: 0s, 0s, 0s, 0s, var(--pf-v6-c-drawer__panel--TransitionDelay--focus);
|
5416
|
+
--pf-v6-c-drawer__panel--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
5417
|
+
--pf-v6-c-drawer__panel--TransitionDuration: 0s, var(--pf-v6-c-drawer__panel--TransitionDuration--slide), 0s, 0s, 0s;
|
5418
|
+
--pf-v6-c-drawer__panel--TransitionProperty: margin, transform, box-shadow, flex-basis, visibility;
|
5419
|
+
--pf-v6-c-drawer__panel--Opacity: 1;
|
5420
|
+
}
|
5421
|
+
}
|
5399
5422
|
@media screen and (min-width: 75rem) {
|
5400
5423
|
.pf-v6-c-drawer {
|
5401
5424
|
--pf-v6-c-drawer__panel--MinWidth: var(--pf-v6-c-drawer__panel--xl--MinWidth);
|
@@ -5443,8 +5466,13 @@ ul) {
|
|
5443
5466
|
.pf-v6-c-drawer.pf-m-panel-bottom > .pf-v6-c-drawer__main {
|
5444
5467
|
flex-direction: column;
|
5445
5468
|
}
|
5469
|
+
.pf-v6-c-drawer.pf-m-expanded {
|
5470
|
+
--pf-v6-c-drawer__panel--TransitionDelay--focus: var(--pf-v6-c-drawer__panel--TransitionDelay--expand--focus);
|
5471
|
+
}
|
5446
5472
|
.pf-v6-c-drawer.pf-m-expanded > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
|
5447
5473
|
transform: translateX(-100%);
|
5474
|
+
--pf-v6-c-drawer__panel--Opacity: var(--pf-v6-c-drawer--m-expanded__panel--Opacity);
|
5475
|
+
visibility: visible;
|
5448
5476
|
}
|
5449
5477
|
:where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-drawer.pf-m-expanded > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
|
5450
5478
|
transform: translateX(calc(-100% * var(--pf-v6-global--inverse--multiplier)));
|
@@ -5517,8 +5545,11 @@ ul) {
|
|
5517
5545
|
order: 1;
|
5518
5546
|
max-height: var(--pf-v6-c-drawer__panel--MaxHeight);
|
5519
5547
|
overflow: auto;
|
5548
|
+
visibility: hidden;
|
5520
5549
|
background-color: var(--pf-v6-c-drawer__panel--BackgroundColor);
|
5521
5550
|
box-shadow: var(--pf-v6-c-drawer__panel--BoxShadow);
|
5551
|
+
opacity: var(--pf-v6-c-drawer__panel--Opacity);
|
5552
|
+
transition-delay: var(--pf-v6-c-drawer__panel--TransitionDelay);
|
5522
5553
|
transition-timing-function: var(--pf-v6-c-drawer__panel--TransitionTimingFunction);
|
5523
5554
|
transition-duration: var(--pf-v6-c-drawer__panel--TransitionDuration);
|
5524
5555
|
transition-property: var(--pf-v6-c-drawer__panel--TransitionProperty);
|
@@ -5575,17 +5606,6 @@ ul) {
|
|
5575
5606
|
padding-block-end: var(--pf-v6-c-drawer__panel--PaddingBlockEnd);
|
5576
5607
|
}
|
5577
5608
|
|
5578
|
-
@keyframes pf-remove-tab-focus {
|
5579
|
-
to {
|
5580
|
-
visibility: hidden;
|
5581
|
-
}
|
5582
|
-
}
|
5583
|
-
.pf-v6-c-drawer__panel[hidden] {
|
5584
|
-
animation-name: pf-remove-tab-focus;
|
5585
|
-
animation-delay: var(--pf-v6-c-drawer__panel--TransitionDuration);
|
5586
|
-
animation-fill-mode: forwards;
|
5587
|
-
}
|
5588
|
-
|
5589
5609
|
.pf-v6-c-drawer__head {
|
5590
5610
|
display: grid;
|
5591
5611
|
grid-template-columns: auto;
|
@@ -5693,7 +5713,7 @@ ul) {
|
|
5693
5713
|
.pf-v6-c-drawer {
|
5694
5714
|
min-width: var(--pf-v6-c-drawer__panel--MinWidth);
|
5695
5715
|
}
|
5696
|
-
.pf-v6-c-drawer
|
5716
|
+
.pf-v6-c-drawer > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
|
5697
5717
|
box-shadow: var(--pf-v6-c-drawer--m-expanded__panel--BoxShadow);
|
5698
5718
|
}
|
5699
5719
|
.pf-v6-c-drawer > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel.pf-m-resizable {
|
@@ -7067,12 +7087,11 @@ ul) {
|
|
7067
7087
|
padding-inline-start: var(--pf-v6-c-form-control--PaddingInlineStart);
|
7068
7088
|
padding-inline-end: var(--pf-v6-c-form-control--PaddingInlineEnd);
|
7069
7089
|
color: var(--pf-v6-c-form-control--Color);
|
7090
|
+
appearance: none;
|
7070
7091
|
background-color: transparent;
|
7071
7092
|
border: none;
|
7072
7093
|
border-radius: var(--pf-v6-c-form-control--BorderRadius);
|
7073
7094
|
outline-offset: var(--pf-v6-c-form-control--OutlineOffset);
|
7074
|
-
-moz-appearance: none;
|
7075
|
-
-webkit-appearance: none;
|
7076
7095
|
}
|
7077
7096
|
.pf-v6-c-form-control > ::placeholder {
|
7078
7097
|
color: var(--pf-v6-c-form-control--m-placeholder--Color);
|
@@ -11746,8 +11765,9 @@ ul.pf-v6-c-list {
|
|
11746
11765
|
--pf-v6-c-page--inset: var(--pf-t--global--spacer--inset--page-chrome);
|
11747
11766
|
--pf-v6-c-page--c-masthead--ZIndex: var(--pf-t--global--z-index--md);
|
11748
11767
|
--pf-v6-c-page__sidebar--ZIndex: var(--pf-t--global--z-index--sm);
|
11749
|
-
--pf-v6-c-page__sidebar--Width: 18.125rem;
|
11750
|
-
--pf-v6-c-page__sidebar--
|
11768
|
+
--pf-v6-c-page__sidebar--Width--base: 18.125rem;
|
11769
|
+
--pf-v6-c-page__sidebar--Width: var(--pf-v6-c-page__sidebar--Width--base);
|
11770
|
+
--pf-v6-c-page__sidebar--xl--Width: var(--pf-v6-c-page__sidebar--Width--base);
|
11751
11771
|
--pf-v6-c-page__sidebar--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
|
11752
11772
|
--pf-v6-c-page__sidebar--BoxShadow: none;
|
11753
11773
|
--pf-v6-c-page__sidebar--TransitionDuration: var(--pf-t--global--motion--duration--slide-in--default);
|
@@ -12175,7 +12195,7 @@ ul.pf-v6-c-list {
|
|
12175
12195
|
-webkit-overflow-scrolling: touch;
|
12176
12196
|
}
|
12177
12197
|
@media screen and (min-width: 75rem) {
|
12178
|
-
.pf-v6-c-masthead + .pf-v6-c-page__main-container, .pf-v6-c-page__sidebar.pf-m-collapsed + .pf-v6-c-page__main-container,
|
12198
|
+
.pf-v6-c-page.pf-m-no-sidebar, .pf-v6-c-masthead + .pf-v6-c-page__main-container, .pf-v6-c-page__sidebar.pf-m-collapsed + .pf-v6-c-page__main-container,
|
12179
12199
|
.pf-v6-c-masthead + .pf-v6-c-page__drawer,
|
12180
12200
|
.pf-v6-c-page__sidebar.pf-m-collapsed + .pf-v6-c-page__drawer {
|
12181
12201
|
--pf-v6-c-page__main-container--GridArea: var(--pf-v6-c-page--masthead--main-container--GridArea);
|
@@ -18315,6 +18335,16 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
18315
18335
|
}
|
18316
18336
|
}
|
18317
18337
|
|
18338
|
+
@property --pf-v6-c-tabs--link-accent--length {
|
18339
|
+
syntax: "<length>";
|
18340
|
+
inherits: true;
|
18341
|
+
initial-value: 0px;
|
18342
|
+
}
|
18343
|
+
@property --pf-v6-c-tabs--link-accent--start {
|
18344
|
+
syntax: "<length>";
|
18345
|
+
inherits: true;
|
18346
|
+
initial-value: 0px;
|
18347
|
+
}
|
18318
18348
|
.pf-v6-c-tabs {
|
18319
18349
|
--pf-v6-c-tabs--inset: 0;
|
18320
18350
|
--pf-v6-c-tabs--Width: auto;
|
@@ -18376,6 +18406,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
18376
18406
|
--pf-v6-c-tabs--m-box--m-secondary__link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
|
18377
18407
|
--pf-v6-c-tabs--m-box--m-secondary__item--m-current__link--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
|
18378
18408
|
--pf-v6-c-tabs--m-subtab__link--FontSize: var(--pf-t--global--font--size--xs);
|
18409
|
+
--pf-v6-c-tabs__link--TransitionDuration--background-color: var(--pf-t--global--motion--duration--fade--short);
|
18410
|
+
--pf-v6-c-tabs__link--TransitionTimingFunction--background-color: var(--pf-t--global--motion--timing-function--default);
|
18379
18411
|
--pf-v6-c-tabs__link--before--border-color--base: var(--pf-t--global--border--color--default);
|
18380
18412
|
--pf-v6-c-tabs__link--before--border-width--base: var(--pf-t--global--border--width--regular);
|
18381
18413
|
--pf-v6-c-tabs__link--before--BorderBlockStartColor: var(--pf-v6-c-tabs__link--before--border-color--base);
|
@@ -18400,6 +18432,26 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
18400
18432
|
--pf-v6-c-tabs__link--after--BorderInlineStartWidth: 0;
|
18401
18433
|
--pf-v6-c-tabs__item--m-current__link--after--BorderColor: var(--pf-t--global--border--color--clicked);
|
18402
18434
|
--pf-v6-c-tabs__item--m-current__link--after--BorderWidth: var(--pf-t--global--border--width--extra-strong);
|
18435
|
+
--pf-v6-c-tabs--link-accent--start: 0;
|
18436
|
+
--pf-v6-c-tabs--link-accent--length: auto;
|
18437
|
+
--pf-v6-c-tabs--link-accent--color: var(--pf-v6-c-tabs__item--m-current__link--after--BorderColor);
|
18438
|
+
--pf-v6-c-tabs--link-accent--border-size: var(--pf-v6-c-tabs__item--m-current__link--after--BorderWidth);
|
18439
|
+
--pf-v6-c-tabs--link-accent--InsetBlockStart: auto;
|
18440
|
+
--pf-v6-c-tabs--link-accent--InsetBlockEnd: 0;
|
18441
|
+
--pf-v6-c-tabs--link-accent--InsetInlineStart: initial;
|
18442
|
+
--pf-v6-c-tabs--link-accent--Width: initial;
|
18443
|
+
--pf-v6-c-tabs--link-accent--Height: 0;
|
18444
|
+
--pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--link-accent--border-size);
|
18445
|
+
--pf-v6-c-tabs--link-accent--BorderInlineStartWidth: 0;
|
18446
|
+
--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart: initial;
|
18447
|
+
--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockEnd: auto;
|
18448
|
+
--pf-v6-c-tabs--m-vertical--link-accent--InsetInlineStart: 0;
|
18449
|
+
--pf-v6-c-tabs--m-vertical--link-accent--Width: 0;
|
18450
|
+
--pf-v6-c-tabs--m-vertical--link-accent--Height: initial;
|
18451
|
+
--pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth: 0;
|
18452
|
+
--pf-v6-c-tabs--m-vertical--link-accent--BorderInlineStartWidth: var(--pf-v6-c-tabs--link-accent--border-size);
|
18453
|
+
--pf-v6-c-tabs--link-accent--TransitionDuration: var(--pf-t--global--motion--duration--md);
|
18454
|
+
--pf-v6-c-tabs--link-accent--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
18403
18455
|
--pf-v6-c-tabs__scroll-button--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
18404
18456
|
--pf-v6-c-tabs__scroll-button--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
18405
18457
|
--pf-v6-c-tabs__scroll-button--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
@@ -18557,6 +18609,13 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
18557
18609
|
--pf-v6-c-tabs__link--after--InsetBlockEnd: 0;
|
18558
18610
|
--pf-v6-c-tabs__link--after--InsetInlineEnd: auto;
|
18559
18611
|
--pf-v6-c-tabs__list--ScrollSnapTypeAxis: var(--pf-v6-c-tabs--m-vertical__list--ScrollSnapTypeAxis);
|
18612
|
+
--pf-v6-c-tabs--link-accent--InsetBlockStart: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart);
|
18613
|
+
--pf-v6-c-tabs--link-accent--InsetBlockEnd: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockEnd);
|
18614
|
+
--pf-v6-c-tabs--link-accent--InsetInlineStart: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetInlineStart);
|
18615
|
+
--pf-v6-c-tabs--link-accent--Width: var(--pf-v6-c-tabs--m-vertical--link-accent--Width);
|
18616
|
+
--pf-v6-c-tabs--link-accent--Height: var(--pf-v6-c-tabs--m-vertical--link-accent--Height);
|
18617
|
+
--pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth);
|
18618
|
+
--pf-v6-c-tabs--link-accent--BorderInlineStartWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderInlineStartWidth);
|
18560
18619
|
display: inline-flex;
|
18561
18620
|
flex-direction: column;
|
18562
18621
|
height: 100%;
|
@@ -18819,6 +18878,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
18819
18878
|
text-decoration-line: none;
|
18820
18879
|
background-color: var(--pf-v6-c-tabs__link--BackgroundColor);
|
18821
18880
|
border-radius: var(--pf-v6-c-tabs__link--BorderRadius);
|
18881
|
+
transition: background-color var(--pf-v6-c-tabs__link--TransitionDuration--background-color) var(--pf-v6-c-tabs__link--TransitionTimingFunction--background-color);
|
18822
18882
|
}
|
18823
18883
|
.pf-v6-c-tabs__item.pf-m-action, .pf-v6-c-tabs__link {
|
18824
18884
|
--pf-v6-c-tabs__link--after--BorderBlockEndWidth: var(--pf-v6-c-tabs__link--after--BorderWidth);
|
@@ -19131,6 +19191,30 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
19131
19191
|
}
|
19132
19192
|
}
|
19133
19193
|
|
19194
|
+
@media (prefers-reduced-motion: no-preference) {
|
19195
|
+
.pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__link::after,
|
19196
|
+
.pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__item.pf-m-action::after {
|
19197
|
+
content: revert;
|
19198
|
+
}
|
19199
|
+
.pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__list::after {
|
19200
|
+
position: absolute;
|
19201
|
+
inset-block-start: var(--pf-v6-c-tabs--link-accent--InsetBlockStart, var(--pf-v6-c-tabs--link-accent--start));
|
19202
|
+
inset-block-end: var(--pf-v6-c-tabs--link-accent--InsetBlockEnd);
|
19203
|
+
inset-inline-start: var(--pf-v6-c-tabs--link-accent--InsetInlineStart, var(--pf-v6-c-tabs--link-accent--start));
|
19204
|
+
width: var(--pf-v6-c-tabs--link-accent--Width, var(--pf-v6-c-tabs--link-accent--length));
|
19205
|
+
height: var(--pf-v6-c-tabs--link-accent--Height, var(--pf-v6-c-tabs--link-accent--length));
|
19206
|
+
content: "";
|
19207
|
+
border: 0 solid var(--pf-v6-c-tabs--link-accent--color);
|
19208
|
+
border-block-end-width: var(--pf-v6-c-tabs--link-accent--BorderBlockEndWidth);
|
19209
|
+
border-inline-start-width: var(--pf-v6-c-tabs--link-accent--BorderInlineStartWidth);
|
19210
|
+
transition-timing-function: var(--pf-v6-c-tabs--link-accent--TransitionTimingFunction);
|
19211
|
+
transition-duration: var(--pf-v6-c-tabs--link-accent--TransitionDuration);
|
19212
|
+
transition-property: --pf-v6-c-tabs--link-accent--length, --pf-v6-c-tabs--link-accent--start, width;
|
19213
|
+
}
|
19214
|
+
.pf-v6-c-tabs.pf-m-initializing-accent {
|
19215
|
+
--pf-v6-c-tabs--link-accent--TransitionDuration: 0;
|
19216
|
+
}
|
19217
|
+
}
|
19134
19218
|
.pf-v6-c-text-input-group {
|
19135
19219
|
--pf-v6-c-text-input-group--BackgroundColor: var(--pf-t--global--background--color--control--default);
|
19136
19220
|
--pf-v6-c-text-input-group--BorderColor: var(--pf-t--global--border--color--default);
|
@@ -21742,6 +21826,11 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
21742
21826
|
align-items: baseline;
|
21743
21827
|
min-width: var(--pf-v6-c-truncate--MinWidth);
|
21744
21828
|
}
|
21829
|
+
.pf-v6-c-truncate.pf-m-fixed {
|
21830
|
+
display: inline;
|
21831
|
+
align-items: revert;
|
21832
|
+
min-width: revert;
|
21833
|
+
}
|
21745
21834
|
|
21746
21835
|
.pf-v6-c-truncate__start,
|
21747
21836
|
.pf-v6-c-truncate__end {
|
@@ -276,6 +276,7 @@ declare const _default: {
|
|
276
276
|
"labelGroupMain": "pf-v6-c-label-group__main",
|
277
277
|
"labelGroupTextarea": "pf-v6-c-label-group__textarea",
|
278
278
|
"labelIcon": "pf-v6-c-label__icon",
|
279
|
+
"labelName": "label-name",
|
279
280
|
"labelText": "pf-v6-c-label__text",
|
280
281
|
"list": "pf-v6-c-list",
|
281
282
|
"listItem": "pf-v6-c-list__item",
|
@@ -686,6 +687,7 @@ declare const _default: {
|
|
686
687
|
"stickyBottomOnXlHeight": "pf-m-sticky-bottom-on-xl-height",
|
687
688
|
"stickyTopOn_2xlHeight": "pf-m-sticky-top-on-2xl-height",
|
688
689
|
"stickyBottomOn_2xlHeight": "pf-m-sticky-bottom-on-2xl-height",
|
690
|
+
"noSidebar": "pf-m-no-sidebar",
|
689
691
|
"paddingOnSm": "pf-m-padding-on-sm",
|
690
692
|
"noPaddingOnSm": "pf-m-no-padding-on-sm",
|
691
693
|
"paddingOnMd": "pf-m-padding-on-md",
|
@@ -807,6 +809,7 @@ declare const _default: {
|
|
807
809
|
"treeViewGrid_2xl": "pf-m-tree-view-grid-2xl",
|
808
810
|
"noBorderBottom": "pf-m-no-border-bottom",
|
809
811
|
"subtab": "pf-m-subtab",
|
812
|
+
"initializingAccent": "pf-m-initializing-accent",
|
810
813
|
"hint": "pf-m-hint",
|
811
814
|
"stacked": "pf-m-stacked",
|
812
815
|
"4xl": "pf-m-4xl",
|
package/css/components/_index.js
CHANGED
@@ -278,6 +278,7 @@ exports.default = {
|
|
278
278
|
"labelGroupMain": "pf-v6-c-label-group__main",
|
279
279
|
"labelGroupTextarea": "pf-v6-c-label-group__textarea",
|
280
280
|
"labelIcon": "pf-v6-c-label__icon",
|
281
|
+
"labelName": "label-name",
|
281
282
|
"labelText": "pf-v6-c-label__text",
|
282
283
|
"list": "pf-v6-c-list",
|
283
284
|
"listItem": "pf-v6-c-list__item",
|
@@ -688,6 +689,7 @@ exports.default = {
|
|
688
689
|
"stickyBottomOnXlHeight": "pf-m-sticky-bottom-on-xl-height",
|
689
690
|
"stickyTopOn_2xlHeight": "pf-m-sticky-top-on-2xl-height",
|
690
691
|
"stickyBottomOn_2xlHeight": "pf-m-sticky-bottom-on-2xl-height",
|
692
|
+
"noSidebar": "pf-m-no-sidebar",
|
691
693
|
"paddingOnSm": "pf-m-padding-on-sm",
|
692
694
|
"noPaddingOnSm": "pf-m-no-padding-on-sm",
|
693
695
|
"paddingOnMd": "pf-m-padding-on-md",
|
@@ -809,6 +811,7 @@ exports.default = {
|
|
809
811
|
"treeViewGrid_2xl": "pf-m-tree-view-grid-2xl",
|
810
812
|
"noBorderBottom": "pf-m-no-border-bottom",
|
811
813
|
"subtab": "pf-m-subtab",
|
814
|
+
"initializingAccent": "pf-m-initializing-accent",
|
812
815
|
"hint": "pf-m-hint",
|
813
816
|
"stacked": "pf-m-stacked",
|
814
817
|
"4xl": "pf-m-4xl",
|
@@ -276,6 +276,7 @@ export default {
|
|
276
276
|
"labelGroupMain": "pf-v6-c-label-group__main",
|
277
277
|
"labelGroupTextarea": "pf-v6-c-label-group__textarea",
|
278
278
|
"labelIcon": "pf-v6-c-label__icon",
|
279
|
+
"labelName": "label-name",
|
279
280
|
"labelText": "pf-v6-c-label__text",
|
280
281
|
"list": "pf-v6-c-list",
|
281
282
|
"listItem": "pf-v6-c-list__item",
|
@@ -686,6 +687,7 @@ export default {
|
|
686
687
|
"stickyBottomOnXlHeight": "pf-m-sticky-bottom-on-xl-height",
|
687
688
|
"stickyTopOn_2xlHeight": "pf-m-sticky-top-on-2xl-height",
|
688
689
|
"stickyBottomOn_2xlHeight": "pf-m-sticky-bottom-on-2xl-height",
|
690
|
+
"noSidebar": "pf-m-no-sidebar",
|
689
691
|
"paddingOnSm": "pf-m-padding-on-sm",
|
690
692
|
"noPaddingOnSm": "pf-m-no-padding-on-sm",
|
691
693
|
"paddingOnMd": "pf-m-padding-on-md",
|
@@ -807,6 +809,7 @@ export default {
|
|
807
809
|
"treeViewGrid_2xl": "pf-m-tree-view-grid-2xl",
|
808
810
|
"noBorderBottom": "pf-m-no-border-bottom",
|
809
811
|
"subtab": "pf-m-subtab",
|
812
|
+
"initializingAccent": "pf-m-initializing-accent",
|
810
813
|
"hint": "pf-m-hint",
|
811
814
|
"stacked": "pf-m-stacked",
|
812
815
|
"4xl": "pf-m-4xl",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@patternfly/react-styles",
|
3
|
-
"version": "6.2.0",
|
3
|
+
"version": "6.2.1-prerelease.0",
|
4
4
|
"main": "dist/js/index.js",
|
5
5
|
"module": "dist/esm/index.js",
|
6
6
|
"types": "dist/esm/index.d.ts",
|
@@ -19,10 +19,10 @@
|
|
19
19
|
"clean": "rimraf dist css"
|
20
20
|
},
|
21
21
|
"devDependencies": {
|
22
|
-
"@patternfly/patternfly": "6.
|
22
|
+
"@patternfly/patternfly": "6.3.0-prerelease.6",
|
23
23
|
"change-case": "^5.4.4",
|
24
24
|
"fs-extra": "^11.3.0"
|
25
25
|
},
|
26
26
|
"license": "MIT",
|
27
|
-
"gitHead": "
|
27
|
+
"gitHead": "51f35a918102ae3dcaec8ee577cf6f2f578aea16"
|
28
28
|
}
|