Compare commits

...

2 Commits

Author SHA1 Message Date
semantic-release-bot
7e7a325cd9 chore(release): 4.9.2 [CI SKIP] 2025-03-29 13:02:17 +00:00
Lukas Senionis
41d0555d31 fix(SidebarNavigation): change title to ReactNode type (#117) 2025-03-29 09:01:51 -04:00
3 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
## [4.9.2](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v4.9.1...v4.9.2) (2025-03-29)
### Bug Fixes
* **SidebarNavigation:** change title to ReactNode type ([#117](https://github.com/SteamDeckHomebrew/decky-frontend-lib/issues/117)) ([41d0555](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/41d0555d314f9f68d3cdcc45f454f13b952b4581))
## [4.9.1](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v4.9.0...v4.9.1) (2025-01-29)

View File

@@ -1,6 +1,6 @@
{
"name": "@decky/ui",
"version": "4.9.1",
"version": "4.9.2",
"description": "A library for interacting with the Steam frontend in Decky plugins and elsewhere.",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@@ -16,7 +16,7 @@ export interface SidebarNavigationPage {
}
export interface SidebarNavigationProps {
title?: string;
title?: ReactNode;
pages: (SidebarNavigationPage | 'separator')[];
showTitle?: boolean;
disableRouteReporting?: boolean;