@social-mail/social-mail-client 1.8.421 → 1.8.423
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 +9 -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/public/channel/ChannelApp.pack.js +9 -1
- package/dist/public/channel/ChannelApp.pack.js.map +1 -1
- package/dist/public/channel/ChannelApp.pack.min.js +1 -1
- package/dist/public/channel/ChannelApp.pack.min.js.map +1 -1
- package/dist/public/store/StoreApp.pack.js +9 -1
- package/dist/public/store/StoreApp.pack.js.map +1 -1
- package/dist/public/store/StoreApp.pack.min.js +1 -1
- package/dist/public/store/StoreApp.pack.min.js.map +1 -1
- package/dist/site-editor/editor/ui/SelectionUI.d.ts.map +1 -1
- package/dist/site-editor/editor/ui/SelectionUI.js +3 -0
- package/dist/site-editor/editor/ui/SelectionUI.js.map +1 -1
- package/dist/site-editor/suggestions/properties/layouts.d.ts.map +1 -1
- package/dist/site-editor/suggestions/properties/layouts.js +1 -1
- package/dist/site-editor/suggestions/properties/layouts.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js +13 -2
- 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 +9 -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/node_modules/@web-atoms/web-controls/dist/mobile-app/MobileApp.d.ts.map +1 -1
- package/node_modules/@web-atoms/web-controls/dist/mobile-app/MobileApp.js +9 -1
- package/node_modules/@web-atoms/web-controls/dist/mobile-app/MobileApp.js.map +1 -1
- package/node_modules/@web-atoms/web-controls/dist/tsconfig.tsbuildinfo +1 -1
- package/node_modules/@web-atoms/web-controls/package.json +1 -1
- package/node_modules/@web-atoms/web-controls/src/mobile-app/MobileApp.tsx +9 -1
- package/package.json +2 -2
- package/src/site-editor/editor/ui/SelectionUI.tsx +5 -0
- package/src/site-editor/suggestions/properties/layouts.ts +1 -0
- package/styler-lite/styler.css +1 -1
- package/styler-lite/styler.css.map +1 -1
- package/styler-lite/styles/layouts/canvas.css +12 -0
|
@@ -9143,7 +9143,15 @@ System.register(["tslib", "@web-atoms/core/dist/core/AtomLoader", "@web-atoms/co
|
|
|
9143
9143
|
init() {}
|
|
9144
9144
|
preCreate() {
|
|
9145
9145
|
this.element.dataset.drawerPage = "drawer-page";
|
|
9146
|
-
this.bindEvent(this.element, "click", e =>
|
|
9146
|
+
this.bindEvent(this.element, "click", e => {
|
|
9147
|
+
const target = e.target;
|
|
9148
|
+
if (/input/i.test(target.tagName) && !/button|submit/i.test(target.type)) {
|
|
9149
|
+
return;
|
|
9150
|
+
}
|
|
9151
|
+
if (e.defaultPrevented) {
|
|
9152
|
+
this.closeDrawer();
|
|
9153
|
+
}
|
|
9154
|
+
});
|
|
9147
9155
|
this.runAfterInit(() => this.app.runAsync(() => {
|
|
9148
9156
|
var _b;
|
|
9149
9157
|
return (_b = this.init) === null || _b === void 0 ? void 0 : _b.call(this);
|