@patternfly/documentation-framework 6.0.0-alpha.75 → 6.0.0-alpha.77

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,25 @@
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.77 (2024-08-09)
7
+
8
+ **Note:** Version bump only for package @patternfly/documentation-framework
9
+
10
+
11
+
12
+
13
+
14
+ # 6.0.0-alpha.76 (2024-08-09)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **docs:** gallery cards fill row height ([#4180](https://github.com/patternfly/patternfly-org/issues/4180)) ([d433321](https://github.com/patternfly/patternfly-org/commit/d433321aed3e7b95435087cd827c9793569d638e))
20
+
21
+
22
+
23
+
24
+
6
25
  # 6.0.0-alpha.75 (2024-08-09)
7
26
 
8
27
 
@@ -9,6 +9,11 @@
9
9
  color: inherit;
10
10
  }
11
11
 
12
+ /* Ensure cards within a row stretch vertically to fill row height */
13
+ .ws-section-gallery .pf-v6-c-card {
14
+ height: 100%;
15
+ }
16
+
12
17
  /* Limit width for data list view only */
13
18
  .ws-section-gallery .pf-v6-c-data-list {
14
19
  max-width: var(--pf-t--global--breakpoint--lg);
@@ -60,8 +60,8 @@ export const SectionGalleryToolbar = ({
60
60
  </ToolbarGroup>
61
61
  <ToolbarItem
62
62
  variant="pagination"
63
- spacer={{ default: 'spacerMd', md: 'spacerNone' }}
64
63
  style={{ '--pf-v6-c-toolbar__item--MinWidth': 'max-content' }}
64
+ className="pf-m-align-self-center"
65
65
  >
66
66
  <Content component={ContentVariants.small}>
67
67
  {galleryItems.length}
@@ -67,3 +67,7 @@
67
67
  }
68
68
  }
69
69
 
70
+ .ws-toc-item .pf-m-link {
71
+ text-wrap: wrap;
72
+ text-align: left;
73
+ }
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.75",
4
+ "version": "6.0.0-alpha.77",
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.64",
16
+ "@patternfly/ast-helpers": "^1.4.0-alpha.66",
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": "b826427ccd0f9552c5b1f525a235c01740b737dc"
83
+ "gitHead": "d9af6aebecca9a28f38911cb0ed1b65d225df124"
84
84
  }