@steedos/webapp 3.0.0-beta.77 → 3.0.0-beta.78
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.
|
@@ -57086,7 +57086,7 @@ Try polyfilling it using "@formatjs/intl-displaynames"
|
|
|
57086
57086
|
const IframeView = () => {
|
|
57087
57087
|
const { appId, tabId } = useParams();
|
|
57088
57088
|
const [searchParams] = useSearchParams();
|
|
57089
|
-
const iframeSrc = searchParams.get("url");
|
|
57089
|
+
const iframeSrc = decodeURIComponent(searchParams.get("url") || "");
|
|
57090
57090
|
console.log("IframeView iframeSrc:", iframeSrc);
|
|
57091
57091
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(AmisRender, { schema: {
|
|
57092
57092
|
"type": "page",
|
package/dist/index.html
CHANGED
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
window.loadCss = loadCss;
|
|
61
61
|
|
|
62
62
|
</script>
|
|
63
|
-
<script type="module" crossorigin src="/assets/index-
|
|
63
|
+
<script type="module" crossorigin src="/assets/index-BoYaSgrS.js"></script>
|
|
64
64
|
</head>
|
|
65
65
|
<body class="skin-blue-light fixed steedos sidebar-mini three-columns" >
|
|
66
66
|
<div id="root" class="steedos skin-blue-light creator h-full flex flex-col relative overflow-hidden sm:bg-gray-50"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/webapp",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.78",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"access": "public"
|
|
70
70
|
},
|
|
71
71
|
"repository": "https://github.com/steedos/app-builder/tree/master/apps/accounts",
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "0055304be6298b347bcd7b61c4071328c00b87ed"
|
|
73
73
|
}
|