@patternfly/patternfly 4.190.0 → 4.191.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/components/Page/page.css +4 -0
- package/components/Page/page.scss +5 -0
- package/components/Wizard/wizard.css +1 -1
- package/components/Wizard/wizard.scss +1 -1
- package/docs/components/Page/examples/Page.md +1 -0
- package/docs/components/Wizard/examples/Wizard.md +273 -0
- package/docs/demos/Wizard/examples/Wizard.md +2626 -240
- package/package.json +1 -1
- package/patternfly-no-reset.css +5 -1
- package/patternfly.css +5 -1
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/package.json
CHANGED
package/patternfly-no-reset.css
CHANGED
|
@@ -19505,6 +19505,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
19505
19505
|
--pf-c-page__main-wizard--BackgroundColor: var(--pf-global--BackgroundColor--light-100);
|
|
19506
19506
|
--pf-c-page__main-wizard--BorderTopColor: var(--pf-global--BorderColor--100);
|
|
19507
19507
|
--pf-c-page__main-wizard--BorderTopWidth: var(--pf-global--BorderWidth--sm);
|
|
19508
|
+
--pf-c-page__main-wizard--m-light-200--BackgroundColor: var(--pf-global--BackgroundColor--200);
|
|
19508
19509
|
display: grid;
|
|
19509
19510
|
height: 100%;
|
|
19510
19511
|
grid-template-columns: 1fr;
|
|
@@ -20034,6 +20035,9 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
20034
20035
|
.pf-c-page__main-wizard:first-child {
|
|
20035
20036
|
--pf-c-page__main-wizard--BorderTopWidth: 0;
|
|
20036
20037
|
}
|
|
20038
|
+
.pf-c-page__main-wizard.pf-m-light-200 {
|
|
20039
|
+
--pf-c-page__main-wizard--BackgroundColor: var(--pf-c-page__main-wizard--m-light-200--BackgroundColor);
|
|
20040
|
+
}
|
|
20037
20041
|
|
|
20038
20042
|
.pf-c-page__main-wizard .pf-c-page__main-body {
|
|
20039
20043
|
min-height: 0;
|
|
@@ -28534,7 +28538,7 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
28534
28538
|
flex: 1 1 var(--pf-c-modal-box--c-wizard--FlexBasis);
|
|
28535
28539
|
min-height: 0;
|
|
28536
28540
|
}
|
|
28537
|
-
.pf-c-wizard >
|
|
28541
|
+
.pf-c-wizard > :not(.pf-c-wizard__outer-wrap):not(.pf-c-drawer) {
|
|
28538
28542
|
flex-shrink: 0;
|
|
28539
28543
|
}
|
|
28540
28544
|
.pf-c-wizard.pf-m-finished {
|
package/patternfly.css
CHANGED
|
@@ -19632,6 +19632,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
19632
19632
|
--pf-c-page__main-wizard--BackgroundColor: var(--pf-global--BackgroundColor--light-100);
|
|
19633
19633
|
--pf-c-page__main-wizard--BorderTopColor: var(--pf-global--BorderColor--100);
|
|
19634
19634
|
--pf-c-page__main-wizard--BorderTopWidth: var(--pf-global--BorderWidth--sm);
|
|
19635
|
+
--pf-c-page__main-wizard--m-light-200--BackgroundColor: var(--pf-global--BackgroundColor--200);
|
|
19635
19636
|
display: grid;
|
|
19636
19637
|
height: 100%;
|
|
19637
19638
|
grid-template-columns: 1fr;
|
|
@@ -20161,6 +20162,9 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
20161
20162
|
.pf-c-page__main-wizard:first-child {
|
|
20162
20163
|
--pf-c-page__main-wizard--BorderTopWidth: 0;
|
|
20163
20164
|
}
|
|
20165
|
+
.pf-c-page__main-wizard.pf-m-light-200 {
|
|
20166
|
+
--pf-c-page__main-wizard--BackgroundColor: var(--pf-c-page__main-wizard--m-light-200--BackgroundColor);
|
|
20167
|
+
}
|
|
20164
20168
|
|
|
20165
20169
|
.pf-c-page__main-wizard .pf-c-page__main-body {
|
|
20166
20170
|
min-height: 0;
|
|
@@ -28661,7 +28665,7 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
28661
28665
|
flex: 1 1 var(--pf-c-modal-box--c-wizard--FlexBasis);
|
|
28662
28666
|
min-height: 0;
|
|
28663
28667
|
}
|
|
28664
|
-
.pf-c-wizard >
|
|
28668
|
+
.pf-c-wizard > :not(.pf-c-wizard__outer-wrap):not(.pf-c-drawer) {
|
|
28665
28669
|
flex-shrink: 0;
|
|
28666
28670
|
}
|
|
28667
28671
|
.pf-c-wizard.pf-m-finished {
|