@social-mail/social-mail-client 1.8.32 → 1.8.34
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 +5 -1
- 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/websites/edit/WebSiteFolderSettings.d.ts.map +1 -1
- package/dist/common/pages/websites/edit/WebSiteFolderSettings.js +5 -1
- package/dist/common/pages/websites/edit/WebSiteFolderSettings.js.map +1 -1
- package/dist/site-editor/editor/CssParser.js +1 -1
- package/dist/site-editor/editor/CssParser.js.map +1 -1
- package/dist/site-editor/suggestions/editorSuggestions.d.ts +60 -0
- package/dist/site-editor/suggestions/editorSuggestions.d.ts.map +1 -1
- package/dist/site-editor/suggestions/editorSuggestions.js +9 -7
- package/dist/site-editor/suggestions/editorSuggestions.js.map +1 -1
- package/dist/site-editor/suggestions/properties/{animations.d.ts → animation-properties.d.ts} +2 -2
- package/dist/site-editor/suggestions/properties/animation-properties.d.ts.map +1 -0
- package/dist/site-editor/suggestions/properties/{animations.js → animation-properties.js} +3 -3
- package/dist/site-editor/suggestions/properties/animation-properties.js.map +1 -0
- package/dist/site-editor/suggestions/properties/animations/animations.d.ts +63 -0
- package/dist/site-editor/suggestions/properties/animations/animations.d.ts.map +1 -0
- package/dist/site-editor/suggestions/properties/animations/animations.js +45 -0
- package/dist/site-editor/suggestions/properties/animations/animations.js.map +1 -0
- package/dist/site-editor/suggestions/properties/size.d.ts.map +1 -1
- package/dist/site-editor/suggestions/properties/size.js +1 -1
- package/dist/site-editor/suggestions/properties/size.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js +68 -14
- 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 +5 -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/common/pages/websites/edit/WebSiteFolderSettings.tsx +4 -1
- package/src/site-editor/editor/CssParser.ts +1 -1
- package/src/site-editor/suggestions/editorSuggestions.ts +5 -3
- package/src/site-editor/suggestions/properties/{animations.ts → animation-properties.ts} +1 -1
- package/src/site-editor/suggestions/properties/animations/animations.ts +24 -0
- package/src/site-editor/suggestions/properties/size.ts +3 -0
- package/dist/site-editor/suggestions/properties/animations.d.ts.map +0 -1
- package/dist/site-editor/suggestions/properties/animations.js.map +0 -1
|
@@ -43832,6 +43832,10 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
|
|
|
43832
43832
|
return __awaiter(this, void 0, void 0, function* () {
|
|
43833
43833
|
this.model = Object.assign({}, this.parameters);
|
|
43834
43834
|
this.renderer = XNode.create("div", null, XNode.create(Form, null, XNode.create(FormField, {
|
|
43835
|
+
label: "Name"
|
|
43836
|
+
}, XNode.create("input", {
|
|
43837
|
+
value: Bind.twoWaysImmediate(() => this.model.folder.name)
|
|
43838
|
+
})), XNode.create(FormField, {
|
|
43835
43839
|
label: "From Email"
|
|
43836
43840
|
}, XNode.create("input", {
|
|
43837
43841
|
value: Bind.twoWaysImmediate(() => this.model.fromEmail)
|
|
@@ -43881,7 +43885,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
|
|
|
43881
43885
|
}
|
|
43882
43886
|
saveSettings() {
|
|
43883
43887
|
return __awaiter(this, void 0, void 0, function* () {
|
|
43884
|
-
yield this.entityService.save(this.model, c => c);
|
|
43888
|
+
yield this.entityService.save(this.model, c => c.include(f => f.folder));
|
|
43885
43889
|
return this.model;
|
|
43886
43890
|
});
|
|
43887
43891
|
}
|