@primer/doctocat-nextjs 0.5.6-rc.89c7234 → 0.5.6-rc.ac8cfa2
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
|
@@ -4,9 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
- [
|
|
8
|
-
|
|
9
|
-
- [#54](https://github.com/primer/doctocat-nextjs/pull/54) [`a57f42f`](https://github.com/primer/doctocat-nextjs/commit/a57f42fec69d142e4dd1dc33129ce2423651e907) Thanks [@danielguillan](https://github.com/danielguillan)! - Fixed a bug that caused breadcrumbs to display an incorrect title for pages with tabs
|
|
7
|
+
- [`a57f42f`](https://github.com/primer/doctocat-nextjs/commit/a57f42fec69d142e4dd1dc33129ce2423651e907) Thanks [@danielguillan](https://github.com/danielguillan)! - Fixed a bug that caused breadcrumbs to display an incorrect title for pages with tabs
|
|
10
8
|
|
|
11
9
|
## 0.5.5
|
|
12
10
|
|
|
@@ -120,7 +120,7 @@ export function Header({siteTitle, flatDocsDirectories, pageMap}: HeaderProps) {
|
|
|
120
120
|
<IconButton
|
|
121
121
|
icon={colorMode === 'light' ? SunIcon : MoonIcon}
|
|
122
122
|
variant="invisible"
|
|
123
|
-
aria-label={`
|
|
123
|
+
aria-label={`Change color mode. Active mode is ${colorMode}.`}
|
|
124
124
|
onClick={() => setColorMode(colorMode === 'light' ? 'dark' : 'light')}
|
|
125
125
|
/>
|
|
126
126
|
<IconButton
|