@fluid-app/portal-sdk 0.1.25 → 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/index.cjs +8 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +8 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -9
package/dist/index.mjs
CHANGED
|
@@ -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
|
/**
|