@decky/ui 4.11.2 → 4.11.3
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.
package/dist/components/Tabs.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { findModuleByExport } from '../webpack';
|
|
2
2
|
const tabsModule = findModuleByExport(e => e?.toString?.()?.includes(".TabRowTabs") && e?.toString?.()?.includes("activeTab:"));
|
|
3
|
-
export const Tabs = tabsModule && Object.values(tabsModule).find((e) => e?.type?.toString?.()?.includes("(
|
|
3
|
+
export const Tabs = tabsModule && Object.values(tabsModule).find((e) => e?.type?.toString?.()?.includes("(function()"));
|
package/package.json
CHANGED
package/src/components/Tabs.ts
CHANGED
|
@@ -67,4 +67,4 @@ const tabsModule = findModuleByExport(e => e?.toString?.()?.includes(".TabRowTab
|
|
|
67
67
|
/**
|
|
68
68
|
* Tabs component as used in the library and media tabs. See {@link TabsProps}.
|
|
69
69
|
*/
|
|
70
|
-
export const Tabs = tabsModule && Object.values(tabsModule).find((e: any) => e?.type?.toString?.()?.includes("(
|
|
70
|
+
export const Tabs = tabsModule && Object.values(tabsModule).find((e: any) => e?.type?.toString?.()?.includes("(function()")) as FC<TabsProps>;
|