@bobfrankston/rmfmail 1.2.8 → 1.2.9
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/client/app.bundle.js +4 -1
- package/client/app.bundle.js.map +2 -2
- package/client/components/folder-tree.js +13 -1
- package/client/components/folder-tree.js.map +1 -1
- package/client/components/folder-tree.ts +12 -1
- package/package.json +3 -3
- package/packages/mailx-store/db.d.ts.map +1 -1
- package/packages/mailx-store/db.js +10 -0
- package/packages/mailx-store/db.js.map +1 -1
- package/packages/mailx-store/db.ts +10 -0
package/client/app.bundle.js
CHANGED
|
@@ -6456,7 +6456,10 @@ function renderNode(node, container, depth) {
|
|
|
6456
6456
|
}, DRAG_HOVER_EXPAND_MS);
|
|
6457
6457
|
}
|
|
6458
6458
|
});
|
|
6459
|
-
folderEl.addEventListener("dragleave", () => {
|
|
6459
|
+
folderEl.addEventListener("dragleave", (e) => {
|
|
6460
|
+
const to = e.relatedTarget;
|
|
6461
|
+
if (to && folderEl.contains(to))
|
|
6462
|
+
return;
|
|
6460
6463
|
folderEl.classList.remove("drop-target");
|
|
6461
6464
|
if (dragExpandTimer) {
|
|
6462
6465
|
clearTimeout(dragExpandTimer);
|