@patternfly/documentation-framework 2.0.0-alpha.30 → 2.0.0-alpha.31

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,17 @@
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
+ # 2.0.0-alpha.31 (2023-05-01)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * update Text component summary to fix build ([64b3590](https://github.com/patternfly/patternfly-org/commit/64b359029fa14be143ddec212fdf89a3033145d5))
12
+
13
+
14
+
15
+
16
+
6
17
  # 2.0.0-alpha.30 (2023-04-27)
7
18
 
8
19
 
@@ -3,6 +3,7 @@ import {
3
3
  Button,
4
4
  Page,
5
5
  PageSidebar,
6
+ PageSidebarBody,
6
7
  Brand,
7
8
  Dropdown,
8
9
  DropdownItem,
@@ -218,8 +219,11 @@ export const SideNavLayout = ({ children, groupedRoutes, navOpen: navOpenProp })
218
219
  <PageSidebar
219
220
  className="ws-page-sidebar"
220
221
  theme="light"
221
- nav={<SideNav navItems={sideNavItems} groupedRoutes={groupedRoutes} />}
222
- />
222
+ >
223
+ <PageSidebarBody>
224
+ <SideNav navItems={sideNavItems} groupedRoutes={groupedRoutes} />
225
+ </PageSidebarBody>
226
+ </PageSidebar>
223
227
  );
224
228
 
225
229
  const Header = (
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": "2.0.0-alpha.30",
4
+ "version": "2.0.0-alpha.31",
5
5
  "author": "Red Hat",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -85,11 +85,11 @@
85
85
  },
86
86
  "peerDependencies": {
87
87
  "@patternfly/patternfly": "^5.0.0-alpha.37",
88
- "@patternfly/react-code-editor": "^5.0.0-alpha.76",
89
- "@patternfly/react-core": "^5.0.0-alpha.75",
90
- "@patternfly/react-table": "^5.0.0-alpha.77",
88
+ "@patternfly/react-code-editor": "^5.0.0-alpha.84",
89
+ "@patternfly/react-core": "^5.0.0-alpha.83",
90
+ "@patternfly/react-table": "^5.0.0-alpha.85",
91
91
  "react": "^17.0.0 || ^18.0.0",
92
92
  "react-dom": "^17.0.0 || ^18.0.0"
93
93
  },
94
- "gitHead": "3708bceee20d032325ba4537140a2271fbda5c9c"
94
+ "gitHead": "46db0c1c334e7304290b8cc024bfdd40c887013b"
95
95
  }