@fluid-app/portal-sdk 0.1.26 → 0.1.27
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/{MessagingScreen-D7xu52lk.mjs → MessagingScreen-9VsNB4fn.mjs} +0 -1
- package/dist/{ProductsScreen-FZS6vPqz.mjs → ProductsScreen-BKDPaw5H.mjs} +0 -2
- package/dist/{ShareablesScreen-D2iE3ytr.mjs → ShareablesScreen-ClC3YfjZ.mjs} +0 -2
- package/dist/index.cjs +8 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +14 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -11
package/dist/index.mjs
CHANGED
|
@@ -2029,12 +2029,12 @@ function RequireAuth({ children, fallback = /* @__PURE__ */ jsx(AuthLoading, {})
|
|
|
2029
2029
|
//#region src/screens/index.ts
|
|
2030
2030
|
const screenPropertySchemas = {
|
|
2031
2031
|
AccountScreen: () => import("./AccountScreen-BigIbqV5.mjs").then((n) => n.n).then((m) => m.accountScreenPropertySchema),
|
|
2032
|
-
MessagingScreen: () => import("./MessagingScreen-
|
|
2032
|
+
MessagingScreen: () => import("./MessagingScreen-9VsNB4fn.mjs").then((m) => m.messagingScreenPropertySchema),
|
|
2033
2033
|
ContactsScreen: () => import("./ContactsScreen-BicHZ37M.mjs").then((n) => n.n).then((m) => m.contactsScreenPropertySchema),
|
|
2034
2034
|
OrdersScreen: () => import("./OrdersScreen-DGt-CTBS.mjs").then((n) => n.n).then((m) => m.ordersScreenPropertySchema),
|
|
2035
2035
|
CustomersScreen: () => import("./CustomersScreen-Brz5zLkq.mjs").then((n) => n.n).then((m) => m.customersScreenPropertySchema),
|
|
2036
|
-
ProductsScreen: () => import("./ProductsScreen-
|
|
2037
|
-
ShareablesScreen: () => import("./ShareablesScreen-
|
|
2036
|
+
ProductsScreen: () => import("./ProductsScreen-BKDPaw5H.mjs").then((m) => m.productsScreenPropertySchema),
|
|
2037
|
+
ShareablesScreen: () => import("./ShareablesScreen-ClC3YfjZ.mjs").then((m) => m.shareablesScreenPropertySchema),
|
|
2038
2038
|
ShopScreen: () => import("./ShopScreen-BMCb4k-O.mjs").then((n) => n.n).then((m) => m.shopScreenPropertySchema)
|
|
2039
2039
|
};
|
|
2040
2040
|
/**
|
|
@@ -2705,7 +2705,8 @@ const SYSTEM_NAVIGATION_SLUGS = [
|
|
|
2705
2705
|
"share/media",
|
|
2706
2706
|
"share/playlists",
|
|
2707
2707
|
"share/products",
|
|
2708
|
-
"shop"
|
|
2708
|
+
"shop",
|
|
2709
|
+
"upgrade"
|
|
2709
2710
|
];
|
|
2710
2711
|
const SYSTEM_NAVIGATION_ITEMS = {
|
|
2711
2712
|
account: {
|
|
@@ -2785,6 +2786,12 @@ const SYSTEM_NAVIGATION_ITEMS = {
|
|
|
2785
2786
|
label: "Subscriptions",
|
|
2786
2787
|
icon: "arrows-repeat",
|
|
2787
2788
|
section: "User"
|
|
2789
|
+
},
|
|
2790
|
+
upgrade: {
|
|
2791
|
+
slug: "upgrade",
|
|
2792
|
+
label: "Upgrade",
|
|
2793
|
+
icon: "arrow-up-from-bracket",
|
|
2794
|
+
section: "User"
|
|
2788
2795
|
}
|
|
2789
2796
|
};
|
|
2790
2797
|
/**
|
|
@@ -3489,12 +3496,12 @@ const BuilderScreenView = memo(BuilderScreenViewImpl);
|
|
|
3489
3496
|
//#endregion
|
|
3490
3497
|
//#region src/shell/PageRouter.tsx
|
|
3491
3498
|
const AccountScreen$1 = lazy(() => import("./AccountScreen-BigIbqV5.mjs").then((n) => n.n).then((m) => ({ default: m.AccountScreen })));
|
|
3492
|
-
const MessagingScreen$1 = lazy(() => import("./MessagingScreen-
|
|
3499
|
+
const MessagingScreen$1 = lazy(() => import("./MessagingScreen-9VsNB4fn.mjs").then((m) => ({ default: m.MessagingScreen })));
|
|
3493
3500
|
const ContactsScreen$1 = lazy(() => import("./ContactsScreen-BicHZ37M.mjs").then((n) => n.n).then((m) => ({ default: m.ContactsScreen })));
|
|
3494
3501
|
const ShopScreen$1 = lazy(() => import("./ShopScreen-BMCb4k-O.mjs").then((n) => n.n).then((m) => ({ default: m.ShopScreen })));
|
|
3495
3502
|
const CustomersScreen$1 = lazy(() => import("./CustomersScreen-Brz5zLkq.mjs").then((n) => n.n).then((m) => ({ default: m.CustomersScreen })));
|
|
3496
|
-
const ProductsScreen$1 = lazy(() => import("./ProductsScreen-
|
|
3497
|
-
const ShareablesScreen$1 = lazy(() => import("./ShareablesScreen-
|
|
3503
|
+
const ProductsScreen$1 = lazy(() => import("./ProductsScreen-BKDPaw5H.mjs").then((m) => ({ default: m.ProductsScreen })));
|
|
3504
|
+
const ShareablesScreen$1 = lazy(() => import("./ShareablesScreen-ClC3YfjZ.mjs").then((m) => ({ default: m.ShareablesScreen })));
|
|
3498
3505
|
const SYSTEM_SLUG_SCREEN_MAP = {
|
|
3499
3506
|
account: AccountScreen$1,
|
|
3500
3507
|
"account/profile": AccountScreen$1,
|