@patternfly/patternfly 4.216.1 → 4.216.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Form/form.css +1 -0
- package/components/Form/form.scss +1 -0
- package/components/TreeView/tree-view.css +6 -0
- package/components/TreeView/tree-view.scss +5 -0
- package/docs/components/Form/examples/Form.md +90 -148
- package/docs/components/Login/examples/Login.md +20 -50
- package/docs/components/SearchInput/examples/SearchInput.md +16 -32
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +16 -32
- package/docs/components/TreeView/examples/TreeView.md +21 -21
- package/docs/components/Wizard/examples/Wizard.md +105 -210
- package/docs/demos/Alert/examples/Alert.md +16 -40
- package/docs/demos/Button/examples/Button.md +12 -30
- package/docs/demos/Form/examples/BasicForms.md +97 -176
- package/docs/demos/HelperText/examples/HelperText.md +8 -19
- package/docs/demos/Modal/examples/Modal.md +18 -27
- package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +6 -10
- package/docs/demos/PasswordStrength/examples/PasswordStrength.md +24 -40
- package/docs/demos/Wizard/examples/Wizard.md +168 -336
- package/package.json +1 -1
- package/patternfly-no-reset.css +7 -0
- package/patternfly.css +7 -0
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/package.json
CHANGED
package/patternfly-no-reset.css
CHANGED
|
@@ -15044,6 +15044,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
15044
15044
|
font-size: var(--pf-c-form__group-label-help--FontSize);
|
|
15045
15045
|
line-height: 1;
|
|
15046
15046
|
color: var(--pf-c-form__group-label-help--Color);
|
|
15047
|
+
cursor: pointer;
|
|
15047
15048
|
border: 0;
|
|
15048
15049
|
transform: translateY(var(--pf-c-form__group-label-help--TranslateY));
|
|
15049
15050
|
}
|
|
@@ -31778,6 +31779,12 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
31778
31779
|
white-space: nowrap;
|
|
31779
31780
|
}
|
|
31780
31781
|
|
|
31782
|
+
.pf-c-tree-view__node-text {
|
|
31783
|
+
font-weight: inherit;
|
|
31784
|
+
color: inherit;
|
|
31785
|
+
text-align: left;
|
|
31786
|
+
border: 0;
|
|
31787
|
+
}
|
|
31781
31788
|
label.pf-c-tree-view__node-text {
|
|
31782
31789
|
cursor: pointer;
|
|
31783
31790
|
}
|
package/patternfly.css
CHANGED
|
@@ -15171,6 +15171,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
15171
15171
|
font-size: var(--pf-c-form__group-label-help--FontSize);
|
|
15172
15172
|
line-height: 1;
|
|
15173
15173
|
color: var(--pf-c-form__group-label-help--Color);
|
|
15174
|
+
cursor: pointer;
|
|
15174
15175
|
border: 0;
|
|
15175
15176
|
transform: translateY(var(--pf-c-form__group-label-help--TranslateY));
|
|
15176
15177
|
}
|
|
@@ -31905,6 +31906,12 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
31905
31906
|
white-space: nowrap;
|
|
31906
31907
|
}
|
|
31907
31908
|
|
|
31909
|
+
.pf-c-tree-view__node-text {
|
|
31910
|
+
font-weight: inherit;
|
|
31911
|
+
color: inherit;
|
|
31912
|
+
text-align: left;
|
|
31913
|
+
border: 0;
|
|
31914
|
+
}
|
|
31908
31915
|
label.pf-c-tree-view__node-text {
|
|
31909
31916
|
cursor: pointer;
|
|
31910
31917
|
}
|