@patternfly/documentation-framework 2.0.0-alpha.30 → 2.0.0-alpha.32
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
|
+
# 2.0.0-alpha.32 (2023-05-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# 2.0.0-alpha.31 (2023-05-01)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* update Text component summary to fix build ([64b3590](https://github.com/patternfly/patternfly-org/commit/64b359029fa14be143ddec212fdf89a3033145d5))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# 2.0.0-alpha.30 (2023-04-27)
|
|
7
26
|
|
|
8
27
|
|
|
@@ -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
|
-
|
|
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.
|
|
4
|
+
"version": "2.0.0-alpha.32",
|
|
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.
|
|
89
|
-
"@patternfly/react-core": "^5.0.0-alpha.
|
|
90
|
-
"@patternfly/react-table": "^5.0.0-alpha.
|
|
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": "
|
|
94
|
+
"gitHead": "347de28d1ed21460ee065973d7f0416555cf03b1"
|
|
95
95
|
}
|