@bobfrankston/rmfmail 1.1.102 → 1.1.103
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 +1 -1
- package/client/app.bundle.js.map +2 -2
- package/client/app.js +14 -8
- package/client/app.js.map +1 -1
- package/client/app.ts +14 -8
- package/client/compose/compose.bundle.js +3 -2
- package/client/compose/compose.bundle.js.map +2 -2
- package/client/compose/compose.js +12 -8
- package/client/compose/compose.js.map +1 -1
- package/client/compose/compose.ts +13 -9
- package/package.json +5 -5
- package/packages/mailx-core/index.d.ts +1 -0
- package/packages/mailx-core/index.d.ts.map +1 -1
- package/packages/mailx-store/db.d.ts +1 -0
- package/packages/mailx-store/db.d.ts.map +1 -1
- package/packages/mailx-store/db.js +31 -16
- package/packages/mailx-store/db.js.map +1 -1
- package/packages/mailx-store/db.ts +27 -15
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-47276 → node_modules.npmglobalize-stash-22936}/.package-lock.json +0 -0
package/client/app.bundle.js
CHANGED
|
@@ -8705,7 +8705,7 @@ document.addEventListener("keydown", (e) => {
|
|
|
8705
8705
|
const editable = t?.isContentEditable;
|
|
8706
8706
|
const inEditable = tag === "INPUT" || tag === "TEXTAREA" || tag === "SELECT" || editable;
|
|
8707
8707
|
const listSelectionCount = document.querySelectorAll("#ml-body .ml-row.selected").length;
|
|
8708
|
-
if (inEditable && listSelectionCount
|
|
8708
|
+
if (inEditable && listSelectionCount <= 1) return;
|
|
8709
8709
|
e.preventDefault();
|
|
8710
8710
|
deleteSelection();
|
|
8711
8711
|
}
|