@patternfly/documentation-framework 6.31.14 → 6.32.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/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.32.0 (2025-12-17)
7
+
8
+
9
+ ### Features
10
+
11
+ * **API:** update patternfly-doc-core to 1.15.4 ([#4891](https://github.com/patternfly/patternfly-org/issues/4891)) ([064b9ba](https://github.com/patternfly/patternfly-org/commit/064b9baa0f52c64a129685b378ad7e5e7902c4a9))
12
+
13
+
14
+
15
+
16
+
17
+ ## 6.31.15 (2025-12-02)
18
+
19
+ **Note:** Version bump only for package @patternfly/documentation-framework
20
+
21
+
22
+
23
+
24
+
6
25
  ## 6.31.14 (2025-12-01)
7
26
 
8
27
  **Note:** Version bump only for package @patternfly/documentation-framework
@@ -1,5 +1,5 @@
1
- import React from 'react';
2
- import { Alert, AlertActionCloseButton } from '@patternfly/react-core';
1
+ import React, { Fragment } from 'react';
2
+ import { Alert, AlertActionCloseButton, AlertActionLink } from '@patternfly/react-core';
3
3
  import './navAnnouncementBanner.css';
4
4
 
5
5
  export const NavAnnouncementBanner = () => {
@@ -18,8 +18,20 @@ export const NavAnnouncementBanner = () => {
18
18
  isInline
19
19
  actionClose={<AlertActionCloseButton onClose={closeBanner} />}
20
20
  className="ws-nav-announcement-banner"
21
- title={<>We've redesigned our website's navigation menu to make it easier to find the information you need. Learn more about the changes on <a href="https://medium.com/patternfly" target="_blank" rel="noopener noreferrer">Medium</a> and share any thoughts in our <a href="https://www.feedback.redhat.com/jfe/form/SV_9MKBjq8H7muINMy" target="_blank" rel="noopener noreferrer">user feedback survey</a>.</>}
22
- />
21
+ title="Website update"
22
+ actionLinks={
23
+ <Fragment>
24
+ <AlertActionLink component="a" href="https://medium.com/patternfly/a-new-path-for-patternfly-org-91d14de4b93c" target="_blank">
25
+ Learn more
26
+ </AlertActionLink>
27
+ <AlertActionLink component="a" href="https://www.feedback.redhat.com/jfe/form/SV_9MKBjq8H7muINMy" target="_blank">
28
+ Share your feedback
29
+ </AlertActionLink>
30
+ </Fragment>
31
+ }
32
+ >
33
+ To make it easier for you to find what you need on PatternFly.org, we've redesigned our website navigation menu.
34
+ </Alert>
23
35
  </div>
24
36
  );
25
37
  }
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.14",
4
+ "version": "6.32.0",
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.323",
15
+ "@patternfly/ast-helpers": "^1.4.0-alpha.325",
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": "4e0d24e81d3e02a39bc4bbd00a695e63ab1ed26d"
92
+ "gitHead": "94543c8422933e1596958942c1fde319560c92b1"
93
93
  }
@@ -97,7 +97,7 @@ const Page404 = () => {
97
97
  body="Start creating your applications with components, our UI building blocks."
98
98
  link={{
99
99
  text: 'View all components',
100
- to: '/components/all-components',
100
+ to: '/components/overview',
101
101
  }}
102
102
  />
103
103
  <Card404
@@ -279,6 +279,11 @@ function sourceMDFile(file, source, buildMode) {
279
279
  if (path.basename(file).startsWith('_')) {
280
280
  return;
281
281
  }
282
+ // Skip accessibility files when sourcing as design-guidelines
283
+ // They should only be sourced with the 'accessibility' source
284
+ if (source === 'design-guidelines' && file.includes('/accessibility/')) {
285
+ return;
286
+ }
282
287
  const { jsx, pageData, outPath } = toReactComponent(file, source, buildMode);
283
288
 
284
289
  if (jsx) {