Skip to content

Commit

Permalink
Merge branch 'patternfly:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
wise-king-sullyman authored Nov 16, 2023
2 parents 891865f + 1b4d3dc commit fee1fac
Show file tree
Hide file tree
Showing 7 changed files with 96 additions and 9 deletions.
11 changes: 11 additions & 0 deletions packages/ast-helpers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.3.6 (2023-11-14)


### Bug Fixes

* add virtualized table to extensions staging ([#3819](https://github.com/patternfly/patternfly-org/issues/3819)) ([06e3fbc](https://github.com/patternfly/patternfly-org/commit/06e3fbcbf433969d5ac880d82597f1fb04e4bbf1))





## 1.3.5 (2023-11-13)


Expand Down
2 changes: 1 addition & 1 deletion packages/ast-helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@patternfly/ast-helpers",
"description": "Acorn AST helpers for working with live code",
"version": "1.3.5",
"version": "1.3.6",
"author": "Red Hat",
"license": "MIT",
"publishConfig": {
Expand Down
11 changes: 11 additions & 0 deletions packages/documentation-framework/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 5.3.6 (2023-11-14)


### Bug Fixes

* add virtualized table to extensions staging ([#3819](https://github.com/patternfly/patternfly-org/issues/3819)) ([06e3fbc](https://github.com/patternfly/patternfly-org/commit/06e3fbcbf433969d5ac880d82597f1fb04e4bbf1))





## 5.3.5 (2023-11-13)


Expand Down
4 changes: 2 additions & 2 deletions packages/documentation-framework/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@patternfly/documentation-framework",
"description": "A framework to build documentation for PatternFly.",
"version": "5.3.5",
"version": "5.3.6",
"author": "Red Hat",
"license": "MIT",
"private": false,
Expand All @@ -17,7 +17,7 @@
"@babel/plugin-transform-react-jsx": "7.17.12",
"@babel/preset-env": "7.18.2",
"@mdx-js/util": "1.6.16",
"@patternfly/ast-helpers": "^1.3.5",
"@patternfly/ast-helpers": "^1.3.6",
"@reach/router": "npm:@gatsbyjs/[email protected]",
"autoprefixer": "9.8.6",
"babel-loader": "9.1.2",
Expand Down
1 change: 1 addition & 0 deletions packages/documentation-site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"@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-virtualized-extension": "5.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"showdown": "^2.1.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ module.exports = (sourceMD, sourceProps, sourceFunctionDocs) => {
const contentBase = path.join(__dirname, '../patternfly-docs/content');
const reactPropsIgnore = ['**/*.test.tsx', '**/examples/*.tsx'];
sourceMD(path.join(contentBase, 'extensions/**/*.md'), 'extensions');
if (!(process.env.EXTENSIONS_ONLY === 'true')) {
if (!(process.env.EXTENSIONS_ONLY === 'true')) {

sourceMD(path.join(contentBase, 'contribute/**/*.md'), 'pages-contribute');
sourceMD(path.join(contentBase, 'get-started/**/*.md'), 'pages-get-started');
sourceMD(path.join(contentBase, 'developer-resources/**/*.md'), 'developer-resources');
Expand All @@ -21,7 +21,6 @@ module.exports = (sourceMD, sourceProps, sourceFunctionDocs) => {
const galleryBase = path.join(__dirname, '../patternfly-docs/pages');
sourceMD(path.join(galleryBase, 'landing-pages/**/*.md'), 'landing-pages');


// Theme pages
const themePagesPath = require
.resolve('@patternfly/documentation-framework/package.json')
Expand Down Expand Up @@ -84,7 +83,7 @@ module.exports = (sourceMD, sourceProps, sourceFunctionDocs) => {

// React OUIA MD
sourceMD(path.join(reactCorePath, '/**/helpers/OUIA/*.md'), 'react');
}
}
// EXTENSIONS:

// Quickstarts extension
Expand Down Expand Up @@ -112,7 +111,7 @@ module.exports = (sourceMD, sourceProps, sourceFunctionDocs) => {

sourceProps(path.join(consoleSrcPath, "/**/*.tsx"), reactPropsIgnore);
sourceMD(path.join(consoleDocsPath, "/examples/*.md"), 'react');

// Log viewer extension
const reactLogViewerPath = require
.resolve('@patternfly/react-log-viewer/package.json')
Expand Down Expand Up @@ -151,5 +150,16 @@ module.exports = (sourceMD, sourceProps, sourceFunctionDocs) => {
sourceMD(path.join(reactComponentGroupsBase, '/**/*.md'), 'react');
sourceMD(path.join(reactComponentGroupsPath, '/**/examples/*.md'), 'react');
sourceMD(path.join(reactComponentGroupsPath, '/**/design-guidelines/*.md'), 'design-guidelines');

const reactVirtualizedTablePath = require
.resolve('@patternfly/react-virtualized-extension/package.json')
.replace('package.json', 'src');

const reactVirtualizedTableBase = require
.resolve('@patternfly/react-virtualized-extension/package.json')
.replace('package.json', 'patternfly-docs/');

sourceProps(path.join(reactVirtualizedTablePath, '/**/*.tsx'), reactPropsIgnore);
sourceMD(path.join(reactVirtualizedTableBase, '/**/*.md'), 'react');
}
}
56 changes: 55 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -964,6 +964,13 @@
dependencies:
regenerator-runtime "^0.14.0"

"@babel/runtime@^7.7.2", "@babel/runtime@^7.8.7":
version "7.23.2"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.2.tgz#062b0ac103261d68a966c4c7baf2ae3e62ec3885"
integrity sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==
dependencies:
regenerator-runtime "^0.14.0"

"@babel/template@^7.10.4", "@babel/template@^7.16.7", "@babel/template@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.6.tgz#1283f4993e00b929d6e2d3c72fdc9168a2977a31"
Expand Down Expand Up @@ -2368,6 +2375,18 @@
"@patternfly/react-core" "^5.0.0"
"@patternfly/react-icons" "^5.0.0"

"@patternfly/[email protected]":
version "5.0.0"
resolved "https://registry.yarnpkg.com/@patternfly/react-virtualized-extension/-/react-virtualized-extension-5.0.0.tgz#4f52e61c974a66d293a66b56f8cdce359c642585"
integrity sha512-1DWr5KbIuQojVKEkyQpYOj310A1zlH82twQoV783vsjaAwfo6GDKd8PBSzthA3z+F8p1Yx2bNjjdun0qABtZTQ==
dependencies:
"@patternfly/react-core" "^5.0.0"
"@patternfly/react-icons" "^5.0.0"
"@patternfly/react-styles" "^5.0.0"
linear-layout-vector "0.0.1"
react-virtualized "^9.22.5"
tslib "^2.5.2"

"@phenomnomnominal/[email protected]":
version "4.1.1"
resolved "https://registry.yarnpkg.com/@phenomnomnominal/tsquery/-/tsquery-4.1.1.tgz#42971b83590e9d853d024ddb04a18085a36518df"
Expand Down Expand Up @@ -4048,6 +4067,11 @@ clone@^1.0.2:
resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=

clsx@^1.0.4:
version "1.2.1"
resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12"
integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==

clsx@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.0.0.tgz#12658f3fd98fafe62075595a5c30e43d18f3d00b"
Expand Down Expand Up @@ -5147,6 +5171,14 @@ dom-converter@^0.2.0:
dependencies:
utila "~0.4"

dom-helpers@^5.1.3:
version "5.2.1"
resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902"
integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==
dependencies:
"@babel/runtime" "^7.8.7"
csstype "^3.0.2"

dom-serializer@^1.0.1:
version "1.4.1"
resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30"
Expand Down Expand Up @@ -7552,6 +7584,11 @@ libnpmpublish@^6.0.4:
semver "^7.3.7"
ssri "^9.0.0"

[email protected]:
version "0.0.1"
resolved "https://registry.yarnpkg.com/linear-layout-vector/-/linear-layout-vector-0.0.1.tgz#398114d7303b6ecc7fd6b273af7b8401d8ba9c70"
integrity sha512-w+nr1ZOVFGyMhwr8JKo0YzqDc8C2Z7pc9UbTuJA4VG/ezlSFEx+7kNrfCYvq7JQ/jHKR+FWy6reNrkVVzm0hSA==

lines-and-columns@^1.1.6:
version "1.1.6"
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
Expand Down Expand Up @@ -9360,7 +9397,7 @@ promzard@^0.3.0:
dependencies:
read "1"

prop-types@^15.5.8, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.8.1:
prop-types@^15.5.8, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1:
version "15.8.1"
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
Expand Down Expand Up @@ -9645,6 +9682,18 @@ [email protected]:
resolved "https://registry.yarnpkg.com/react-ssr-prepass/-/react-ssr-prepass-1.5.0.tgz#bc4ca7fcb52365e6aea11cc254a3d1bdcbd030c5"
integrity sha512-yFNHrlVEReVYKsLI5lF05tZoHveA5pGzjFbFJY/3pOqqjGOmMmqx83N4hIjN2n6E1AOa+eQEUxs3CgRnPmT0RQ==

react-virtualized@^9.22.5:
version "9.22.5"
resolved "https://registry.yarnpkg.com/react-virtualized/-/react-virtualized-9.22.5.tgz#bfb96fed519de378b50d8c0064b92994b3b91620"
integrity sha512-YqQMRzlVANBv1L/7r63OHa2b0ZsAaDp1UhVNEdUaXI8A5u6hTpA5NYtUueLH2rFuY/27mTGIBl7ZhqFKzw18YQ==
dependencies:
"@babel/runtime" "^7.7.2"
clsx "^1.0.4"
dom-helpers "^5.1.3"
loose-envify "^1.4.0"
prop-types "^15.7.2"
react-lifecycles-compat "^3.0.4"

"react@^17.0.0 || ^18.0.0":
version "18.2.0"
resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5"
Expand Down Expand Up @@ -11202,6 +11251,11 @@ tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.4
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf"
integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==

tslib@^2.5.2:
version "2.6.2"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==

tunnel-agent@^0.6.0:
version "0.6.0"
resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
Expand Down

0 comments on commit fee1fac

Please sign in to comment.