@patternfly/documentation-framework 6.5.4 → 6.5.5
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 +8 -0
- package/helpers/codesandbox.js +5 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.5.5 (2025-01-21)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## 6.5.4 (2025-01-14)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @patternfly/documentation-framework
|
package/helpers/codesandbox.js
CHANGED
|
@@ -155,7 +155,7 @@ function getReactParams(title, code, scope, lang, relativeImports, relPath, sour
|
|
|
155
155
|
const [ relImportStatement, _relImportItems, _relImportPath ] = relImportMatch;
|
|
156
156
|
code = code.replace(relImportStatement, '');
|
|
157
157
|
}
|
|
158
|
-
|
|
158
|
+
|
|
159
159
|
const dependencies = {
|
|
160
160
|
'@patternfly/react-core': versions.Releases[0].versions['@patternfly/react-core']
|
|
161
161
|
};
|
|
@@ -181,6 +181,10 @@ function getReactParams(title, code, scope, lang, relativeImports, relPath, sour
|
|
|
181
181
|
dependencies[res] = dependencies[res] || 'latest';
|
|
182
182
|
}
|
|
183
183
|
|
|
184
|
+
if (dependencies.hasOwnProperty('@patternfly/react-charts')) {
|
|
185
|
+
dependencies['victory'] = 'latest';
|
|
186
|
+
}
|
|
187
|
+
|
|
184
188
|
return {
|
|
185
189
|
files: {
|
|
186
190
|
'index.html': {
|
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.5.
|
|
4
|
+
"version": "6.5.5",
|
|
5
5
|
"author": "Red Hat",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@babel/preset-env": "^7.24.3",
|
|
13
13
|
"@babel/preset-react": "^7.24.1",
|
|
14
14
|
"@mdx-js/util": "1.6.16",
|
|
15
|
-
"@patternfly/ast-helpers": "^1.4.0-alpha.
|
|
15
|
+
"@patternfly/ast-helpers": "^1.4.0-alpha.146",
|
|
16
16
|
"@reach/router": "npm:@gatsbyjs/reach-router@1.3.9",
|
|
17
17
|
"autoprefixer": "9.8.6",
|
|
18
18
|
"babel-loader": "^9.1.3",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"react": "^17.0.0 || ^18.0.0",
|
|
80
80
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "03e3212194219493d470713ccc24c3383fc54fe4"
|
|
83
83
|
}
|