@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.
Files changed (44) hide show
  1. package/client/android-bootstrap.bundle.js +408 -194
  2. package/client/android-bootstrap.bundle.js.map +4 -4
  3. package/client/app.bundle.js +10 -0
  4. package/client/app.bundle.js.map +3 -3
  5. package/client/components/alarms.js +7 -0
  6. package/client/components/alarms.js.map +1 -1
  7. package/client/components/alarms.ts +8 -1
  8. package/client/compose/compose.bundle.js +67 -2
  9. package/client/compose/compose.bundle.js.map +2 -2
  10. package/client/compose/compose.css +31 -0
  11. package/client/compose/compose.js +19 -7
  12. package/client/compose/compose.js.map +1 -1
  13. package/client/compose/compose.ts +19 -7
  14. package/client/compose/spellcheck.js +74 -1
  15. package/client/compose/spellcheck.js.map +1 -1
  16. package/client/compose/spellcheck.ts +62 -1
  17. package/package.json +1 -1
  18. package/packages/mailx-service/index.d.ts.map +1 -1
  19. package/packages/mailx-service/index.js +8 -45
  20. package/packages/mailx-service/index.js.map +1 -1
  21. package/packages/mailx-service/index.ts +8 -31
  22. package/packages/mailx-store-web/db.d.ts +4 -0
  23. package/packages/mailx-store-web/db.d.ts.map +1 -1
  24. package/packages/mailx-store-web/db.js +16 -2
  25. package/packages/mailx-store-web/db.js.map +1 -1
  26. package/packages/mailx-store-web/db.ts +17 -2
  27. package/packages/mailx-store-web/package.json +1 -1
  28. package/packages/mailx-store-web/web-service.d.ts +2 -2
  29. package/packages/mailx-store-web/web-service.d.ts.map +1 -1
  30. package/packages/mailx-store-web/web-service.js +20 -3
  31. package/packages/mailx-store-web/web-service.js.map +1 -1
  32. package/packages/mailx-store-web/web-service.ts +20 -3
  33. package/packages/mailx-types/contacts-config.d.ts +27 -0
  34. package/packages/mailx-types/contacts-config.d.ts.map +1 -0
  35. package/packages/mailx-types/contacts-config.js +67 -0
  36. package/packages/mailx-types/contacts-config.js.map +1 -0
  37. package/packages/mailx-types/contacts-config.ts +71 -0
  38. package/packages/mailx-types/index.d.ts +1 -0
  39. package/packages/mailx-types/index.d.ts.map +1 -1
  40. package/packages/mailx-types/index.js +2 -0
  41. package/packages/mailx-types/index.js.map +1 -1
  42. package/packages/mailx-types/index.ts +5 -0
  43. package/packages/mailx-types/package.json +1 -1
  44. /package/packages/mailx-imap/{node_modules.npmglobalize-stash-20936 → node_modules.npmglobalize-stash-13452}/.package-lock.json +0 -0
@@ -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":