@patternfly/documentation-framework 6.0.0-alpha.101 → 6.0.0-alpha.103
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 +22 -0
- package/components/sideNav/sideNav.js +2 -5
- package/package.json +4 -4
- package/versions.json +1 -1
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.103 (2024-09-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Reenabled patternfly quickstarts. ([#4267](https://github.com/patternfly/patternfly-org/issues/4267)) ([25c87bb](https://github.com/patternfly/patternfly-org/commit/25c87bb5f1dbc42d04a95c2e9e254692c7f99b5c))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# 6.0.0-alpha.102 (2024-09-23)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **sideNav:** revert temp fix for tokens update ([#4270](https://github.com/patternfly/patternfly-org/issues/4270)) ([4ccd2f0](https://github.com/patternfly/patternfly-org/commit/4ccd2f01f780e706cbfa0664007f3bdf873797ad))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# 6.0.0-alpha.101 (2024-09-23)
|
|
7
29
|
|
|
8
30
|
|
|
@@ -4,8 +4,7 @@ import { Label, Nav, NavList, NavExpandable, PageContextConsumer, capitalize, Fl
|
|
|
4
4
|
import { css } from '@patternfly/react-styles';
|
|
5
5
|
import { Location } from '@reach/router';
|
|
6
6
|
import { makeSlug } from '../../helpers';
|
|
7
|
-
|
|
8
|
-
//import globalBreakpointXl from "@patternfly/react-tokens/dist/esm/global_breakpoint_xl";
|
|
7
|
+
import globalBreakpointXl from "@patternfly/react-tokens/dist/esm/t_global_breakpoint_xl";
|
|
9
8
|
import { trackEvent } from '../../helpers';
|
|
10
9
|
|
|
11
10
|
const getIsActive = (location, section, subsection = null) => {
|
|
@@ -16,9 +15,7 @@ const getIsActive = (location, section, subsection = null) => {
|
|
|
16
15
|
const defaultValue = 50;
|
|
17
16
|
|
|
18
17
|
const NavItem = ({ text, href, isDeprecated, isBeta, isDemo }) => {
|
|
19
|
-
|
|
20
|
-
// const isMobileView = window.innerWidth < Number.parseInt(globalBreakpointXl.value, 10);
|
|
21
|
-
const isMobileView = window.innerWidth < Number.parseInt("75rem", 10);
|
|
18
|
+
const isMobileView = window.innerWidth < Number.parseInt(globalBreakpointXl.value, 10);
|
|
22
19
|
return (
|
|
23
20
|
<PageContextConsumer key={href + text}>
|
|
24
21
|
{({onSidebarToggle, isSidebarOpen }) => (
|
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.
|
|
4
|
+
"version": "6.0.0-alpha.103",
|
|
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.
|
|
16
|
+
"@patternfly/ast-helpers": "^1.4.0-alpha.92",
|
|
17
17
|
"@reach/router": "npm:@gatsbyjs/reach-router@1.3.9",
|
|
18
18
|
"autoprefixer": "9.8.6",
|
|
19
19
|
"babel-loader": "^9.1.3",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"copy-webpack-plugin": "11.0.0",
|
|
26
26
|
"css-loader": "6.7.3",
|
|
27
27
|
"detab": "2.0.3",
|
|
28
|
-
"express": "4.
|
|
28
|
+
"express": "4.21.0",
|
|
29
29
|
"file-loader": "6.2.0",
|
|
30
30
|
"file-saver": "1.3.8",
|
|
31
31
|
"fs-extra": "9.0.1",
|
|
@@ -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": "
|
|
83
|
+
"gitHead": "92fe1cf59ba49bda2eed035ee1e983fd7022ae07"
|
|
84
84
|
}
|
package/versions.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@patternfly/react-topology": "6.0.0-prerelease.1",
|
|
21
21
|
"@patternfly/react-user-feedback": "6.0.0-prerelease.1",
|
|
22
22
|
"@patternfly/react-console": "6.0.0-prerelease.1",
|
|
23
|
-
"@patternfly/quickstarts": "6.0.0-
|
|
23
|
+
"@patternfly/quickstarts": "6.0.0-prerelease.1",
|
|
24
24
|
"@patternfly/react-virtualized-extension": "6.0.0-prerelease.3",
|
|
25
25
|
"@patternfly/react-templates": "6.0.0-prerelease.14"
|
|
26
26
|
}
|