@social-mail/social-mail-client 1.8.432 → 1.8.433
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 +4 -3
- 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 +4 -3
- 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 +4 -3
- 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-app/SiteEditorApp.pack.js +4 -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/web/AppIndex.pack.js +4 -3
- 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 +4 -3
- 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 +4 -3
- package/package.json +2 -2
|
@@ -9146,12 +9146,13 @@ System.register(["tslib", "@web-atoms/core/dist/core/AtomLoader", "@web-atoms/co
|
|
|
9146
9146
|
this.element.dataset.drawerPage = "drawer-page";
|
|
9147
9147
|
this.bindEvent(this.element, "click", e => {
|
|
9148
9148
|
const target = e.target;
|
|
9149
|
-
if (
|
|
9149
|
+
if (e.defaultPrevented) {
|
|
9150
9150
|
return;
|
|
9151
9151
|
}
|
|
9152
|
-
if (
|
|
9153
|
-
|
|
9152
|
+
if (/input/i.test(target.tagName) && !/button|submit/i.test(target.type)) {
|
|
9153
|
+
return;
|
|
9154
9154
|
}
|
|
9155
|
+
this.closeDrawer();
|
|
9155
9156
|
});
|
|
9156
9157
|
this.runAfterInit(() => this.app.runAsync(() => {
|
|
9157
9158
|
var _b;
|