Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: prepare org for component groups release #3822

Merged
merged 2 commits into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/documentation-framework/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"@patternfly/react-drag-drop": "5.0.0-alpha.0",
"@patternfly/react-tokens": "5.1.1",
"@patternfly/react-catalog-view-extension": "5.0.0",
"@patternfly/react-component-groups": "5.0.0",
"@patternfly/react-console": "5.0.0",
"@patternfly/react-log-viewer": "5.0.0",
"@patternfly/react-topology": "5.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/documentation-site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@patternfly/react-log-viewer": "5.1.0-prerelease.1",
"@patternfly/react-topology": "5.2.0-prerelease.1",
"@patternfly/react-user-feedback": "5.0.0",
"@patternfly/react-component-groups": "5.0.0-prerelease.5",
"@patternfly/react-component-groups": "5.0.0",
"@patternfly/react-virtualized-extension": "5.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ To help provide a high-level view of what's new, we've pulled together the major

- PatternFly extensions
- [@patternfly/[email protected]](https://www.npmjs.com/package/@patternfly/react-topology/v/5.1.0) ([changelog](https://github.com/patternfly/react-topology/releases/tag/v5.1.0))
- [@patternfly/[email protected]](https://www.npmjs.com/package/@patternfly/react-component-groups/v/5.0.0) ([changelog](https://github.com/patternfly/react-component-groups/releases/tag/v5.0.0))

### Right-to-left language support

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -135,22 +135,22 @@ module.exports = (sourceMD, sourceProps, sourceFunctionDocs) => {
sourceMD(path.join(reactUserFeedbackPath, '/**/examples/*.md'), 'react');
sourceMD(path.join(reactUserFeedbackPath, '/**/design-guidelines/*.md'), 'design-guidelines');

// Prerelease sections:
// Component Groups extension (Currently in PRERELEASE, so only include in PRERELEASE builds)
if (process.env.PRERELEASE === 'true') {
const reactComponentGroupsPath = require
const reactComponentGroupsPath = require
.resolve('@patternfly/react-component-groups/package.json')
.replace('package.json', 'src');

const reactComponentGroupsBase = require
const reactComponentGroupsBase = require
.resolve('@patternfly/react-component-groups/package.json')
.replace('package.json', 'patternfly-docs/content/extensions/component-groups');

sourceProps(path.join(reactComponentGroupsPath, '/**/*.tsx'), reactPropsIgnore);
sourceMD(path.join(reactComponentGroupsBase, '/**/*.md'), 'react');
sourceMD(path.join(reactComponentGroupsPath, '/**/examples/*.md'), 'react');
sourceMD(path.join(reactComponentGroupsPath, '/**/design-guidelines/*.md'), 'design-guidelines');
sourceProps(path.join(reactComponentGroupsPath, '/**/*.tsx'), reactPropsIgnore);
sourceMD(path.join(reactComponentGroupsBase, '/**/*.md'), 'react');
sourceMD(path.join(reactComponentGroupsPath, '/**/examples/*.md'), 'react');
sourceMD(path.join(reactComponentGroupsPath, '/**/design-guidelines/*.md'), 'design-guidelines');

// Prerelease sections:
// Component Groups extension (Currently in PRERELEASE, so only include in PRERELEASE builds)
if (process.env.PRERELEASE === 'true') {
const reactVirtualizedTablePath = require
.resolve('@patternfly/react-virtualized-extension/package.json')
.replace('package.json', 'src');
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2191,10 +2191,10 @@
react-dropzone "14.2.3"
tslib "^2.5.0"

"@patternfly/[email protected]-prerelease.5":
version "5.0.0-prerelease.5"
resolved "https://registry.yarnpkg.com/@patternfly/react-component-groups/-/react-component-groups-5.0.0-prerelease.5.tgz#88880e550ab23d6f591c24dbc11bda1829fdbeb8"
integrity sha512-LsOUwn4ldocLTx2M/XE4y72RQ5O5ZF5qfHoWRa7WusgmAI06l/fAhg8Et6teiDR9PopQiIiIVFqlBljhGrmKww==
"@patternfly/[email protected]":
version "5.0.0"
resolved "https://registry.yarnpkg.com/@patternfly/react-component-groups/-/react-component-groups-5.0.0.tgz#d11229729ac0d40874262956a57fb6496501fa6c"
integrity sha512-ON4h4SKOCgLRgZLd/FOj44wU19ytvFPjflxPSYU0KfCWlVgb6F62+l316/Va/tzDo/AwZypnUxOEksXDv+C2+A==
dependencies:
"@patternfly/react-core" "^5.1.1"
"@patternfly/react-icons" "^5.1.1"
Expand Down
Loading