@social-mail/social-mail-client 1.8.293 → 1.8.295
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/admin/AdminAppIndex.pack.js +3 -1
- package/dist/admin/AdminAppIndex.pack.js.map +1 -1
- package/dist/admin/AdminAppIndex.pack.min.js +1 -1
- package/dist/admin/AdminAppIndex.pack.min.js.map +1 -1
- package/dist/common/pages/websites/detail/WebSiteDetail.js +3 -1
- package/dist/common/pages/websites/detail/WebSiteDetail.js.map +1 -1
- package/dist/site-editor/editor/SelectedElement.d.ts.map +1 -1
- package/dist/site-editor/editor/SelectedElement.js +4 -2
- package/dist/site-editor/editor/SelectedElement.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js +7 -3
- package/dist/site-editor-app/SiteEditorApp.pack.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/web/AppIndex.pack.js +3 -1
- package/dist/web/AppIndex.pack.js.map +1 -1
- package/dist/web/AppIndex.pack.min.js +1 -1
- package/dist/web/AppIndex.pack.min.js.map +1 -1
- package/package.json +1 -1
- package/src/common/pages/websites/detail/WebSiteDetail.tsx +1 -1
- package/src/site-editor/editor/SelectedElement.tsx +4 -2
|
@@ -42006,7 +42006,9 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
|
|
|
42006
42006
|
href: AppUrlService.editWebSite(this.site),
|
|
42007
42007
|
target: `_web_${this.site.folderID}`
|
|
42008
42008
|
}), XNode.create(InlinePopupButton, {
|
|
42009
|
-
popup: () => XNode.create("div",
|
|
42009
|
+
popup: () => XNode.create("div", {
|
|
42010
|
+
"data-layout": "vertical-flex-stretch-items"
|
|
42011
|
+
}, " ", ...this.site.hosts.map(h => XNode.create("a", {
|
|
42010
42012
|
href: `https://${h.host}`,
|
|
42011
42013
|
target: "_blank"
|
|
42012
42014
|
}, h.host))),
|