@fluid-app/portal-sdk 0.1.241 → 0.1.242
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/index.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +16 -16
package/dist/index.cjs
CHANGED
|
@@ -2087,6 +2087,7 @@ const UpgradeScreen = (0, react.lazy)(() => Promise.resolve().then(() => require
|
|
|
2087
2087
|
const AppDownloadScreen = (0, react.lazy)(() => Promise.resolve().then(() => require("./AppDownloadScreen-BXnl23_d.cjs")).then((n) => n.AppDownloadScreen_exports).then((m) => ({ default: m.AppDownloadScreen })));
|
|
2088
2088
|
const SYSTEM_SLUG_SCREEN_MAP = {
|
|
2089
2089
|
profile: ProfileScreen$1,
|
|
2090
|
+
account: ProfileScreen$1,
|
|
2090
2091
|
orders: OrdersScreen$1,
|
|
2091
2092
|
subscriptions: SubscriptionsScreen$1,
|
|
2092
2093
|
messages: MessagingScreen$1,
|
|
@@ -2123,7 +2124,7 @@ function findScreenByPrefix(slug) {
|
|
|
2123
2124
|
}
|
|
2124
2125
|
//#endregion
|
|
2125
2126
|
//#region src/shell/PageRouter.tsx
|
|
2126
|
-
const ACCOUNT_SLUGS = new Set(ACCOUNT_MANAGE_SLUGS);
|
|
2127
|
+
const ACCOUNT_SLUGS = new Set([...ACCOUNT_MANAGE_SLUGS, "account"]);
|
|
2127
2128
|
/**
|
|
2128
2129
|
* Returns true if any nav slug resolves to the given system screen component.
|
|
2129
2130
|
* Lets detail routes (e.g. `share/product/:id`) render when their listing
|