@social-mail/social-mail-client 1.8.421 → 1.8.422

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 (32) hide show
  1. package/dist/admin/AdminAppIndex.pack.js +9 -1
  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 +9 -1
  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 +9 -1
  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/editor/ui/SelectionUI.d.ts.map +1 -1
  14. package/dist/site-editor/editor/ui/SelectionUI.js +3 -0
  15. package/dist/site-editor/editor/ui/SelectionUI.js.map +1 -1
  16. package/dist/site-editor-app/SiteEditorApp.pack.js +12 -1
  17. package/dist/site-editor-app/SiteEditorApp.pack.js.map +1 -1
  18. package/dist/site-editor-app/SiteEditorApp.pack.min.js +1 -1
  19. package/dist/site-editor-app/SiteEditorApp.pack.min.js.map +1 -1
  20. package/dist/tsconfig.tsbuildinfo +1 -1
  21. package/dist/web/AppIndex.pack.js +9 -1
  22. package/dist/web/AppIndex.pack.js.map +1 -1
  23. package/dist/web/AppIndex.pack.min.js +1 -1
  24. package/dist/web/AppIndex.pack.min.js.map +1 -1
  25. package/node_modules/@web-atoms/web-controls/dist/mobile-app/MobileApp.d.ts.map +1 -1
  26. package/node_modules/@web-atoms/web-controls/dist/mobile-app/MobileApp.js +9 -1
  27. package/node_modules/@web-atoms/web-controls/dist/mobile-app/MobileApp.js.map +1 -1
  28. package/node_modules/@web-atoms/web-controls/dist/tsconfig.tsbuildinfo +1 -1
  29. package/node_modules/@web-atoms/web-controls/package.json +1 -1
  30. package/node_modules/@web-atoms/web-controls/src/mobile-app/MobileApp.tsx +9 -1
  31. package/package.json +2 -2
  32. package/src/site-editor/editor/ui/SelectionUI.tsx +5 -0
@@ -108,6 +108,8 @@ const beginDrag = (editor: HtmlPageEditor, element: HTMLElement) => {
108
108
  }, 1);
109
109
  };
110
110
 
111
+ const resume = () => d.resume();
112
+
111
113
  const commit = () => {
112
114
 
113
115
  d.resume();
@@ -153,6 +155,7 @@ const beginDrag = (editor: HtmlPageEditor, element: HTMLElement) => {
153
155
  return {
154
156
  move,
155
157
  commit,
158
+ resume,
156
159
  selectedElement,
157
160
  selectedParent,
158
161
  get changed() {
@@ -185,6 +188,8 @@ const setCapture = (editor: HtmlPageEditor, element: HTMLElement, e: PointerEven
185
188
  element.removeEventListener("pointermove", captureMove);
186
189
  element.removeEventListener("pointerup", release);
187
190
 
191
+ sc.resume();
192
+
188
193
  if (!sc.changed) {
189
194
 
190
195
  const { selectedElement, selectedParent } = sc;