Skip to content

Commit

Permalink
Merge branch 'main' into iss3695
Browse files Browse the repository at this point in the history
  • Loading branch information
edonehoo authored Oct 31, 2023
2 parents 29d4753 + 7eb15ac commit a144112
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 5 deletions.
24 changes: 24 additions & 0 deletions packages/ast-helpers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.2.26 (2023-10-30)

**Note:** Version bump only for package @patternfly/ast-helpers





## 1.2.25 (2023-10-27)

**Note:** Version bump only for package @patternfly/ast-helpers





## 1.2.24 (2023-10-27)

**Note:** Version bump only for package @patternfly/ast-helpers





## 1.2.23 (2023-10-27)

**Note:** Version bump only for package @patternfly/ast-helpers
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.2.23",
"version": "1.2.26",
"author": "Red Hat",
"license": "MIT",
"publishConfig": {
Expand Down
24 changes: 24 additions & 0 deletions packages/documentation-framework/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 5.2.26 (2023-10-30)

**Note:** Version bump only for package @patternfly/documentation-framework





## 5.2.25 (2023-10-27)

**Note:** Version bump only for package @patternfly/documentation-framework





## 5.2.24 (2023-10-27)

**Note:** Version bump only for package @patternfly/documentation-framework





## 5.2.23 (2023-10-27)

**Note:** Version bump only for package @patternfly/documentation-framework
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ export const Example = ({
}) => {
if (isFullscreenPreview) {
isFullscreen = false;
window.addEventListener('load', () => {
//append a class to the document body to indicate to screenshot/automated visual regression tools that the page has loaded
document.body.classList.add('page-loaded');
});
}
if (!lang) {
// Inline code
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.2.23",
"version": "5.2.26",
"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.2.23",
"@patternfly/ast-helpers": "^1.2.26",
"@reach/router": "npm:@gatsbyjs/[email protected]",
"autoprefixer": "9.8.6",
"babel-loader": "9.1.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Use abbreviations that users are familiar with, and write out uncommon abbreviat
| **U.S.** | As a noun, use *United States* unless there are space constraints. As an adjective, use *U.S.* (for example, *U.S. soldier*). As part of an organization, use *U.S.* <br /><br /> Taken from Red Hat Corporate Style Guide. |
| **URL** | Stands for *Uniform Resource Locator*. Write *URL* in all caps. |
| **VM** | Refers to a virtual machine. OK to abbreviate as long as you've spelled it out once in the first occurrence and as long as *VM* won't be confused with other terms that share that acronym. <br /><br />Taken from Red Hat Corporate Style Guide. |
| **N/A** | Refers to *data not applicable*, meaning data does not currently apply to the object and will not populate.<br /><br />This includes scenarios where there is no matching data in the object's data source. For example, when nothing matches a filter, when the data source is empty, or when the object is not connected to any data source.|
| **--** | Refers to *data not available*, meaning data could apply to the object, but is currently not populating.<br /><br />This includes scenarios where the object is connected to a data source, but is not able to fetch data. For example, when there are permission restrictions or errors.|
| **N/A** | Refers to *data not applicable*, meaning there is no relevant, matching, or applicable data.<br /><br />For example, when a filter returns no results, when a data source is empty, or when no data source is connected.|
| **--** | Refers to *data unavailable*, meaning the data exists and fits the criteria, but is not currently available to display.<br /><br />For example, when a data source is connected, but data can't be fetched due to permission restrictions or errors.|

</div>

0 comments on commit a144112

Please sign in to comment.