Skip to content

Commit fc6533d

Browse files
authored
Merge branch 'main' into iss4621
2 parents 5404efe + b5d1675 commit fc6533d

92 files changed

Lines changed: 389 additions & 5509 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows-src/partials/build-astro.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
with:
1010
path: "packages/documentation-site/.cache"
1111
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
12-
- run: yarn build:doc-core
12+
- run: yarn ci:build:doc-core
1313
name: Build astro docs

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,5 @@ lerna-debug.log
4646
!.yarn/releases
4747
!.yarn/sdks
4848
!.yarn/versions
49+
50+
*.tsbuildinfo

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"build": "yarn workspace patternfly-org build && yarn copy",
1515
"build:extensions": "EXTENSIONS_ONLY=true PRERELEASE=true yarn build",
1616
"build:doc-core": "yarn workspace site build",
17+
"ci:build:doc-core": "yarn workspace site ci:build",
1718
"preview:doc-core": "yarn workspace site wrangler:preview",
1819
"build:ts": "yarn workspace patternfly-org build:ts",
1920
"build:ts:watch": "yarn build:ts --watch",
@@ -28,7 +29,8 @@
2829
"start:doc-core": "yarn workspace site dev",
2930
"uninstall": "find . -name node_modules | xargs rm -rf",
3031
"workflows": "node .github/generate-workflows",
31-
"test:a11y": "yarn workspace patternfly-org test:a11y"
32+
"test:a11y": "yarn workspace patternfly-org test:a11y",
33+
"generate:content": "yarn workspace site generate:content"
3234
},
3335
"workspaces": {
3436
"packages": [

packages/ast-helpers/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# 1.4.0-alpha.352 (2026-04-14)
7+
8+
9+
### Features
10+
11+
* **site:** update doc-core to 1.22.0 ([#4946](https://github.com/patternfly/patternfly-org/issues/4946)) ([fc290d0](https://github.com/patternfly/patternfly-org/commit/fc290d030bc34d1728fc9a3948fed4e5b4be5df3))
12+
13+
14+
15+
16+
617
# 1.4.0-alpha.351 (2026-04-06)
718

819

packages/ast-helpers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@patternfly/ast-helpers",
33
"description": "Acorn AST helpers for working with live code",
4-
"version": "1.4.0-alpha.351",
4+
"version": "1.4.0-alpha.352",
55
"author": "Red Hat",
66
"license": "MIT",
77
"publishConfig": {

packages/documentation-framework/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# 6.38.0 (2026-04-14)
7+
8+
9+
### Features
10+
11+
* **site:** update doc-core to 1.22.0 ([#4946](https://github.com/patternfly/patternfly-org/issues/4946)) ([fc290d0](https://github.com/patternfly/patternfly-org/commit/fc290d030bc34d1728fc9a3948fed4e5b4be5df3))
12+
13+
14+
15+
16+
617
# 6.37.0 (2026-04-06)
718

819

packages/documentation-framework/components/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export * from './propsTable/propsTable';
88
export * from './navAnnouncementBanner/navAnnouncementBanner';
99
export * from './sideNav/sideNav';
1010
export * from './topNav/topNav';
11-
export * from './link/link';
11+
export * from './link/link.jsx';
1212
export * from './tableOfContents/tableOfContents';
1313
export * from './inlineAlert/inlineAlert';
1414
export * from './themeSelector/themeSelector';

packages/documentation-framework/components/link/link.js renamed to packages/documentation-framework/components/link/link.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import { Link as ReachLink, navigate } from '@reach/router';
3-
import { getAsyncComponent } from '../../routes';
3+
const { getAsyncComponent } = require('../../routes');
44

55
const Promiseany = (
66
Promise.any ||

packages/documentation-framework/components/sectionGallery/TextSummary.js renamed to packages/documentation-framework/components/sectionGallery/TextSummary.jsx

File renamed without changes.

packages/documentation-framework/components/sectionGallery/sectionDataListLayout.js renamed to packages/documentation-framework/components/sectionGallery/sectionDataListLayout.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import {
1111
ContentVariants,
1212
Label,
1313
} from "@patternfly/react-core";
14-
import { Link } from "../link/link";
15-
import { TextSummary } from "./TextSummary";
14+
import { Link } from "../link/link.jsx";
15+
import { TextSummary } from "./TextSummary.jsx";
1616

1717
export const SectionDataListLayout = ({
1818
galleryItems,

0 commit comments

Comments
 (0)