@primer/doctocat-nextjs 0.0.0-20250626160745 → 0.0.0-20250627100311

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
@@ -1,16 +1,18 @@
1
1
  # @primer/doctocat-nextjs
2
2
 
3
- ## 0.0.0-20250626160745
3
+ ## 0.0.0-20250627100311
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Fake entry to force publishing
8
8
 
9
- ## 0.0.0-20250626160744
9
+ ## 0.0.0-20250627100309
10
10
 
11
11
  ### Patch Changes
12
12
 
13
- - [`bd8ca81`](https://github.com/primer/doctocat-nextjs/commit/bd8ca815fd63d17879bd027983408fd6a0087edc) Thanks [@danielguillan](https://github.com/danielguillan)! - Fixed a bug that caused breadcrumbs to display an incorrect title for pages with tabs
13
+ - [#56](https://github.com/primer/doctocat-nextjs/pull/56) [`028c1c6`](https://github.com/primer/doctocat-nextjs/commit/028c1c670d87bdee9b66fd99be671b58d02e25ae) Thanks [@danielguillan](https://github.com/danielguillan)! - Updated theme switcher aria label
14
+
15
+ - [#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
14
16
 
15
17
  ## 0.5.5
16
18
 
@@ -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={`Change color mode. Active mode is ${colorMode}.`}
123
+ aria-label={`Switch to ${colorMode === 'light' ? 'dark' : 'light'} mode`}
124
124
  onClick={() => setColorMode(colorMode === 'light' ? 'dark' : 'light')}
125
125
  />
126
126
  <IconButton
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primer/doctocat-nextjs",
3
- "version": "0.0.0-20250626160745",
3
+ "version": "0.0.0-20250627100311",
4
4
  "description": "A Next.js theme for building Primer documentation sites",
5
5
  "main": "index.js",
6
6
  "type": "module",