Compare commits

...

6 Commits

Author SHA1 Message Date
semantic-release-bot
9c34100215 chore(release): 4.9.0 [CI SKIP] 2025-01-02 20:11:27 +00:00
Party Wumpus
a1507ac55b Merge pull request #115 from alvaro-cuesta/feat/menu-separator
feat: add `MenuSeparator` component
2025-01-02 20:11:00 +00:00
Álvaro Cuesta
484a882015 feat: add MenuSeparator component 2024-12-27 14:30:35 +01:00
semantic-release-bot
200125cb98 chore(release): 4.8.3 [CI SKIP] 2024-12-14 03:28:48 +00:00
AAGaming
5ab8472ffe Merge branch 'main' of github.com:steamdeckhomebrew/decky-frontend-lib 2024-12-13 22:28:22 -05:00
AAGaming
a43cd7f3c5 fix(utils): add new nav root name 2024-12-13 22:27:26 -05:00
4 changed files with 20 additions and 2 deletions

View File

@@ -1,3 +1,17 @@
# [4.9.0](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v4.8.3...v4.9.0) (2025-01-02)
### Features
* add MenuSeparator component ([484a882](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/484a882015ceb51c2c80e08151e79056e751ac15))
## [4.8.3](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v4.8.2...v4.8.3) (2024-12-14)
### Bug Fixes
* **utils:** add new nav root name ([a43cd7f](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/a43cd7f3c56a2e30e332417e5b4abde8f4492be1))
## [4.8.2](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v4.8.1...v4.8.2) (2024-11-20)

View File

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

@@ -45,6 +45,10 @@ export const MenuItem: FC<MenuItemProps> = findModuleExport(
e?.render?.toString?.()?.includes('bPlayAudio:') || (e?.prototype?.OnOKButton && e?.prototype?.OnMouseEnter),
);
export const MenuSeparator: FC = findModuleExport(
(e: Export) => typeof e === 'function' && /className:.+?\.ContextMenuSeparator/.test(e.toString()),
);
/*
all().map(m => {
if (typeof m !== "object") return undefined;

View File

@@ -25,7 +25,7 @@ export function findSP(): Window {
if (document.title == 'SP') return window;
// new (SP as popup)
const navTrees = getGamepadNavigationTrees();
return navTrees?.find((x: any) => x.m_ID == 'root_1_')?.Root?.Element?.ownerDocument?.defaultView;
return navTrees?.find((x: any) => x.m_ID == 'GamepadUI_Full_Root' || x.m_ID == 'root_1_')?.Root?.Element?.ownerDocument?.defaultView;
}
/**