@patternfly/documentation-framework 6.0.0-alpha.97 → 6.0.0-alpha.99
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 +16 -0
- package/package.json +3 -3
- package/templates/mdx.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.99 (2024-09-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# 6.0.0-alpha.98 (2024-09-19)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# 6.0.0-alpha.97 (2024-09-19)
|
|
7
23
|
|
|
8
24
|
**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.99",
|
|
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.88",
|
|
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": "76c0524a34271430a74e9d965c733ecfab16e9ac"
|
|
84
84
|
}
|
package/templates/mdx.js
CHANGED
|
@@ -69,13 +69,13 @@ const MDXChildTemplate = ({
|
|
|
69
69
|
)}
|
|
70
70
|
{(deprecated || source === 'react-deprecated' || source === 'html-deprecated') && (
|
|
71
71
|
<InlineAlert title="Deprecated feature" variant="warning">
|
|
72
|
-
This implementation has been deprecated in favor of a newer
|
|
72
|
+
This component implementation has been deprecated in favor of a newer solution, and is no longer being maintained or enhanced.
|
|
73
73
|
{newImplementationLink && (
|
|
74
74
|
<React.Fragment>
|
|
75
75
|
You can find the <Link to={newImplementationLink}>updated implementation here</Link>.
|
|
76
76
|
</React.Fragment>
|
|
77
77
|
)}
|
|
78
|
-
{' '}To learn more about
|
|
78
|
+
{' '}To learn more about deprecated components, visit <Link to="/get-started/about-patternfly#deprecated-components">about PatternFly.</Link>
|
|
79
79
|
</InlineAlert>
|
|
80
80
|
)}
|
|
81
81
|
{(template || source === 'react-template') && (
|