@patternfly/patternfly 4.207.0 → 4.208.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 +6 -0
- package/docs/components/Page/examples/Page.md +1 -0
- package/docs/demos/Page/examples/Page.md +925 -1
- package/package.json +3 -3
- package/patternfly-no-reset.css +4 -0
- package/patternfly.css +4 -0
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
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": "4.
|
|
4
|
+
"version": "4.208.0",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@fortawesome/fontawesome": "^1.1.8",
|
|
35
35
|
"@octokit/rest": "^16.40.1",
|
|
36
36
|
"@patternfly/patternfly-a11y": "4.3.1",
|
|
37
|
-
"@patternfly/react-charts": "6.
|
|
37
|
+
"@patternfly/react-charts": "6.84.8",
|
|
38
38
|
"@patternfly/react-code-editor": "4.65.1",
|
|
39
39
|
"@patternfly/react-table": "4.93.1",
|
|
40
40
|
"@starptech/prettyhtml": "^0.10.0",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"stylelint-scss": "^4.0.0",
|
|
80
80
|
"stylelint-value-no-unknown-custom-properties": "^3.0.0",
|
|
81
81
|
"surge": "^0.21.3",
|
|
82
|
-
"@patternfly/documentation-framework": "1.1.
|
|
82
|
+
"@patternfly/documentation-framework": "1.1.34",
|
|
83
83
|
"unified": "^9.2.0",
|
|
84
84
|
"webpack": "^4.43.0"
|
|
85
85
|
},
|
package/patternfly-no-reset.css
CHANGED
|
@@ -21647,6 +21647,10 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
21647
21647
|
grid-template-areas: "header header" "nav main";
|
|
21648
21648
|
}
|
|
21649
21649
|
}
|
|
21650
|
+
.pf-c-page.pf-m-full-height {
|
|
21651
|
+
height: 100vh;
|
|
21652
|
+
height: 100dvh;
|
|
21653
|
+
}
|
|
21650
21654
|
|
|
21651
21655
|
.pf-c-page__header,
|
|
21652
21656
|
.pf-c-page > .pf-c-masthead {
|
package/patternfly.css
CHANGED
|
@@ -21774,6 +21774,10 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
21774
21774
|
grid-template-areas: "header header" "nav main";
|
|
21775
21775
|
}
|
|
21776
21776
|
}
|
|
21777
|
+
.pf-c-page.pf-m-full-height {
|
|
21778
|
+
height: 100vh;
|
|
21779
|
+
height: 100dvh;
|
|
21780
|
+
}
|
|
21777
21781
|
|
|
21778
21782
|
.pf-c-page__header,
|
|
21779
21783
|
.pf-c-page > .pf-c-masthead {
|