@patternfly/documentation-framework 6.28.6 → 6.28.8
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/themeSelector/themeSelector.js +18 -13
- package/package.json +3 -3
- 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.28.8 (2025-10-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* re-enable theme switcher hc beta label ([#4836](https://github.com/patternfly/patternfly-org/issues/4836)) ([4e85fce](https://github.com/patternfly/patternfly-org/commit/4e85fce75834e4cde4adb2f6bc62408472426b0a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## 6.28.7 (2025-10-21)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **ChatBot:** Adjust yarn.lock file so dropdowns work ([#4837](https://github.com/patternfly/patternfly-org/issues/4837)) ([f180a55](https://github.com/patternfly/patternfly-org/commit/f180a554ebdc36a38783ac33873c399802be3e9f))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## 6.28.6 (2025-10-17)
|
|
7
29
|
|
|
8
30
|
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
@@ -66,29 +66,34 @@ const HighContrastGroupLabel = () => {
|
|
|
66
66
|
High contrast{' '}
|
|
67
67
|
<Popover
|
|
68
68
|
onClick={(e) => e.stopPropagation()}
|
|
69
|
-
headerContent={
|
|
69
|
+
headerContent={'Under development'}
|
|
70
70
|
headerComponent="h1"
|
|
71
71
|
bodyContent={
|
|
72
|
-
|
|
72
|
+
'We are still working to add high contrast support across all PatternFly components and extensions. This beta allows you to preview our progress.'
|
|
73
73
|
}
|
|
74
74
|
footerContent={
|
|
75
|
-
<Button
|
|
75
|
+
<Button
|
|
76
|
+
icon={<ExternalLinkAltIcon />}
|
|
77
|
+
component="a"
|
|
78
|
+
isInline
|
|
79
|
+
variant="link"
|
|
80
|
+
href="/design-foundations/theming"
|
|
81
|
+
target="_blank"
|
|
82
|
+
>
|
|
76
83
|
Learn more
|
|
77
84
|
</Button>
|
|
78
85
|
}
|
|
79
86
|
aria-label="More info about high contrast"
|
|
80
87
|
appendTo={() => document.body}
|
|
81
88
|
>
|
|
82
|
-
<Button
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
</Popover>{' '}
|
|
89
|
-
<Label color="blue" isCompact>Beta</Label>
|
|
89
|
+
<Button variant="plain" hasNoPadding icon={<HelpIcon />} aria-label="High contrast help" />
|
|
90
|
+
</Popover>{' '}
|
|
91
|
+
|
|
92
|
+
<Label color="blue" isCompact>
|
|
93
|
+
Beta
|
|
94
|
+
</Label>
|
|
90
95
|
</div>
|
|
91
|
-
)
|
|
96
|
+
);
|
|
92
97
|
};
|
|
93
98
|
|
|
94
99
|
export const ThemeSelector = ({ id }) => {
|
|
@@ -173,7 +178,7 @@ export const ThemeSelector = ({ id }) => {
|
|
|
173
178
|
{process.env.hasHighContrastSwitcher && (
|
|
174
179
|
<>
|
|
175
180
|
<Divider />
|
|
176
|
-
<SelectGroup label=
|
|
181
|
+
<SelectGroup label={HighContrastGroupLabel}>
|
|
177
182
|
<MenuSearch>
|
|
178
183
|
<MenuSearchInput>
|
|
179
184
|
<ToggleGroup aria-label="High contrast theme switcher">
|
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.28.
|
|
4
|
+
"version": "6.28.8",
|
|
5
5
|
"author": "Red Hat",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@babel/preset-env": "7.27.1",
|
|
13
13
|
"@babel/preset-react": "^7.24.1",
|
|
14
14
|
"@mdx-js/util": "1.6.16",
|
|
15
|
-
"@patternfly/ast-helpers": "^1.4.0-alpha.
|
|
15
|
+
"@patternfly/ast-helpers": "^1.4.0-alpha.302",
|
|
16
16
|
"@reach/router": "npm:@gatsbyjs/reach-router@1.3.9",
|
|
17
17
|
"autoprefixer": "10.4.19",
|
|
18
18
|
"babel-loader": "^9.1.3",
|
|
@@ -95,5 +95,5 @@
|
|
|
95
95
|
"http-cache-semantics": ">=4.1.1",
|
|
96
96
|
"nanoid": "3.3.8"
|
|
97
97
|
},
|
|
98
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "a49a78b6e515e349f0574b0609027f99d9d2f495"
|
|
99
99
|
}
|
package/versions.json
CHANGED