@patternfly/documentation-framework 6.31.2 → 6.31.4
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 +19 -0
- package/package.json +3 -3
- package/scripts/webpack/webpack.client.config.js +15 -1
- package/versions.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.31.4 (2025-11-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## 6.31.3 (2025-11-12)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **docs:** Compass doc wording fix ([#4859](https://github.com/patternfly/patternfly-org/issues/4859)) ([d438ed5](https://github.com/patternfly/patternfly-org/commit/d438ed5319b8f6c3ed4a3f28a817c912d5f10d34))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## 6.31.2 (2025-11-11)
|
|
7
26
|
|
|
8
27
|
**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.31.
|
|
4
|
+
"version": "6.31.4",
|
|
5
5
|
"author": "Red Hat",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@babel/preset-env": "7.27.1",
|
|
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.313",
|
|
16
16
|
"@reach/router": "npm:@gatsbyjs/reach-router@1.3.9",
|
|
17
17
|
"autoprefixer": "10.4.19",
|
|
18
18
|
"babel-loader": "^9.1.3",
|
|
@@ -89,5 +89,5 @@
|
|
|
89
89
|
"http-cache-semantics": ">=4.1.1",
|
|
90
90
|
"nanoid": "3.3.8"
|
|
91
91
|
},
|
|
92
|
-
"gitHead": "
|
|
92
|
+
"gitHead": "983f8222f8cf435be9c60c8e9886b0fb0c41cd65"
|
|
93
93
|
}
|
|
@@ -81,7 +81,20 @@ const clientConfig = async (env, argv) => {
|
|
|
81
81
|
rules: [
|
|
82
82
|
{
|
|
83
83
|
test: /\.css$/,
|
|
84
|
-
exclude:
|
|
84
|
+
exclude: (modulePath) => {
|
|
85
|
+
// Exclude react-*/dist CSS files, but allow catalog-view-extension
|
|
86
|
+
const pathStr = modulePath.toString();
|
|
87
|
+
if (reactCSSRegex.test(pathStr)) {
|
|
88
|
+
// Allow catalog-view-extension through (don't exclude it)
|
|
89
|
+
if (pathStr.includes('react-catalog-view-extension/dist/css/')) {
|
|
90
|
+
return false;
|
|
91
|
+
}
|
|
92
|
+
// Exclude other react-*/dist CSS files
|
|
93
|
+
return true;
|
|
94
|
+
}
|
|
95
|
+
// Don't exclude files that don't match reactCSSRegex
|
|
96
|
+
return false;
|
|
97
|
+
},
|
|
85
98
|
use: [
|
|
86
99
|
{
|
|
87
100
|
loader: rspack.CssExtractRspackPlugin.loader
|
|
@@ -103,6 +116,7 @@ const clientConfig = async (env, argv) => {
|
|
|
103
116
|
},
|
|
104
117
|
{
|
|
105
118
|
test: reactCSSRegex,
|
|
119
|
+
exclude: /react-catalog-view-extension\/dist\/css\/.*\.css$/,
|
|
106
120
|
use: 'null-loader'
|
|
107
121
|
},
|
|
108
122
|
]
|
package/versions.json
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"hidden": true,
|
|
34
34
|
"versions": {
|
|
35
35
|
"@patternfly/patternfly": "6.4.0",
|
|
36
|
-
"@patternfly/react-catalog-view-extension": "6.
|
|
36
|
+
"@patternfly/react-catalog-view-extension": "6.3.0",
|
|
37
37
|
"@patternfly/react-charts": "8.4.0",
|
|
38
38
|
"@patternfly/react-code-editor": "6.4.0",
|
|
39
39
|
"@patternfly/react-component-groups": "6.4.0",
|