@bobfrankston/rmfmail 1.1.58 → 1.1.65
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/android-bootstrap.bundle.js +408 -194
- package/client/android-bootstrap.bundle.js.map +4 -4
- package/client/app.bundle.js +10 -0
- package/client/app.bundle.js.map +3 -3
- package/client/components/alarms.js +7 -0
- package/client/components/alarms.js.map +1 -1
- package/client/components/alarms.ts +8 -1
- package/client/compose/compose.bundle.js +67 -2
- package/client/compose/compose.bundle.js.map +2 -2
- package/client/compose/compose.css +31 -0
- package/client/compose/compose.js +19 -7
- package/client/compose/compose.js.map +1 -1
- package/client/compose/compose.ts +19 -7
- package/client/compose/spellcheck.js +74 -1
- package/client/compose/spellcheck.js.map +1 -1
- package/client/compose/spellcheck.ts +62 -1
- package/package.json +1 -1
- package/packages/mailx-service/index.d.ts.map +1 -1
- package/packages/mailx-service/index.js +8 -45
- package/packages/mailx-service/index.js.map +1 -1
- package/packages/mailx-service/index.ts +8 -31
- package/packages/mailx-store-web/db.d.ts +4 -0
- package/packages/mailx-store-web/db.d.ts.map +1 -1
- package/packages/mailx-store-web/db.js +16 -2
- package/packages/mailx-store-web/db.js.map +1 -1
- package/packages/mailx-store-web/db.ts +17 -2
- package/packages/mailx-store-web/package.json +1 -1
- package/packages/mailx-store-web/web-service.d.ts +2 -2
- package/packages/mailx-store-web/web-service.d.ts.map +1 -1
- package/packages/mailx-store-web/web-service.js +20 -3
- package/packages/mailx-store-web/web-service.js.map +1 -1
- package/packages/mailx-store-web/web-service.ts +20 -3
- package/packages/mailx-types/contacts-config.d.ts +27 -0
- package/packages/mailx-types/contacts-config.d.ts.map +1 -0
- package/packages/mailx-types/contacts-config.js +67 -0
- package/packages/mailx-types/contacts-config.js.map +1 -0
- package/packages/mailx-types/contacts-config.ts +71 -0
- package/packages/mailx-types/index.d.ts +1 -0
- package/packages/mailx-types/index.d.ts.map +1 -1
- package/packages/mailx-types/index.js +2 -0
- package/packages/mailx-types/index.js.map +1 -1
- package/packages/mailx-types/index.ts +5 -0
- package/packages/mailx-types/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-20936 → node_modules.npmglobalize-stash-13452}/.package-lock.json +0 -0
package/client/app.bundle.js
CHANGED
|
@@ -718,6 +718,13 @@ var init_contact_rules = __esm({
|
|
|
718
718
|
}
|
|
719
719
|
});
|
|
720
720
|
|
|
721
|
+
// packages/mailx-types/contacts-config.js
|
|
722
|
+
var init_contacts_config = __esm({
|
|
723
|
+
"packages/mailx-types/contacts-config.js"() {
|
|
724
|
+
"use strict";
|
|
725
|
+
}
|
|
726
|
+
});
|
|
727
|
+
|
|
721
728
|
// packages/mailx-types/groups.js
|
|
722
729
|
var init_groups = __esm({
|
|
723
730
|
"packages/mailx-types/groups.js"() {
|
|
@@ -741,6 +748,7 @@ var init_mailx_types = __esm({
|
|
|
741
748
|
"packages/mailx-types/index.js"() {
|
|
742
749
|
"use strict";
|
|
743
750
|
init_contact_rules();
|
|
751
|
+
init_contacts_config();
|
|
744
752
|
init_groups();
|
|
745
753
|
_SEEN = "\\Seen";
|
|
746
754
|
_FLAGGED = "\\Flagged";
|
|
@@ -4857,6 +4865,7 @@ async function collectDueAlarms(now) {
|
|
|
4857
4865
|
}
|
|
4858
4866
|
}
|
|
4859
4867
|
if (pick) {
|
|
4868
|
+
console.log(`[alarm] fire decision key=${pick.key} title="${ev.title || ""}" startMs=${startMs}`);
|
|
4860
4869
|
items.push({
|
|
4861
4870
|
uuid: pick.key,
|
|
4862
4871
|
kind: "calendar",
|
|
@@ -5129,6 +5138,7 @@ async function firePopupForItem(item) {
|
|
|
5129
5138
|
const m = loadDismissed();
|
|
5130
5139
|
m[item.uuid] = true;
|
|
5131
5140
|
saveDismissed(m);
|
|
5141
|
+
console.log(`[alarm] dismiss saved key=${item.uuid}`);
|
|
5132
5142
|
}
|
|
5133
5143
|
break;
|
|
5134
5144
|
case "Delete":
|