@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.
Files changed (27) hide show
  1. package/dist/admin/AdminAppIndex.pack.js +4 -3
  2. package/dist/admin/AdminAppIndex.pack.js.map +1 -1
  3. package/dist/admin/AdminAppIndex.pack.min.js +1 -1
  4. package/dist/admin/AdminAppIndex.pack.min.js.map +1 -1
  5. package/dist/public/channel/ChannelApp.pack.js +4 -3
  6. package/dist/public/channel/ChannelApp.pack.js.map +1 -1
  7. package/dist/public/channel/ChannelApp.pack.min.js +1 -1
  8. package/dist/public/channel/ChannelApp.pack.min.js.map +1 -1
  9. package/dist/public/store/StoreApp.pack.js +4 -3
  10. package/dist/public/store/StoreApp.pack.js.map +1 -1
  11. package/dist/public/store/StoreApp.pack.min.js +1 -1
  12. package/dist/public/store/StoreApp.pack.min.js.map +1 -1
  13. package/dist/site-editor-app/SiteEditorApp.pack.js +4 -3
  14. package/dist/site-editor-app/SiteEditorApp.pack.js.map +1 -1
  15. package/dist/site-editor-app/SiteEditorApp.pack.min.js +1 -1
  16. package/dist/site-editor-app/SiteEditorApp.pack.min.js.map +1 -1
  17. package/dist/web/AppIndex.pack.js +4 -3
  18. package/dist/web/AppIndex.pack.js.map +1 -1
  19. package/dist/web/AppIndex.pack.min.js +1 -1
  20. package/dist/web/AppIndex.pack.min.js.map +1 -1
  21. package/node_modules/@web-atoms/web-controls/dist/mobile-app/MobileApp.d.ts.map +1 -1
  22. package/node_modules/@web-atoms/web-controls/dist/mobile-app/MobileApp.js +4 -3
  23. package/node_modules/@web-atoms/web-controls/dist/mobile-app/MobileApp.js.map +1 -1
  24. package/node_modules/@web-atoms/web-controls/dist/tsconfig.tsbuildinfo +1 -1
  25. package/node_modules/@web-atoms/web-controls/package.json +1 -1
  26. package/node_modules/@web-atoms/web-controls/src/mobile-app/MobileApp.tsx +4 -3
  27. package/package.json +2 -2
@@ -9106,12 +9106,13 @@ System.register(["tslib", "@web-atoms/core/dist/core/AtomLoader", "@web-atoms/co
9106
9106
  this.element.dataset.drawerPage = "drawer-page";
9107
9107
  this.bindEvent(this.element, "click", e => {
9108
9108
  const target = e.target;
9109
- if (/input/i.test(target.tagName) && !/button|submit/i.test(target.type)) {
9109
+ if (e.defaultPrevented) {
9110
9110
  return;
9111
9111
  }
9112
- if (e.defaultPrevented) {
9113
- this.closeDrawer();
9112
+ if (/input/i.test(target.tagName) && !/button|submit/i.test(target.type)) {
9113
+ return;
9114
9114
  }
9115
+ this.closeDrawer();
9115
9116
  });
9116
9117
  this.runAfterInit(() => this.app.runAsync(() => {
9117
9118
  var _b;