@social-mail/social-mail-client 1.2.773 → 1.2.774
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/dist/admin/AdminAppIndex.pack.js +8 -2
- package/dist/admin/AdminAppIndex.pack.js.map +1 -1
- package/dist/admin/AdminAppIndex.pack.min.js +2 -2
- package/dist/admin/AdminAppIndex.pack.min.js.map +1 -1
- package/dist/common/pages/files/shares/AddSharePage.d.ts +1 -0
- package/dist/common/pages/files/shares/AddSharePage.d.ts.map +1 -1
- package/dist/public/channel/ChannelApp.pack.js +8 -2
- package/dist/public/channel/ChannelApp.pack.js.map +1 -1
- package/dist/public/channel/ChannelApp.pack.min.js +2 -2
- package/dist/public/channel/ChannelApp.pack.min.js.map +1 -1
- package/dist/public/channel/ChannelView.pack.js +8 -2
- package/dist/public/channel/ChannelView.pack.js.map +1 -1
- package/dist/public/channel/ChannelView.pack.min.js +2 -2
- package/dist/public/channel/ChannelView.pack.min.js.map +1 -1
- package/dist/public/preview/zip/DownloadZip.pack.js +6 -1
- package/dist/public/preview/zip/DownloadZip.pack.js.map +1 -1
- package/dist/public/preview/zip/DownloadZip.pack.min.js +1 -1
- package/dist/public/preview/zip/DownloadZip.pack.min.js.map +1 -1
- package/dist/public/store/StoreApp.pack.js +6 -1
- package/dist/public/store/StoreApp.pack.js.map +1 -1
- package/dist/public/store/StoreApp.pack.min.js +1 -1
- package/dist/public/store/StoreApp.pack.min.js.map +1 -1
- package/dist/public/store/cart/ShoppingCart.pack.js +6 -1
- package/dist/public/store/cart/ShoppingCart.pack.js.map +1 -1
- package/dist/public/store/cart/ShoppingCart.pack.min.js +1 -1
- package/dist/public/store/cart/ShoppingCart.pack.min.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js +8 -2
- package/dist/site-editor-app/SiteEditorApp.pack.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js +2 -2
- package/dist/site-editor-app/SiteEditorApp.pack.min.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/web/AppIndex.pack.js +8 -2
- package/dist/web/AppIndex.pack.js.map +1 -1
- package/dist/web/AppIndex.pack.min.js +2 -2
- package/dist/web/AppIndex.pack.min.js.map +1 -1
- package/dist/web/page/mails/service/ConversationService.js +2 -1
- package/dist/web/page/mails/service/ConversationService.js.map +1 -1
- package/node_modules/@web-atoms/entity/dist/models/IClrEntity.d.ts +1 -0
- package/node_modules/@web-atoms/entity/dist/models/IClrEntity.d.ts.map +1 -1
- package/node_modules/@web-atoms/entity/dist/services/BaseEntityService.d.ts +4 -0
- package/node_modules/@web-atoms/entity/dist/services/BaseEntityService.d.ts.map +1 -1
- package/node_modules/@web-atoms/entity/dist/services/BaseEntityService.js.map +1 -1
- package/node_modules/@web-atoms/entity/dist/services/Query.d.ts +1 -1
- package/node_modules/@web-atoms/entity/dist/services/Query.d.ts.map +1 -1
- package/node_modules/@web-atoms/entity/dist/services/Query.js +6 -1
- package/node_modules/@web-atoms/entity/dist/services/Query.js.map +1 -1
- package/node_modules/@web-atoms/entity/dist/tsconfig.tsbuildinfo +1 -1
- package/node_modules/@web-atoms/entity/package.json +1 -1
- package/node_modules/@web-atoms/entity/src/models/IClrEntity.ts +1 -0
- package/node_modules/@web-atoms/entity/src/services/BaseEntityService.ts +5 -0
- package/node_modules/@web-atoms/entity/src/services/Query.ts +6 -1
- package/package.json +2 -2
- package/src/web/page/mails/service/ConversationService.tsx +1 -1
|
@@ -12702,7 +12702,8 @@ System.register(["tslib", "./StringHelper"], function (_export, _context) {
|
|
|
12702
12702
|
splitInclude = false,
|
|
12703
12703
|
cacheSeconds = 0,
|
|
12704
12704
|
cacheImmutable = cacheSeconds > 0,
|
|
12705
|
-
count = true
|
|
12705
|
+
count = true,
|
|
12706
|
+
expandable
|
|
12706
12707
|
} = {}) {
|
|
12707
12708
|
let url;
|
|
12708
12709
|
const {
|
|
@@ -12730,6 +12731,9 @@ System.register(["tslib", "./StringHelper"], function (_export, _context) {
|
|
|
12730
12731
|
fm.append("function", queryFunction);
|
|
12731
12732
|
fm.append("args", JSON.stringify(args !== null && args !== void 0 ? args : "[]"));
|
|
12732
12733
|
}
|
|
12734
|
+
if (expandable) {
|
|
12735
|
+
fm.append("expandable", "1");
|
|
12736
|
+
}
|
|
12733
12737
|
const encodedMethods = fm.toString();
|
|
12734
12738
|
if (encodedMethods.length > 1824) {
|
|
12735
12739
|
if (cacheSeconds > 0) {
|
|
@@ -12746,6 +12750,7 @@ System.register(["tslib", "./StringHelper"], function (_export, _context) {
|
|
|
12746
12750
|
split: splitInclude,
|
|
12747
12751
|
count,
|
|
12748
12752
|
trace,
|
|
12753
|
+
expandable: expandable ? 1 : void 0,
|
|
12749
12754
|
function: queryFunction || void 0,
|
|
12750
12755
|
args: queryFunction ? args : void 0
|
|
12751
12756
|
}
|
|
@@ -30272,7 +30277,8 @@ System.register(["tslib", "@web-atoms/core/dist/di/DISingleton", "@web-atoms/cor
|
|
|
30272
30277
|
const emails = yield q.include(x => [x.email.recipients.forEach(r => r.emailAddress), x.email.attachments, x.email.senderUser, x.email.senderEmail]).orderByDescending(x => x.dateReceived).toPagedList({
|
|
30273
30278
|
start,
|
|
30274
30279
|
size,
|
|
30275
|
-
cancelToken
|
|
30280
|
+
cancelToken,
|
|
30281
|
+
expandable: true
|
|
30276
30282
|
});
|
|
30277
30283
|
const tasks = [];
|
|
30278
30284
|
const d = BusyProgress.create();
|