@patternfly/documentation-framework 6.0.0-alpha.55 → 6.0.0-alpha.57

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,28 @@
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.0.0-alpha.57 (2024-07-10)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * clean up community and trainging card css ([#4127](https://github.com/patternfly/patternfly-org/issues/4127)) ([eb9a231](https://github.com/patternfly/patternfly-org/commit/eb9a23103cb6e54f38e2eae5056f2a53cd4a430e))
12
+
13
+
14
+
15
+
16
+
17
+ # 6.0.0-alpha.56 (2024-07-10)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * clean up spacers.css ([#4088](https://github.com/patternfly/patternfly-org/issues/4088)) ([e13a093](https://github.com/patternfly/patternfly-org/commit/e13a09302aea90b66e8fbe47b9f5386baea43835))
23
+
24
+
25
+
26
+
27
+
6
28
  # 6.0.0-alpha.55 (2024-07-10)
7
29
 
8
30
 
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.0.0-alpha.55",
4
+ "version": "6.0.0-alpha.57",
5
5
  "author": "Red Hat",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -13,7 +13,7 @@
13
13
  "@babel/preset-env": "^7.24.3",
14
14
  "@babel/preset-react": "^7.24.1",
15
15
  "@mdx-js/util": "1.6.16",
16
- "@patternfly/ast-helpers": "^1.4.0-alpha.44",
16
+ "@patternfly/ast-helpers": "^1.4.0-alpha.46",
17
17
  "@reach/router": "npm:@gatsbyjs/reach-router@1.3.9",
18
18
  "autoprefixer": "9.8.6",
19
19
  "babel-loader": "^9.1.3",
@@ -80,5 +80,5 @@
80
80
  "react": "^17.0.0 || ^18.0.0",
81
81
  "react-dom": "^17.0.0 || ^18.0.0"
82
82
  },
83
- "gitHead": "8ca7778e73cf01814c9ba6e410f00f9351cb8e50"
83
+ "gitHead": "260f73d6ab4c30235d51c241f2eee2cba7822415"
84
84
  }
package/templates/mdx.css CHANGED
@@ -1,3 +1,7 @@
1
+ p.pf-v6-c-content--p.ws-p {
2
+ margin: 0;
3
+ }
4
+
1
5
  .ws-code {
2
6
  display: inline-block;
3
7
  background-color: var(--pf-t--global--background--color--secondary--default);
@@ -8,6 +12,10 @@
8
12
  font-family: var(--pf-t--global--font--family--mono);
9
13
  }
10
14
 
15
+ .ws-content-table > .ws-table {
16
+ margin-bottom: var(--pf-t--global--spacer--md);
17
+ }
18
+
11
19
  .ws-image {
12
20
  text-align: center;
13
21
  }
package/templates/mdx.js CHANGED
@@ -91,7 +91,7 @@ const MDXChildTemplate = ({
91
91
  {toc.length > 1 && (
92
92
  <TableOfContents items={toc} />
93
93
  )}
94
- <Stack hasGutter={isComponentCodeDocs} style={{...(source !== 'landing-pages' && {maxWidth: "825px"})}}>
94
+ <Stack hasGutter style={{...(source !== 'landing-pages' && {maxWidth: "825px"})}}>
95
95
  {InlineAlerts}
96
96
  <Component />
97
97
  {functionDocumentation.length > 0 && (