@patternfly/patternfly 6.3.0-prerelease.23 → 6.3.0-prerelease.25
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/components/Accordion/accordion.css +11 -12
- package/components/Accordion/accordion.scss +11 -10
- package/components/Button/button.css +12 -5
- package/components/Button/button.scss +15 -4
- package/components/Menu/menu.css +24 -4
- package/components/Menu/menu.scss +20 -5
- package/components/TreeView/tree-view.css +9 -3
- package/components/TreeView/tree-view.scss +9 -3
- package/components/_index.css +56 -24
- package/package.json +2 -2
- package/patternfly-no-globals.css +56 -24
- package/patternfly.css +56 -24
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -183,33 +183,32 @@
|
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
.pf-v6-c-accordion__expandable-content {
|
|
186
|
-
|
|
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),
|
|
197
|
-
transition-property: opacity, translate,
|
|
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
|
-
|
|
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
|
-
|
|
209
|
-
|
|
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 {
|
|
@@ -212,32 +212,33 @@
|
|
|
212
212
|
}
|
|
213
213
|
|
|
214
214
|
.#{$accordion}__expandable-content {
|
|
215
|
-
|
|
216
|
-
margin-block-end: var(--#{$accordion}__expandable-content--MarginBlockEnd);
|
|
215
|
+
max-height: 0;
|
|
217
216
|
margin-inline-start: var(--#{$accordion}__expandable-content--MarginInlineStart);
|
|
218
217
|
margin-inline-end: var(--#{$accordion}__expandable-content--MarginInlineEnd);
|
|
219
218
|
font-size: var(--#{$accordion}__expandable-content--FontSize);
|
|
220
219
|
color: var(--#{$accordion}__expandable-content--Color);
|
|
220
|
+
visibility: hidden;
|
|
221
221
|
background-color: var(--#{$accordion}__expandable-content--BackgroundColor);
|
|
222
222
|
border-radius: var(--#{$accordion}__expandable-content--BorderRadius);
|
|
223
223
|
opacity: var(--#{$accordion}__expandable-content--Opacity);
|
|
224
|
+
transition-delay: 0s, 0s, var(--#{$accordion}__expandable-content--TransitionDuration--fade), var(--#{$accordion}__expandable-content--TransitionDuration--fade), var(--#{$accordion}__expandable-content--TransitionDuration--fade);
|
|
224
225
|
transition-timing-function: var(--#{$accordion}__expandable-content--TransitionTimingFunction);
|
|
225
|
-
transition-duration: var(--#{$accordion}__expandable-content--TransitionDuration--fade), var(--#{$accordion}__expandable-content--TransitionDuration--slide),
|
|
226
|
-
transition-property: opacity, translate,
|
|
227
|
-
transition-behavior: allow-discrete;
|
|
226
|
+
transition-duration: var(--#{$accordion}__expandable-content--TransitionDuration--fade), var(--#{$accordion}__expandable-content--TransitionDuration--slide), 0s, 0s, 0s;
|
|
227
|
+
transition-property: opacity, translate, visibility, max-height, margin-block-end;
|
|
228
228
|
translate: 0 var(--#{$accordion}__expandable-content--TranslateY);
|
|
229
229
|
|
|
230
230
|
&.pf-m-fixed {
|
|
231
|
-
max-height: var(--#{$accordion}__expandable-content--m-fixed--MaxHeight);
|
|
232
231
|
overflow-y: auto;
|
|
233
232
|
}
|
|
234
233
|
|
|
235
234
|
.#{$accordion}__item.pf-m-expanded & {
|
|
236
|
-
|
|
235
|
+
max-height: 9999px;
|
|
236
|
+
margin-block-end: var(--#{$accordion}__expandable-content--MarginBlockEnd);
|
|
237
|
+
visibility: revert;
|
|
238
|
+
transition-delay: 0s;
|
|
237
239
|
|
|
238
|
-
|
|
239
|
-
--#{$accordion}__expandable-content--
|
|
240
|
-
--#{$accordion}__expandable-content--TranslateY: -.5rem;
|
|
240
|
+
&.pf-m-fixed {
|
|
241
|
+
max-height: var(--#{$accordion}__expandable-content--m-fixed--MaxHeight);
|
|
241
242
|
}
|
|
242
243
|
}
|
|
243
244
|
}
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
--pf-v6-c-button--TextDecorationStyle: none;
|
|
21
21
|
--pf-v6-c-button--TextDecorationColor: currentcolor;
|
|
22
22
|
--pf-v6-c-button--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
23
|
-
--pf-v6-c-button--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--
|
|
24
|
-
--pf-v6-c-button--TransitionProperty: color, background
|
|
23
|
+
--pf-v6-c-button--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--accelerate);
|
|
24
|
+
--pf-v6-c-button--TransitionProperty: color, background, border-width, border-color;
|
|
25
25
|
--pf-v6-c-button--hover--BackgroundColor: transparent;
|
|
26
26
|
--pf-v6-c-button--hover--BorderColor: transparent;
|
|
27
27
|
--pf-v6-c-button--hover--BorderWidth: var(--pf-t--global--border--width--action--hover);
|
|
@@ -288,8 +288,9 @@
|
|
|
288
288
|
text-decoration-color: var(--pf-v6-c-button--TextDecorationColor);
|
|
289
289
|
white-space: nowrap;
|
|
290
290
|
cursor: pointer;
|
|
291
|
+
-webkit-user-select: none;
|
|
291
292
|
user-select: none;
|
|
292
|
-
background
|
|
293
|
+
background: var(--pf-v6-c-button--BackgroundColor) radial-gradient(circle, transparent 1%, color-mix(in srgb, currentcolor 15%, transparent) 1%) center/15000%;
|
|
293
294
|
border: 0;
|
|
294
295
|
border-start-start-radius: var(--pf-v6-c-button--BorderStartStartRadius, var(--pf-v6-c-button--BorderRadius));
|
|
295
296
|
border-start-end-radius: var(--pf-v6-c-button--BorderStartEndRadius, var(--pf-v6-c-button--BorderRadius));
|
|
@@ -406,6 +407,7 @@
|
|
|
406
407
|
--pf-v6-c-button--m-link--hover__icon--Color: var(--pf-v6-c-button--m-link--m-inline--hover__icon--Color);
|
|
407
408
|
text-align: start;
|
|
408
409
|
white-space: normal;
|
|
410
|
+
background: transparent;
|
|
409
411
|
outline-offset: 0.125rem;
|
|
410
412
|
}
|
|
411
413
|
span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
@@ -539,6 +541,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
539
541
|
--pf-v6-c-button--m-small--PaddingInlineEnd: var(--pf-v6-c-button--m-plain--m-no-padding--m-small--PaddingInlineEnd);
|
|
540
542
|
--pf-v6-c-button--m-small--PaddingInlineStart: var(--pf-v6-c-button--m-plain--m-no-padding--m-small--PaddingInlineStart);
|
|
541
543
|
min-width: var(--pf-v6-c-button--m-plain--m-no-padding--MinWidth);
|
|
544
|
+
background: var(--pf-v6-c-button--BackgroundColor);
|
|
542
545
|
}
|
|
543
546
|
.pf-v6-c-button.pf-m-block {
|
|
544
547
|
--pf-v6-c-button--Display: var(--pf-v6-c-button--m-block--Display);
|
|
@@ -585,20 +588,24 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
585
588
|
text-decoration-style: var(--pf-v6-c-button--hover--TextDecorationStyle);
|
|
586
589
|
text-decoration-color: var(--pf-v6-c-button--hover--TextDecorationColor);
|
|
587
590
|
}
|
|
588
|
-
.pf-v6-c-button.pf-m-clicked {
|
|
591
|
+
.pf-v6-c-button:active, .pf-v6-c-button.pf-m-clicked {
|
|
589
592
|
--pf-v6-c-button--Color: var(--pf-v6-c-button--m-clicked--Color);
|
|
590
593
|
--pf-v6-c-button--BackgroundColor: var(--pf-v6-c-button--m-clicked--BackgroundColor);
|
|
591
594
|
--pf-v6-c-button--BorderWidth: var(--pf-v6-c-button--m-clicked--BorderWidth);
|
|
592
595
|
--pf-v6-c-button--BorderColor: var(--pf-v6-c-button--m-clicked--BorderColor);
|
|
593
596
|
--pf-v6-c-button__icon--Color: var(--pf-v6-c-button--m-clicked__icon--Color);
|
|
594
597
|
}
|
|
598
|
+
.pf-v6-c-button:active {
|
|
599
|
+
background-size: 100%;
|
|
600
|
+
transition-duration: 0s;
|
|
601
|
+
}
|
|
595
602
|
.pf-v6-c-button:disabled, .pf-v6-c-button.pf-m-disabled {
|
|
596
603
|
pointer-events: none;
|
|
597
604
|
}
|
|
598
605
|
.pf-v6-c-button:disabled, .pf-v6-c-button.pf-m-disabled, .pf-v6-c-button.pf-m-aria-disabled {
|
|
599
606
|
color: var(--pf-v6-c-button--disabled--Color);
|
|
600
607
|
text-decoration-color: var(--pf-v6-c-button--disabled--TextDecorationColor);
|
|
601
|
-
background
|
|
608
|
+
background: var(--pf-v6-c-button--disabled--BackgroundColor);
|
|
602
609
|
}
|
|
603
610
|
.pf-v6-c-button:disabled::after, .pf-v6-c-button.pf-m-disabled::after, .pf-v6-c-button.pf-m-aria-disabled::after {
|
|
604
611
|
border-color: transparent;
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
--#{$button}--TextDecorationStyle: none;
|
|
23
23
|
--#{$button}--TextDecorationColor: currentcolor;
|
|
24
24
|
--#{$button}--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
25
|
-
--#{$button}--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--
|
|
26
|
-
--#{$button}--TransitionProperty: color, background
|
|
25
|
+
--#{$button}--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--accelerate);
|
|
26
|
+
--#{$button}--TransitionProperty: color, background, border-width, border-color;
|
|
27
27
|
|
|
28
28
|
// Hover
|
|
29
29
|
--#{$button}--hover--BackgroundColor: transparent;
|
|
@@ -340,8 +340,11 @@
|
|
|
340
340
|
text-decoration-color: var(--#{$button}--TextDecorationColor);
|
|
341
341
|
white-space: nowrap;
|
|
342
342
|
cursor: pointer; // needed for when a button does not use <button> - eg, <span>
|
|
343
|
+
// stylelint-disable property-no-vendor-prefix
|
|
344
|
+
-webkit-user-select: none;
|
|
343
345
|
user-select: none;
|
|
344
|
-
|
|
346
|
+
// stylelint-enable property-no-vendor-prefix
|
|
347
|
+
background: var(--#{$button}--BackgroundColor) radial-gradient(circle, transparent 1%, color-mix(in srgb, currentcolor 15%, transparent) 1%) center/15000%;
|
|
345
348
|
border: 0;
|
|
346
349
|
border-start-start-radius: var(--#{$button}--BorderStartStartRadius, var(--#{$button}--BorderRadius));
|
|
347
350
|
border-start-end-radius: var(--#{$button}--BorderStartEndRadius, var(--#{$button}--BorderRadius));
|
|
@@ -475,6 +478,7 @@
|
|
|
475
478
|
|
|
476
479
|
text-align: start;
|
|
477
480
|
white-space: normal;
|
|
481
|
+
background: transparent; // don't show the ripple effect for inline links
|
|
478
482
|
outline-offset: #{pf-size-prem(2px)};
|
|
479
483
|
}
|
|
480
484
|
|
|
@@ -622,6 +626,7 @@
|
|
|
622
626
|
--#{$button}--m-small--PaddingInlineStart: var(--#{$button}--m-plain--m-no-padding--m-small--PaddingInlineStart);
|
|
623
627
|
|
|
624
628
|
min-width: var(--#{$button}--m-plain--m-no-padding--MinWidth);
|
|
629
|
+
background: var(--#{$button}--BackgroundColor); // override the ripple background
|
|
625
630
|
}
|
|
626
631
|
}
|
|
627
632
|
|
|
@@ -682,6 +687,7 @@
|
|
|
682
687
|
text-decoration-color: var(--#{$button}--hover--TextDecorationColor);
|
|
683
688
|
}
|
|
684
689
|
|
|
690
|
+
&:active,
|
|
685
691
|
&.pf-m-clicked {
|
|
686
692
|
--#{$button}--Color: var(--#{$button}--m-clicked--Color);
|
|
687
693
|
--#{$button}--BackgroundColor: var(--#{$button}--m-clicked--BackgroundColor);
|
|
@@ -690,6 +696,11 @@
|
|
|
690
696
|
--#{$button}__icon--Color: var(--#{$button}--m-clicked__icon--Color);
|
|
691
697
|
}
|
|
692
698
|
|
|
699
|
+
&:active {
|
|
700
|
+
background-size: 100%; // apply the background surface for ripple
|
|
701
|
+
transition-duration: 0s; // transition immediately
|
|
702
|
+
}
|
|
703
|
+
|
|
693
704
|
// Disabled buttons
|
|
694
705
|
// These styles need to go after the button types because they need to override some of the type styling
|
|
695
706
|
&:disabled,
|
|
@@ -702,7 +713,7 @@
|
|
|
702
713
|
&.pf-m-aria-disabled {
|
|
703
714
|
color: var(--#{$button}--disabled--Color);
|
|
704
715
|
text-decoration-color: var(--#{$button}--disabled--TextDecorationColor);
|
|
705
|
-
background
|
|
716
|
+
background: var(--#{$button}--disabled--BackgroundColor);
|
|
706
717
|
|
|
707
718
|
&::after {
|
|
708
719
|
border-color: transparent;
|
package/components/Menu/menu.css
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
--pf-v6-c-menu--ZIndex: var(--pf-t--global--z-index--sm);
|
|
13
13
|
--pf-v6-c-menu--button--disabled--Color: var(--pf-t--global--text--color--disabled);
|
|
14
14
|
--pf-v6-c-menu--icon--disabled--Color: var(--pf-t--global--icon--color--disabled);
|
|
15
|
-
--pf-v6-c-menu--TransitionDuration:
|
|
15
|
+
--pf-v6-c-menu--TransitionDuration: 0s;
|
|
16
16
|
--pf-v6-c-menu--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
17
17
|
--pf-v6-c-menu--m-plain--BoxShadow: none;
|
|
18
18
|
--pf-v6-c-menu__content--RowGap: var(--pf-v6-c-menu--RowGap);
|
|
@@ -85,14 +85,34 @@
|
|
|
85
85
|
--pf-v6-c-menu--m-flyout__menu--m-left--InsetInlineEnd: calc(100% + var(--pf-v6-c-menu--m-flyout__menu--m-left--right-offset));
|
|
86
86
|
--pf-v6-c-menu--m-drilldown__content--TransitionDuration--height: var(--pf-t--global--motion--duration--slide-in--default);
|
|
87
87
|
--pf-v6-c-menu--m-drilldown__content--TransitionDuration--transform: var(--pf-t--global--motion--duration--slide-in--default);
|
|
88
|
-
--pf-v6-c-menu--m-drilldown__content--Transition:
|
|
88
|
+
--pf-v6-c-menu--m-drilldown__content--Transition: height var(--pf-v6-c-menu--m-drilldown__content--TransitionDuration--height);
|
|
89
89
|
--pf-v6-c-menu--m-drilldown--c-menu--InsetBlockStart: 0;
|
|
90
|
-
--pf-v6-c-menu--m-drilldown--c-menu--TransitionDuration--transform:
|
|
90
|
+
--pf-v6-c-menu--m-drilldown--c-menu--TransitionDuration--transform: 0s;
|
|
91
91
|
--pf-v6-c-menu--m-drilldown--c-menu--Transition: transform var(--pf-v6-c-menu--m-drilldown--c-menu--TransitionDuration--transform);
|
|
92
|
-
--pf-v6-c-menu--m-drilldown__list--TransitionDuration--transform:
|
|
92
|
+
--pf-v6-c-menu--m-drilldown__list--TransitionDuration--transform: 0s;
|
|
93
93
|
--pf-v6-c-menu--m-drilldown__list--Transition: transform var(--pf-v6-c-menu--m-drilldown__list--TransitionDuration--transform);
|
|
94
94
|
--pf-v6-c-menu--m-drilled-in--c-menu__list-item--m-current-path--c-menu--ZIndex: var(--pf-t--global--z-index--xs);
|
|
95
95
|
}
|
|
96
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
97
|
+
.pf-v6-c-menu {
|
|
98
|
+
--pf-v6-c-menu--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
102
|
+
.pf-v6-c-menu {
|
|
103
|
+
--pf-v6-c-menu--m-drilldown__content--Transition: transform var(--pf-v6-c-menu--m-drilldown__content--TransitionDuration--transform), height var(--pf-v6-c-menu--m-drilldown__content--TransitionDuration--height);
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
107
|
+
.pf-v6-c-menu {
|
|
108
|
+
--pf-v6-c-menu--m-drilldown--c-menu--TransitionDuration--transform: var(--pf-t--global--motion--duration--slide-in--default);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
112
|
+
.pf-v6-c-menu {
|
|
113
|
+
--pf-v6-c-menu--m-drilldown__list--TransitionDuration--transform: var(--pf-t--global--motion--duration--slide-in--default);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
96
116
|
|
|
97
117
|
.pf-v6-c-menu__content,
|
|
98
118
|
.pf-v6-c-menu__list-item,
|
|
@@ -15,8 +15,12 @@
|
|
|
15
15
|
--#{$menu}--ZIndex: var(--pf-t--global--z-index--sm);
|
|
16
16
|
--#{$menu}--button--disabled--Color: var(--pf-t--global--text--color--disabled);
|
|
17
17
|
--#{$menu}--icon--disabled--Color: var(--pf-t--global--icon--color--disabled);
|
|
18
|
-
--#{$menu}--TransitionDuration:
|
|
18
|
+
--#{$menu}--TransitionDuration: 0s;
|
|
19
19
|
--#{$menu}--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
20
|
+
|
|
21
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
22
|
+
--#{$menu}--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
23
|
+
}
|
|
20
24
|
|
|
21
25
|
// * Menu plain
|
|
22
26
|
--#{$menu}--m-plain--BoxShadow: none;
|
|
@@ -126,19 +130,30 @@
|
|
|
126
130
|
--#{$menu}--m-flyout__menu--m-left--InsetInlineEnd: calc(100% + var(--#{$menu}--m-flyout__menu--m-left--right-offset));
|
|
127
131
|
|
|
128
132
|
// * Menu drilldown content
|
|
129
|
-
// TODO Reduced motion default needed for drilldown
|
|
130
133
|
--#{$menu}--m-drilldown__content--TransitionDuration--height: var(--pf-t--global--motion--duration--slide-in--default);
|
|
131
134
|
--#{$menu}--m-drilldown__content--TransitionDuration--transform: var(--pf-t--global--motion--duration--slide-in--default);
|
|
132
|
-
--#{$menu}--m-drilldown__content--Transition:
|
|
135
|
+
--#{$menu}--m-drilldown__content--Transition: height var(--#{$menu}--m-drilldown__content--TransitionDuration--height);
|
|
136
|
+
|
|
137
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
138
|
+
--#{$menu}--m-drilldown__content--Transition: transform var(--#{$menu}--m-drilldown__content--TransitionDuration--transform), height var(--#{$menu}--m-drilldown__content--TransitionDuration--height);
|
|
139
|
+
}
|
|
133
140
|
|
|
134
141
|
// * Menu drilldown menu
|
|
135
142
|
--#{$menu}--m-drilldown--c-menu--InsetBlockStart: 0;
|
|
136
|
-
--#{$menu}--m-drilldown--c-menu--TransitionDuration--transform:
|
|
143
|
+
--#{$menu}--m-drilldown--c-menu--TransitionDuration--transform: 0s;
|
|
137
144
|
--#{$menu}--m-drilldown--c-menu--Transition: transform var(--#{$menu}--m-drilldown--c-menu--TransitionDuration--transform);
|
|
138
145
|
|
|
146
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
147
|
+
--#{$menu}--m-drilldown--c-menu--TransitionDuration--transform: var(--pf-t--global--motion--duration--slide-in--default);
|
|
148
|
+
}
|
|
149
|
+
|
|
139
150
|
// * Menu drilldown list
|
|
140
|
-
--#{$menu}--m-drilldown__list--TransitionDuration--transform:
|
|
151
|
+
--#{$menu}--m-drilldown__list--TransitionDuration--transform: 0s;
|
|
141
152
|
--#{$menu}--m-drilldown__list--Transition: transform var(--#{$menu}--m-drilldown__list--TransitionDuration--transform);
|
|
153
|
+
|
|
154
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
155
|
+
--#{$menu}--m-drilldown__list--TransitionDuration--transform: var(--pf-t--global--motion--duration--slide-in--default);
|
|
156
|
+
}
|
|
142
157
|
|
|
143
158
|
// * Menu drilled in
|
|
144
159
|
--#{$menu}--m-drilled-in--c-menu__list-item--m-current-path--c-menu--ZIndex: var(--pf-t--global--z-index--xs);
|
|
@@ -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-
|
|
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
|
|
|
@@ -357,10 +357,13 @@ $pf-v6-c-tree-view--MaxNesting: 10 !default;
|
|
|
357
357
|
|
|
358
358
|
.#{$tree-view}__list-item {
|
|
359
359
|
.#{$tree-view}__list {
|
|
360
|
+
max-height: 0;
|
|
361
|
+
visibility: hidden;
|
|
360
362
|
opacity: var(--#{$tree-view}__list--Opacity);
|
|
363
|
+
transition-delay: 0s, 0s, var(--#{$tree-view}__list--TransitionDuration--fade), var(--#{$tree-view}__list--TransitionDuration--fade);
|
|
361
364
|
transition-timing-function: var(--#{$tree-view}__list--TransitionTimingFunction);
|
|
362
|
-
transition-duration: var(--#{$tree-view}__list--TransitionDuration--fade), var(--#{$tree-view}__list--TransitionDuration--slide);
|
|
363
|
-
transition-property: opacity, translate;
|
|
365
|
+
transition-duration: var(--#{$tree-view}__list--TransitionDuration--fade), var(--#{$tree-view}__list--TransitionDuration--slide), 0s, 0s;
|
|
366
|
+
transition-property: opacity, translate, visibility, max-height;
|
|
364
367
|
translate: 0 var(--#{$tree-view}__list--TranslateY);
|
|
365
368
|
}
|
|
366
369
|
|
|
@@ -374,8 +377,11 @@ $pf-v6-c-tree-view--MaxNesting: 10 !default;
|
|
|
374
377
|
--#{$tree-view}__node-toggle-icon--Rotate: var(--#{$tree-view}__list-item--m-expanded__node-toggle-icon--Rotate);
|
|
375
378
|
|
|
376
379
|
> .#{$tree-view}__list {
|
|
380
|
+
max-height: 9999px;
|
|
381
|
+
visibility: revert;
|
|
377
382
|
opacity: var(--#{$tree-view}--m-expanded__list--Opacity);
|
|
378
|
-
transition-
|
|
383
|
+
transition-delay: 0s;
|
|
384
|
+
transition-duration: var(--#{$tree-view}__list--TransitionDuration--expand--fade), var(--#{$tree-view}__list--TransitionDuration--expand--slide), 0s, 0s;
|
|
379
385
|
translate: 0 var(--#{$tree-view}--m-expanded__list--TranslateY);
|
|
380
386
|
}
|
|
381
387
|
}
|
package/components/_index.css
CHANGED
|
@@ -376,33 +376,32 @@
|
|
|
376
376
|
}
|
|
377
377
|
|
|
378
378
|
.pf-v6-c-accordion__expandable-content {
|
|
379
|
-
|
|
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),
|
|
390
|
-
transition-property: opacity, translate,
|
|
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
|
-
|
|
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
|
-
|
|
402
|
-
|
|
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 {
|
|
@@ -1549,8 +1548,8 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
1549
1548
|
--pf-v6-c-button--TextDecorationStyle: none;
|
|
1550
1549
|
--pf-v6-c-button--TextDecorationColor: currentcolor;
|
|
1551
1550
|
--pf-v6-c-button--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
1552
|
-
--pf-v6-c-button--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--
|
|
1553
|
-
--pf-v6-c-button--TransitionProperty: color, background
|
|
1551
|
+
--pf-v6-c-button--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--accelerate);
|
|
1552
|
+
--pf-v6-c-button--TransitionProperty: color, background, border-width, border-color;
|
|
1554
1553
|
--pf-v6-c-button--hover--BackgroundColor: transparent;
|
|
1555
1554
|
--pf-v6-c-button--hover--BorderColor: transparent;
|
|
1556
1555
|
--pf-v6-c-button--hover--BorderWidth: var(--pf-t--global--border--width--action--hover);
|
|
@@ -1817,8 +1816,9 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
1817
1816
|
text-decoration-color: var(--pf-v6-c-button--TextDecorationColor);
|
|
1818
1817
|
white-space: nowrap;
|
|
1819
1818
|
cursor: pointer;
|
|
1819
|
+
-webkit-user-select: none;
|
|
1820
1820
|
user-select: none;
|
|
1821
|
-
background
|
|
1821
|
+
background: var(--pf-v6-c-button--BackgroundColor) radial-gradient(circle, transparent 1%, color-mix(in srgb, currentcolor 15%, transparent) 1%) center/15000%;
|
|
1822
1822
|
border: 0;
|
|
1823
1823
|
border-start-start-radius: var(--pf-v6-c-button--BorderStartStartRadius, var(--pf-v6-c-button--BorderRadius));
|
|
1824
1824
|
border-start-end-radius: var(--pf-v6-c-button--BorderStartEndRadius, var(--pf-v6-c-button--BorderRadius));
|
|
@@ -1935,6 +1935,7 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
1935
1935
|
--pf-v6-c-button--m-link--hover__icon--Color: var(--pf-v6-c-button--m-link--m-inline--hover__icon--Color);
|
|
1936
1936
|
text-align: start;
|
|
1937
1937
|
white-space: normal;
|
|
1938
|
+
background: transparent;
|
|
1938
1939
|
outline-offset: 0.125rem;
|
|
1939
1940
|
}
|
|
1940
1941
|
span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
@@ -2068,6 +2069,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
2068
2069
|
--pf-v6-c-button--m-small--PaddingInlineEnd: var(--pf-v6-c-button--m-plain--m-no-padding--m-small--PaddingInlineEnd);
|
|
2069
2070
|
--pf-v6-c-button--m-small--PaddingInlineStart: var(--pf-v6-c-button--m-plain--m-no-padding--m-small--PaddingInlineStart);
|
|
2070
2071
|
min-width: var(--pf-v6-c-button--m-plain--m-no-padding--MinWidth);
|
|
2072
|
+
background: var(--pf-v6-c-button--BackgroundColor);
|
|
2071
2073
|
}
|
|
2072
2074
|
.pf-v6-c-button.pf-m-block {
|
|
2073
2075
|
--pf-v6-c-button--Display: var(--pf-v6-c-button--m-block--Display);
|
|
@@ -2114,20 +2116,24 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
2114
2116
|
text-decoration-style: var(--pf-v6-c-button--hover--TextDecorationStyle);
|
|
2115
2117
|
text-decoration-color: var(--pf-v6-c-button--hover--TextDecorationColor);
|
|
2116
2118
|
}
|
|
2117
|
-
.pf-v6-c-button.pf-m-clicked {
|
|
2119
|
+
.pf-v6-c-button:active, .pf-v6-c-button.pf-m-clicked {
|
|
2118
2120
|
--pf-v6-c-button--Color: var(--pf-v6-c-button--m-clicked--Color);
|
|
2119
2121
|
--pf-v6-c-button--BackgroundColor: var(--pf-v6-c-button--m-clicked--BackgroundColor);
|
|
2120
2122
|
--pf-v6-c-button--BorderWidth: var(--pf-v6-c-button--m-clicked--BorderWidth);
|
|
2121
2123
|
--pf-v6-c-button--BorderColor: var(--pf-v6-c-button--m-clicked--BorderColor);
|
|
2122
2124
|
--pf-v6-c-button__icon--Color: var(--pf-v6-c-button--m-clicked__icon--Color);
|
|
2123
2125
|
}
|
|
2126
|
+
.pf-v6-c-button:active {
|
|
2127
|
+
background-size: 100%;
|
|
2128
|
+
transition-duration: 0s;
|
|
2129
|
+
}
|
|
2124
2130
|
.pf-v6-c-button:disabled, .pf-v6-c-button.pf-m-disabled {
|
|
2125
2131
|
pointer-events: none;
|
|
2126
2132
|
}
|
|
2127
2133
|
.pf-v6-c-button:disabled, .pf-v6-c-button.pf-m-disabled, .pf-v6-c-button.pf-m-aria-disabled {
|
|
2128
2134
|
color: var(--pf-v6-c-button--disabled--Color);
|
|
2129
2135
|
text-decoration-color: var(--pf-v6-c-button--disabled--TextDecorationColor);
|
|
2130
|
-
background
|
|
2136
|
+
background: var(--pf-v6-c-button--disabled--BackgroundColor);
|
|
2131
2137
|
}
|
|
2132
2138
|
.pf-v6-c-button:disabled::after, .pf-v6-c-button.pf-m-disabled::after, .pf-v6-c-button.pf-m-aria-disabled::after {
|
|
2133
2139
|
border-color: transparent;
|
|
@@ -9864,7 +9870,7 @@ ul.pf-v6-c-list {
|
|
|
9864
9870
|
--pf-v6-c-menu--ZIndex: var(--pf-t--global--z-index--sm);
|
|
9865
9871
|
--pf-v6-c-menu--button--disabled--Color: var(--pf-t--global--text--color--disabled);
|
|
9866
9872
|
--pf-v6-c-menu--icon--disabled--Color: var(--pf-t--global--icon--color--disabled);
|
|
9867
|
-
--pf-v6-c-menu--TransitionDuration:
|
|
9873
|
+
--pf-v6-c-menu--TransitionDuration: 0s;
|
|
9868
9874
|
--pf-v6-c-menu--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
9869
9875
|
--pf-v6-c-menu--m-plain--BoxShadow: none;
|
|
9870
9876
|
--pf-v6-c-menu__content--RowGap: var(--pf-v6-c-menu--RowGap);
|
|
@@ -9937,14 +9943,34 @@ ul.pf-v6-c-list {
|
|
|
9937
9943
|
--pf-v6-c-menu--m-flyout__menu--m-left--InsetInlineEnd: calc(100% + var(--pf-v6-c-menu--m-flyout__menu--m-left--right-offset));
|
|
9938
9944
|
--pf-v6-c-menu--m-drilldown__content--TransitionDuration--height: var(--pf-t--global--motion--duration--slide-in--default);
|
|
9939
9945
|
--pf-v6-c-menu--m-drilldown__content--TransitionDuration--transform: var(--pf-t--global--motion--duration--slide-in--default);
|
|
9940
|
-
--pf-v6-c-menu--m-drilldown__content--Transition:
|
|
9946
|
+
--pf-v6-c-menu--m-drilldown__content--Transition: height var(--pf-v6-c-menu--m-drilldown__content--TransitionDuration--height);
|
|
9941
9947
|
--pf-v6-c-menu--m-drilldown--c-menu--InsetBlockStart: 0;
|
|
9942
|
-
--pf-v6-c-menu--m-drilldown--c-menu--TransitionDuration--transform:
|
|
9948
|
+
--pf-v6-c-menu--m-drilldown--c-menu--TransitionDuration--transform: 0s;
|
|
9943
9949
|
--pf-v6-c-menu--m-drilldown--c-menu--Transition: transform var(--pf-v6-c-menu--m-drilldown--c-menu--TransitionDuration--transform);
|
|
9944
|
-
--pf-v6-c-menu--m-drilldown__list--TransitionDuration--transform:
|
|
9950
|
+
--pf-v6-c-menu--m-drilldown__list--TransitionDuration--transform: 0s;
|
|
9945
9951
|
--pf-v6-c-menu--m-drilldown__list--Transition: transform var(--pf-v6-c-menu--m-drilldown__list--TransitionDuration--transform);
|
|
9946
9952
|
--pf-v6-c-menu--m-drilled-in--c-menu__list-item--m-current-path--c-menu--ZIndex: var(--pf-t--global--z-index--xs);
|
|
9947
9953
|
}
|
|
9954
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
9955
|
+
.pf-v6-c-menu {
|
|
9956
|
+
--pf-v6-c-menu--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
9957
|
+
}
|
|
9958
|
+
}
|
|
9959
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
9960
|
+
.pf-v6-c-menu {
|
|
9961
|
+
--pf-v6-c-menu--m-drilldown__content--Transition: transform var(--pf-v6-c-menu--m-drilldown__content--TransitionDuration--transform), height var(--pf-v6-c-menu--m-drilldown__content--TransitionDuration--height);
|
|
9962
|
+
}
|
|
9963
|
+
}
|
|
9964
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
9965
|
+
.pf-v6-c-menu {
|
|
9966
|
+
--pf-v6-c-menu--m-drilldown--c-menu--TransitionDuration--transform: var(--pf-t--global--motion--duration--slide-in--default);
|
|
9967
|
+
}
|
|
9968
|
+
}
|
|
9969
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
9970
|
+
.pf-v6-c-menu {
|
|
9971
|
+
--pf-v6-c-menu--m-drilldown__list--TransitionDuration--transform: var(--pf-t--global--motion--duration--slide-in--default);
|
|
9972
|
+
}
|
|
9973
|
+
}
|
|
9948
9974
|
|
|
9949
9975
|
.pf-v6-c-menu__content,
|
|
9950
9976
|
.pf-v6-c-menu__list-item,
|
|
@@ -22475,10 +22501,13 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22475
22501
|
}
|
|
22476
22502
|
|
|
22477
22503
|
.pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list {
|
|
22504
|
+
max-height: 0;
|
|
22505
|
+
visibility: hidden;
|
|
22478
22506
|
opacity: var(--pf-v6-c-tree-view__list--Opacity);
|
|
22507
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--fade);
|
|
22479
22508
|
transition-timing-function: var(--pf-v6-c-tree-view__list--TransitionTimingFunction);
|
|
22480
|
-
transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--slide);
|
|
22481
|
-
transition-property: opacity, translate;
|
|
22509
|
+
transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--slide), 0s, 0s;
|
|
22510
|
+
transition-property: opacity, translate, visibility, max-height;
|
|
22482
22511
|
translate: 0 var(--pf-v6-c-tree-view__list--TranslateY);
|
|
22483
22512
|
}
|
|
22484
22513
|
.pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list-item {
|
|
@@ -22490,8 +22519,11 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22490
22519
|
--pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate);
|
|
22491
22520
|
}
|
|
22492
22521
|
.pf-v6-c-tree-view__list-item.pf-m-expanded > .pf-v6-c-tree-view__list {
|
|
22522
|
+
max-height: 9999px;
|
|
22523
|
+
visibility: revert;
|
|
22493
22524
|
opacity: var(--pf-v6-c-tree-view--m-expanded__list--Opacity);
|
|
22494
|
-
transition-
|
|
22525
|
+
transition-delay: 0s;
|
|
22526
|
+
transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--expand--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--expand--slide), 0s, 0s;
|
|
22495
22527
|
translate: 0 var(--pf-v6-c-tree-view--m-expanded__list--TranslateY);
|
|
22496
22528
|
}
|
|
22497
22529
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/patternfly",
|
|
3
3
|
"description": "Assets, source, tooling, and content for PatternFly 4",
|
|
4
|
-
"version": "6.3.0-prerelease.
|
|
4
|
+
"version": "6.3.0-prerelease.25",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@commitlint/config-conventional": "^19.1.0",
|
|
48
48
|
"@fortawesome/fontawesome": "^1.1.8",
|
|
49
49
|
"@octokit/rest": "^20.1.0",
|
|
50
|
-
"@patternfly/documentation-framework": "6.10.
|
|
50
|
+
"@patternfly/documentation-framework": "6.10.22",
|
|
51
51
|
"@patternfly/patternfly-a11y": "5.1.0",
|
|
52
52
|
"@patternfly/react-code-editor": "6.2.2",
|
|
53
53
|
"@patternfly/react-core": "6.2.2",
|