@patternfly/documentation-framework 6.0.0-alpha.41 → 6.0.0-alpha.42
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/CHANGELOG.md +11 -0
- package/package.json +3 -3
- package/pages/404/index.js +1 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 6.0.0-alpha.42 (2024-06-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **EmptyState:** removed extraneous ESIcon component import ([#4056](https://github.com/patternfly/patternfly-org/issues/4056)) ([60f4499](https://github.com/patternfly/patternfly-org/commit/60f4499adf803975175bdcac78b142b72d6f4e96))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# 6.0.0-alpha.41 (2024-06-03)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @patternfly/documentation-framework
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/documentation-framework",
|
|
3
3
|
"description": "A framework to build documentation for PatternFly.",
|
|
4
|
-
"version": "6.0.0-alpha.
|
|
4
|
+
"version": "6.0.0-alpha.42",
|
|
5
5
|
"author": "Red Hat",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"private": false,
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"@babel/preset-env": "^7.24.3",
|
|
14
14
|
"@babel/preset-react": "^7.24.1",
|
|
15
15
|
"@mdx-js/util": "1.6.16",
|
|
16
|
-
"@patternfly/ast-helpers": "^1.4.0-alpha.
|
|
16
|
+
"@patternfly/ast-helpers": "^1.4.0-alpha.31",
|
|
17
17
|
"@reach/router": "npm:@gatsbyjs/reach-router@1.3.9",
|
|
18
18
|
"autoprefixer": "9.8.6",
|
|
19
19
|
"babel-loader": "^9.1.3",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"react": "^17.0.0 || ^18.0.0",
|
|
81
81
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "6632740a81cf482245625d04cc1786fd40d61ba3"
|
|
84
84
|
}
|
package/pages/404/index.js
CHANGED
|
@@ -9,7 +9,6 @@ import {
|
|
|
9
9
|
CardHeader,
|
|
10
10
|
EmptyState,
|
|
11
11
|
EmptyStateBody,
|
|
12
|
-
EmptyStateIcon,
|
|
13
12
|
Grid,
|
|
14
13
|
GridItem,
|
|
15
14
|
PageSection,
|
|
@@ -68,11 +67,7 @@ const Page404 = () => {
|
|
|
68
67
|
|
|
69
68
|
return (
|
|
70
69
|
<PageSection>
|
|
71
|
-
<EmptyState variant="xl">
|
|
72
|
-
<EmptyStateIcon icon={() => <img src={PathMissingIcon} alt="Missing path" width="128px" />} />
|
|
73
|
-
<Title headingLevel="h1" size="2xl">
|
|
74
|
-
404: That page no longer exists
|
|
75
|
-
</Title>
|
|
70
|
+
<EmptyState headingLevel="h1" titleText="404: That page no longer exists" variant="xl" icon={() => <img src={PathMissingIcon} alt="" width="128px" />}>
|
|
76
71
|
<p
|
|
77
72
|
// style={{ marginTop: 'var(--pf-v6-global--spacer--sm)' }}
|
|
78
73
|
>
|