@social-mail/social-mail-client 1.9.95 → 1.9.97
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/content/templates/plain/blank.html +38 -0
- package/css-for-email.js +78 -0
- package/dist/admin/AdminAppIndex.pack.js +6 -4
- package/dist/admin/AdminAppIndex.pack.js.map +1 -1
- package/dist/admin/AdminAppIndex.pack.min.js +1 -1
- package/dist/admin/AdminAppIndex.pack.min.js.map +1 -1
- package/dist/common/pages/files/service/CloudFileService.d.ts +2 -0
- package/dist/common/pages/files/service/CloudFileService.d.ts.map +1 -1
- package/dist/common/pages/files/service/CloudFileService.js +6 -4
- package/dist/common/pages/files/service/CloudFileService.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js +38 -7
- package/dist/site-editor-app/SiteEditorApp.pack.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js.map +1 -1
- package/dist/site-editor-app/pages/websites/studio/WebSiteStudioPage.d.ts +1 -0
- package/dist/site-editor-app/pages/websites/studio/WebSiteStudioPage.d.ts.map +1 -1
- package/dist/site-editor-app/pages/websites/studio/WebSiteStudioPage.js +32 -3
- package/dist/site-editor-app/pages/websites/studio/WebSiteStudioPage.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/web/AppIndex.pack.js +6 -4
- package/dist/web/AppIndex.pack.js.map +1 -1
- package/dist/web/AppIndex.pack.min.js +1 -1
- package/dist/web/AppIndex.pack.min.js.map +1 -1
- package/package.json +1 -1
- package/src/common/pages/files/service/CloudFileService.ts +5 -4
- package/src/site-editor-app/pages/websites/studio/WebSiteStudioPage.tsx +31 -1
|
@@ -23021,7 +23021,7 @@ System.register(["tslib", "@web-atoms/core/dist/di/DISingleton", "@web-atoms/cor
|
|
|
23021
23021
|
return __awaiter(this, arguments, void 0, function* (id, cancelToken = null) {
|
|
23022
23022
|
const folder = yield this.entityService.query(AppFile).where({
|
|
23023
23023
|
id
|
|
23024
|
-
}, p => x => x.appFileID === p.id).include(x => x.creator).firstOrDefault({
|
|
23024
|
+
}, p => x => x.appFileID === p.id && x.isDeleted === false).include(x => x.creator).firstOrDefault({
|
|
23025
23025
|
cancelToken
|
|
23026
23026
|
});
|
|
23027
23027
|
folder.children = [];
|
|
@@ -23044,7 +23044,7 @@ System.register(["tslib", "@web-atoms/core/dist/di/DISingleton", "@web-atoms/cor
|
|
|
23044
23044
|
const path = root.path + "%";
|
|
23045
23045
|
const files = yield this.entityService.query(AppFile).where({
|
|
23046
23046
|
path
|
|
23047
|
-
}, p => x => Sql.text.like(x.path, p.path) && x.isDeleted === false && (x.contentType === "text/html" || x.isFolder === true)).include(x => x.creator).
|
|
23047
|
+
}, p => x => Sql.text.like(x.path, p.path) && x.isDeleted === false && (x.contentType === "text/html" || x.isFolder === true)).include(x => x.creator).toArray({
|
|
23048
23048
|
cancelToken
|
|
23049
23049
|
});
|
|
23050
23050
|
root.children = [];
|
|
@@ -23272,12 +23272,14 @@ System.register(["tslib", "@web-atoms/core/dist/di/DISingleton", "@web-atoms/cor
|
|
|
23272
23272
|
appFileID,
|
|
23273
23273
|
content,
|
|
23274
23274
|
parentID,
|
|
23275
|
-
folder
|
|
23275
|
+
folder,
|
|
23276
|
+
name
|
|
23276
23277
|
} = fm;
|
|
23277
23278
|
return this.localFileService.uploadFile(content, {
|
|
23278
23279
|
appFileID,
|
|
23279
23280
|
parentID,
|
|
23280
|
-
folder
|
|
23281
|
+
folder,
|
|
23282
|
+
name
|
|
23281
23283
|
});
|
|
23282
23284
|
});
|
|
23283
23285
|
}
|