@patternfly/patternfly 4.214.0 → 4.214.1
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/ProgressStepper/progress-stepper.css +7 -4
- package/components/ProgressStepper/progress-stepper.scss +7 -4
- package/docs/components/FileUpload/examples/FileUpload.md +1 -1
- package/docs/components/Form/examples/Form.md +52 -50
- package/docs/components/Login/examples/Login.md +5 -5
- package/docs/components/SearchInput/examples/SearchInput.md +2 -2
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +2 -2
- package/docs/components/Wizard/examples/Wizard.md +5 -5
- package/docs/demos/Alert/examples/Alert.md +2 -2
- package/docs/demos/Button/examples/Button.md +3 -3
- package/docs/demos/Form/examples/BasicForms.md +5 -5
- package/docs/demos/HelperText/examples/HelperText.md +1 -1
- package/docs/demos/Modal/examples/Modal.md +1 -1
- package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +1 -1
- package/docs/demos/PasswordStrength/examples/PasswordStrength.md +4 -4
- package/docs/demos/Wizard/examples/Wizard.md +1960 -748
- package/package.json +1 -1
- package/patternfly-no-reset.css +7 -4
- package/patternfly.css +7 -4
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/package.json
CHANGED
package/patternfly-no-reset.css
CHANGED
|
@@ -23493,8 +23493,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
23493
23493
|
--pf-c-progress-stepper--m-center__step-connector--JustifyContent: center;
|
|
23494
23494
|
--pf-c-progress-stepper--m-center__step-main--MarginRight: var(--pf-global--spacer--xs);
|
|
23495
23495
|
--pf-c-progress-stepper--m-center__step-main--MarginLeft: var(--pf-global--spacer--xs);
|
|
23496
|
-
--pf-c-progress-stepper--m-center__step-
|
|
23497
|
-
--pf-c-progress-stepper--m-center__step-description--TextAlign: center;
|
|
23496
|
+
--pf-c-progress-stepper--m-center__step-main--TextAlign: center;
|
|
23498
23497
|
--pf-c-progress-stepper--m-center__step-description--MarginRight: 0;
|
|
23499
23498
|
--pf-c-progress-stepper--m-center__step-description--MarginLeft: 0;
|
|
23500
23499
|
--pf-c-progress-stepper--GridTemplateRows: auto 1fr;
|
|
@@ -23588,10 +23587,11 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
23588
23587
|
--pf-c-progress-stepper__step-connector--JustifyContent: var(--pf-c-progress-stepper--m-center__step-connector--JustifyContent);
|
|
23589
23588
|
--pf-c-progress-stepper__step-main--MarginRight: var(--pf-c-progress-stepper--m-center__step-main--MarginRight);
|
|
23590
23589
|
--pf-c-progress-stepper__step-main--MarginLeft: var(--pf-c-progress-stepper--m-center__step-main--MarginLeft);
|
|
23591
|
-
--pf-c-progress-
|
|
23590
|
+
--pf-c-progress-stepper--step-main--TextAlign: var(--pf-c-progress-stepper--m-center__step-main--TextAlign, auto);
|
|
23591
|
+
--pf-c-progress-stepper__step-title--TextAlign: var(--pf-c-progress-stepper--m-center__step-title--TextAlign, auto);
|
|
23592
23592
|
--pf-c-progress-stepper__step-description--MarginRight: var(--pf-c-progress-stepper--m-center__step-description--MarginRight);
|
|
23593
23593
|
--pf-c-progress-stepper__step-description--MarginLeft: var(--pf-c-progress-stepper--m-center__step-description--MarginLeft);
|
|
23594
|
-
--pf-c-progress-stepper__step-description--TextAlign: var(--pf-c-progress-stepper--m-center__step-description--TextAlign);
|
|
23594
|
+
--pf-c-progress-stepper__step-description--TextAlign: var(--pf-c-progress-stepper--m-center__step-description--TextAlign, auto);
|
|
23595
23595
|
--pf-c-progress-stepper--m-vertical__step-main--MarginRight: var(--pf-c-progress-stepper--m-vertical--m-center__step-main--MarginRight);
|
|
23596
23596
|
--pf-c-progress-stepper--m-vertical__step-main--MarginLeft: var(--pf-c-progress-stepper--m-vertical--m-center__step-main--MarginLeft);
|
|
23597
23597
|
grid-template-columns: var(--pf-c-progress-stepper--m-center--GridTemplateColumns);
|
|
@@ -23719,7 +23719,10 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
23719
23719
|
}
|
|
23720
23720
|
|
|
23721
23721
|
.pf-c-progress-stepper__step-main {
|
|
23722
|
+
min-width: 0;
|
|
23722
23723
|
margin: var(--pf-c-progress-stepper__step-main--MarginTop) var(--pf-c-progress-stepper__step-main--MarginRight) var(--pf-c-progress-stepper__step-main--MarginBottom) var(--pf-c-progress-stepper__step-main--MarginLeft);
|
|
23724
|
+
text-align: var(--pf-c-progress-stepper--step-main--TextAlign, auto);
|
|
23725
|
+
overflow-wrap: anywhere;
|
|
23723
23726
|
}
|
|
23724
23727
|
.pf-c-progress-stepper__step:not(:last-of-type) > .pf-c-progress-stepper__step-main::before {
|
|
23725
23728
|
position: absolute;
|
package/patternfly.css
CHANGED
|
@@ -23620,8 +23620,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
23620
23620
|
--pf-c-progress-stepper--m-center__step-connector--JustifyContent: center;
|
|
23621
23621
|
--pf-c-progress-stepper--m-center__step-main--MarginRight: var(--pf-global--spacer--xs);
|
|
23622
23622
|
--pf-c-progress-stepper--m-center__step-main--MarginLeft: var(--pf-global--spacer--xs);
|
|
23623
|
-
--pf-c-progress-stepper--m-center__step-
|
|
23624
|
-
--pf-c-progress-stepper--m-center__step-description--TextAlign: center;
|
|
23623
|
+
--pf-c-progress-stepper--m-center__step-main--TextAlign: center;
|
|
23625
23624
|
--pf-c-progress-stepper--m-center__step-description--MarginRight: 0;
|
|
23626
23625
|
--pf-c-progress-stepper--m-center__step-description--MarginLeft: 0;
|
|
23627
23626
|
--pf-c-progress-stepper--GridTemplateRows: auto 1fr;
|
|
@@ -23715,10 +23714,11 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
23715
23714
|
--pf-c-progress-stepper__step-connector--JustifyContent: var(--pf-c-progress-stepper--m-center__step-connector--JustifyContent);
|
|
23716
23715
|
--pf-c-progress-stepper__step-main--MarginRight: var(--pf-c-progress-stepper--m-center__step-main--MarginRight);
|
|
23717
23716
|
--pf-c-progress-stepper__step-main--MarginLeft: var(--pf-c-progress-stepper--m-center__step-main--MarginLeft);
|
|
23718
|
-
--pf-c-progress-
|
|
23717
|
+
--pf-c-progress-stepper--step-main--TextAlign: var(--pf-c-progress-stepper--m-center__step-main--TextAlign, auto);
|
|
23718
|
+
--pf-c-progress-stepper__step-title--TextAlign: var(--pf-c-progress-stepper--m-center__step-title--TextAlign, auto);
|
|
23719
23719
|
--pf-c-progress-stepper__step-description--MarginRight: var(--pf-c-progress-stepper--m-center__step-description--MarginRight);
|
|
23720
23720
|
--pf-c-progress-stepper__step-description--MarginLeft: var(--pf-c-progress-stepper--m-center__step-description--MarginLeft);
|
|
23721
|
-
--pf-c-progress-stepper__step-description--TextAlign: var(--pf-c-progress-stepper--m-center__step-description--TextAlign);
|
|
23721
|
+
--pf-c-progress-stepper__step-description--TextAlign: var(--pf-c-progress-stepper--m-center__step-description--TextAlign, auto);
|
|
23722
23722
|
--pf-c-progress-stepper--m-vertical__step-main--MarginRight: var(--pf-c-progress-stepper--m-vertical--m-center__step-main--MarginRight);
|
|
23723
23723
|
--pf-c-progress-stepper--m-vertical__step-main--MarginLeft: var(--pf-c-progress-stepper--m-vertical--m-center__step-main--MarginLeft);
|
|
23724
23724
|
grid-template-columns: var(--pf-c-progress-stepper--m-center--GridTemplateColumns);
|
|
@@ -23846,7 +23846,10 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
23846
23846
|
}
|
|
23847
23847
|
|
|
23848
23848
|
.pf-c-progress-stepper__step-main {
|
|
23849
|
+
min-width: 0;
|
|
23849
23850
|
margin: var(--pf-c-progress-stepper__step-main--MarginTop) var(--pf-c-progress-stepper__step-main--MarginRight) var(--pf-c-progress-stepper__step-main--MarginBottom) var(--pf-c-progress-stepper__step-main--MarginLeft);
|
|
23851
|
+
text-align: var(--pf-c-progress-stepper--step-main--TextAlign, auto);
|
|
23852
|
+
overflow-wrap: anywhere;
|
|
23850
23853
|
}
|
|
23851
23854
|
.pf-c-progress-stepper__step:not(:last-of-type) > .pf-c-progress-stepper__step-main::before {
|
|
23852
23855
|
position: absolute;
|