@fluid-app/portal-sdk 0.1.264 → 0.1.266
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-ulyB4v7S.mjs → MessagingScreen-BHpzjYfI.mjs} +1 -0
- package/dist/{ProfileScreen-CLs7I118.mjs → ProfileScreen-LIDM91At.mjs} +1 -0
- package/dist/{ShareablesScreen-CpMBwPc7.mjs → ShareablesScreen-DN7qFaOj.mjs} +2 -0
- package/dist/{ShopScreen-Dxwt-CT6.mjs → ShopScreen-K4b5sK31.mjs} +2 -0
- package/dist/index.cjs +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +11 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +21 -21
package/dist/index.mjs
CHANGED
|
@@ -1131,7 +1131,9 @@ function getDefaultNavigation() {
|
|
|
1131
1131
|
systemNavItem("shop"),
|
|
1132
1132
|
systemNavItem("messages"),
|
|
1133
1133
|
systemNavItem("contacts"),
|
|
1134
|
-
systemNavItem("
|
|
1134
|
+
systemNavItem("profile"),
|
|
1135
|
+
systemNavItem("orders"),
|
|
1136
|
+
systemNavItem("subscriptions"),
|
|
1135
1137
|
sectionHeader("Marketing Assets"),
|
|
1136
1138
|
systemNavItem("share/products")
|
|
1137
1139
|
];
|
|
@@ -2064,14 +2066,14 @@ function BuilderScreenViewImpl({ screen, className }) {
|
|
|
2064
2066
|
const BuilderScreenView = memo(BuilderScreenViewImpl);
|
|
2065
2067
|
//#endregion
|
|
2066
2068
|
//#region src/shell/system-screen-map.ts
|
|
2067
|
-
const ProfileScreen$1 = lazy(() => import("./ProfileScreen-
|
|
2069
|
+
const ProfileScreen$1 = lazy(() => import("./ProfileScreen-LIDM91At.mjs").then((m) => ({ default: m.ProfileScreen })));
|
|
2068
2070
|
const OrdersScreen$1 = lazy(() => import("./OrdersScreen-D97Q-_Aj.mjs").then((n) => n.n).then((m) => ({ default: m.OrdersScreen })));
|
|
2069
2071
|
const SubscriptionsScreen$1 = lazy(() => import("./SubscriptionsScreen-D6ihqFXV.mjs").then((n) => n.n).then((m) => ({ default: m.SubscriptionsScreen })));
|
|
2070
|
-
const MessagingScreen$1 = lazy(() => import("./MessagingScreen-
|
|
2072
|
+
const MessagingScreen$1 = lazy(() => import("./MessagingScreen-BHpzjYfI.mjs").then((m) => ({ default: m.MessagingScreen })));
|
|
2071
2073
|
const ContactsScreen$1 = lazy(() => import("./ContactsScreen-DHq-iKqA.mjs").then((n) => n.n).then((m) => ({ default: m.ContactsScreen })));
|
|
2072
|
-
const ShopScreen$1 = lazy(() => import("./ShopScreen-
|
|
2074
|
+
const ShopScreen$1 = lazy(() => import("./ShopScreen-K4b5sK31.mjs").then((m) => ({ default: m.ShopScreen })));
|
|
2073
2075
|
const CustomersScreen$1 = lazy(() => import("./CustomersScreen-COYZv9YJ.mjs").then((n) => n.n).then((m) => ({ default: m.CustomersScreen })));
|
|
2074
|
-
const ShareablesScreen$1 = lazy(() => import("./ShareablesScreen-
|
|
2076
|
+
const ShareablesScreen$1 = lazy(() => import("./ShareablesScreen-DN7qFaOj.mjs").then((m) => ({ default: m.ShareablesScreen })));
|
|
2075
2077
|
const MySiteScreen$1 = lazy(() => import("./MySiteScreen-UnihGvkl.mjs").then((n) => n.n).then((m) => ({ default: m.MySiteScreen })));
|
|
2076
2078
|
const UpgradeScreen = lazy(() => import("./UpgradeScreen-QDtih375.mjs").then((n) => n.t).then((m) => ({ default: m.UpgradeScreen })));
|
|
2077
2079
|
const AppDownloadScreen = lazy(() => import("./AppDownloadScreen-Dgo-7tzQ.mjs").then((n) => n.t).then((m) => ({ default: m.AppDownloadScreen })));
|
|
@@ -3724,15 +3726,15 @@ z.object({
|
|
|
3724
3726
|
//#endregion
|
|
3725
3727
|
//#region src/screens/index.ts
|
|
3726
3728
|
const screenPropertySchemas = {
|
|
3727
|
-
ProfileScreen: () => import("./ProfileScreen-
|
|
3728
|
-
MessagingScreen: () => import("./MessagingScreen-
|
|
3729
|
+
ProfileScreen: () => import("./ProfileScreen-LIDM91At.mjs").then((m) => m.profileScreenPropertySchema),
|
|
3730
|
+
MessagingScreen: () => import("./MessagingScreen-BHpzjYfI.mjs").then((m) => m.messagingScreenPropertySchema),
|
|
3729
3731
|
ContactsScreen: () => import("./ContactsScreen-DHq-iKqA.mjs").then((n) => n.n).then((m) => m.contactsScreenPropertySchema),
|
|
3730
3732
|
OrdersScreen: () => import("./OrdersScreen-D97Q-_Aj.mjs").then((n) => n.n).then((m) => m.ordersScreenPropertySchema),
|
|
3731
3733
|
SubscriptionsScreen: () => import("./SubscriptionsScreen-D6ihqFXV.mjs").then((n) => n.n).then((m) => m.subscriptionsScreenPropertySchema),
|
|
3732
3734
|
CustomersScreen: () => import("./CustomersScreen-COYZv9YJ.mjs").then((n) => n.n).then((m) => m.customersScreenPropertySchema),
|
|
3733
3735
|
MySiteScreen: () => import("./MySiteScreen-UnihGvkl.mjs").then((n) => n.n).then((m) => m.mySiteScreenPropertySchema),
|
|
3734
|
-
ShareablesScreen: () => import("./ShareablesScreen-
|
|
3735
|
-
ShopScreen: () => import("./ShopScreen-
|
|
3736
|
+
ShareablesScreen: () => import("./ShareablesScreen-DN7qFaOj.mjs").then((m) => m.shareablesScreenPropertySchema),
|
|
3737
|
+
ShopScreen: () => import("./ShopScreen-K4b5sK31.mjs").then((m) => m.shopScreenPropertySchema),
|
|
3736
3738
|
UpgradeScreen: () => import("./UpgradeScreen-QDtih375.mjs").then((n) => n.t).then((m) => m.upgradeScreenPropertySchema),
|
|
3737
3739
|
AppDownloadScreen: () => import("./AppDownloadScreen-Dgo-7tzQ.mjs").then((n) => n.t).then((m) => m.appDownloadScreenPropertySchema)
|
|
3738
3740
|
};
|