Compare commits

...

4 Commits

Author SHA1 Message Date
semantic-release-bot
723e2ff76e chore(release): 4.7.4 [CI SKIP] 2024-10-04 17:16:01 +00:00
AAGaming
241b22cad7 fix(DialogCheckbox): don't access getters to prevent their side effects from breaking the component 2024-10-04 13:15:29 -04:00
semantic-release-bot
93c59d8026 chore(release): 4.7.3 [CI SKIP] 2024-10-03 20:50:33 +00:00
AAGaming
0f9fb5a3b8 fix(components): fix missing components on oct 2 2024 beta 2024-10-03 16:46:50 -04:00
6 changed files with 34 additions and 24 deletions

View File

@@ -1,3 +1,17 @@
## [4.7.4](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v4.7.3...v4.7.4) (2024-10-04)
### Bug Fixes
* **DialogCheckbox:** don't access getters to prevent their side effects from breaking the component ([241b22c](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/241b22cad711621a1695dfd11da857f13c3fffdf))
## [4.7.3](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v4.7.2...v4.7.3) (2024-10-03)
### Bug Fixes
* **components:** fix missing components on oct 2 2024 beta ([0f9fb5a](https://github.com/SteamDeckHomebrew/decky-frontend-lib/commit/0f9fb5a3b8ef4f9978025a28323ab080fb0e7a4c))
## [4.7.2](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v4.7.1...v4.7.2) (2024-09-16) ## [4.7.2](https://github.com/SteamDeckHomebrew/decky-frontend-lib/compare/v4.7.1...v4.7.2) (2024-09-16)

View File

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

View File

@@ -1,6 +1,6 @@
import { FC, ReactNode } from 'react'; import { FC, ReactNode } from 'react';
import { findModule } from '../webpack'; import { findModuleExport } from '../webpack';
import { DialogCommonProps } from './Dialog'; import { DialogCommonProps } from './Dialog';
import { FooterLegendProps } from './FooterLegend'; import { FooterLegendProps } from './FooterLegend';
@@ -18,19 +18,15 @@ export interface DialogCheckboxProps extends DialogCommonProps, FooterLegendProp
onClick?(evt: Event): void; onClick?(evt: Event): void;
} }
export const DialogCheckbox = Object.values( // Do not access KeyDown, SetChecked, Toggle here as they are getters and accessing them outside of a render breaks them globally
findModule((m: any) => { export const DialogCheckbox = findModuleExport(e =>
if (typeof m !== 'object') return false; e.prototype &&
for (const prop in m) { "GetPanelElementProps" in e?.prototype &&
if (m[prop]?.prototype?.GetPanelElementProps) return true; "SetChecked" in e?.prototype &&
} "Toggle" in e?.prototype &&
return false; // beta || stable as of oct 2 2024
}), (e?.prototype?.render?.toString().includes('="DialogCheckbox"') || (
).find( e.contextType &&
(m: any) => e.prototype?.render?.toString().includes('fallback:')
m.contextType && ))
m.prototype?.render.toString().includes('fallback:') &&
m?.prototype?.SetChecked &&
m?.prototype?.Toggle &&
m?.prototype?.GetPanelElementProps,
) as FC<DialogCheckboxProps>; ) as FC<DialogCheckboxProps>;

View File

@@ -1,7 +1,7 @@
import { FC, ReactNode } from 'react'; import { FC, ReactNode } from 'react';
import { findSP } from '../utils'; import { findSP } from '../utils';
import { Export, findModule, findModuleByExport, findModuleExport } from '../webpack'; import { Export, findModule, findModuleDetailsByExport, findModuleExport } from '../webpack';
// All of the popout options + strTitle are related. Proper usage is not yet known... // All of the popout options + strTitle are related. Proper usage is not yet known...
export interface ShowModalProps { export interface ShowModalProps {
@@ -105,7 +105,7 @@ interface SimpleModalProps {
children: ReactNode; children: ReactNode;
} }
const ModalModule = findModuleByExport((e: Export) => e?.toString().includes('.ModalPosition,fallback:'), 5); const [ModalModule, _ModalPosition] = findModuleDetailsByExport((e: Export) => e?.toString().includes('.ModalPosition'), 5)
const ModalModuleProps = ModalModule ? Object.values(ModalModule) : []; const ModalModuleProps = ModalModule ? Object.values(ModalModule) : [];
@@ -114,6 +114,4 @@ export const SimpleModal = ModalModuleProps.find((prop) => {
return string?.includes('.ShowPortalModal()') && string?.includes('.OnElementReadyCallbacks.Register('); return string?.includes('.ShowPortalModal()') && string?.includes('.OnElementReadyCallbacks.Register(');
}) as FC<SimpleModalProps>; }) as FC<SimpleModalProps>;
export const ModalPosition = ModalModuleProps.find((prop) => export const ModalPosition = _ModalPosition as FC<SimpleModalProps>;
prop?.toString().includes('.ModalPosition,fallback:'),
) as FC<SimpleModalProps>;

View File

@@ -29,5 +29,6 @@ export interface SliderFieldProps extends ItemProps {
} }
export const SliderField = Object.values(CommonUIModule).find((mod: any) => export const SliderField = Object.values(CommonUIModule).find((mod: any) =>
mod?.toString()?.includes('SliderField,fallback'), // stable || beta as of oct 2 2024
mod?.toString()?.includes('SliderField,fallback') || mod?.toString()?.includes("SliderField\",")
) as FC<SliderFieldProps>; ) as FC<SliderFieldProps>;

View File

@@ -11,5 +11,6 @@ export interface ToggleFieldProps extends ItemProps {
} }
export const ToggleField = Object.values(CommonUIModule).find((mod: any) => export const ToggleField = Object.values(CommonUIModule).find((mod: any) =>
mod?.render?.toString()?.includes('ToggleField,fallback'), // stable || beta as of oct 2 2024
mod?.render?.toString()?.includes('ToggleField,fallback') || mod?.render?.toString()?.includes("ToggleField\",")
) as FC<ToggleFieldProps>; ) as FC<ToggleFieldProps>;