Compare commits

...

2 Commits

Author SHA1 Message Date
semantic-release-bot
b688bc3544 chore(release): 4.11.3 [CI SKIP] 2026-03-22 00:34:53 +00:00
Jozen Blue Martinez
3126dd3e04 fix(Tabs): update for latest beta (#129) 2026-03-21 20:34:27 -04:00
3 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
## [4.11.3](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v4.11.2...v4.11.3) (2026-03-22)
### Bug Fixes
* **Tabs:** update for latest beta ([#129](https://github.com/SteamDeckHomebrew/decky-frontend-lib/issues/129)) ([3126dd3](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/3126dd3e040eaef00eb0362b69efb143d7e01030))
## [4.11.2](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v4.11.1...v4.11.2) (2026-03-21)

View File

@@ -1,6 +1,6 @@
{
"name": "@decky/ui",
"version": "4.11.2",
"version": "4.11.3",
"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

@@ -67,4 +67,4 @@ const tabsModule = findModuleByExport(e => e?.toString?.()?.includes(".TabRowTab
/**
* Tabs component as used in the library and media tabs. See {@link TabsProps}.
*/
export const Tabs = tabsModule && Object.values(tabsModule).find((e: any) => e?.type?.toString?.()?.includes("((function()")) as FC<TabsProps>;
export const Tabs = tabsModule && Object.values(tabsModule).find((e: any) => e?.type?.toString?.()?.includes("(function()")) as FC<TabsProps>;