@bobfrankston/rmfmail 1.1.62 → 1.1.67
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 +8 -0
- package/client/app.bundle.js.map +3 -3
- package/client/compose/compose.bundle.js +60 -1
- package/client/compose/compose.bundle.js.map +2 -2
- package/client/compose/compose.css +6 -0
- package/client/compose/compose.js +11 -0
- package/client/compose/compose.js.map +1 -1
- package/client/compose/compose.ts +11 -0
- 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 +3 -3
- 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-45932 → node_modules.npmglobalize-stash-15792}/.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";
|