@decky/ui 4.9.1 → 4.9.2

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.
@@ -11,7 +11,7 @@ export interface SidebarNavigationPage {
11
11
  padding?: 'none' | 'compact';
12
12
  }
13
13
  export interface SidebarNavigationProps {
14
- title?: string;
14
+ title?: ReactNode;
15
15
  pages: (SidebarNavigationPage | 'separator')[];
16
16
  showTitle?: boolean;
17
17
  disableRouteReporting?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decky/ui",
3
- "version": "4.9.1",
3
+ "version": "4.9.2",
4
4
  "description": "A library for interacting with the Steam frontend in Decky plugins and elsewhere.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -16,7 +16,7 @@ export interface SidebarNavigationPage {
16
16
  }
17
17
 
18
18
  export interface SidebarNavigationProps {
19
- title?: string;
19
+ title?: ReactNode;
20
20
  pages: (SidebarNavigationPage | 'separator')[];
21
21
  showTitle?: boolean;
22
22
  disableRouteReporting?: boolean;