@social-mail/social-mail-client 1.8.105 → 1.8.106
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 +3 -3
- 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/admin/pages/users/UserDetailsPage.js +2 -2
- package/dist/admin/pages/users/UserDetailsPage.js.map +1 -1
- package/dist/common/controls/collection-editor/CollectionEditorEx.js +1 -1
- package/dist/common/controls/collection-editor/CollectionEditorEx.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js +1 -1
- 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/tsconfig.tsbuildinfo +1 -1
- package/dist/web/AppIndex.pack.js +1 -1
- 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/admin/pages/users/UserDetailsPage.tsx +2 -2
- package/src/common/controls/collection-editor/CollectionEditorEx.tsx +1 -1
|
@@ -26672,7 +26672,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
|
|
|
26672
26672
|
this.relation = null;
|
|
26673
26673
|
this.element.setAttribute("data-collection-editor-ex", "collection-editor-ex");
|
|
26674
26674
|
this.runAfterInit(() => this.app.runAsync(() => this.init()));
|
|
26675
|
-
this.bindEvent(document.body, "deleteCollectionItem", ce => !ce.defaultPrevented && this.deleteItem(ce.detail));
|
|
26675
|
+
this.bindEvent(document.body, "deleteCollectionItem", ce => !ce.defaultPrevented && (ce.preventDefault(), this.deleteItem(ce.detail)));
|
|
26676
26676
|
}
|
|
26677
26677
|
init() {
|
|
26678
26678
|
var _a;
|
|
@@ -27072,11 +27072,11 @@ System.register(["tslib", "@web-atoms/web-controls/dist/mobile-app/MobileApp", "
|
|
|
27072
27072
|
}), XNode.create("td", {
|
|
27073
27073
|
text: toFileSize(item.mailbox.storage)
|
|
27074
27074
|
}))
|
|
27075
|
-
}), XNode.create(
|
|
27075
|
+
}), XNode.create(CollectionEditorEx, {
|
|
27076
27076
|
label: "Drives/Web Sites",
|
|
27077
27077
|
model: this.model,
|
|
27078
27078
|
addPage: EditFileAccessPage,
|
|
27079
|
-
|
|
27079
|
+
field: x => x.fileAccessList,
|
|
27080
27080
|
itemRenderer: item => XNode.create("tr", null, XNode.create("td", {
|
|
27081
27081
|
text: item.file.name
|
|
27082
27082
|
}), XNode.create("td", {
|