@social-mail/social-mail-client 1.8.326 → 1.8.327

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@social-mail/social-mail-client",
3
- "version": "1.8.326",
3
+ "version": "1.8.327",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -40,6 +40,12 @@ export default class WebSiteEditor extends PopupWindowPage {
40
40
  text="Save this as a Template"
41
41
  />
42
42
  </FormField>
43
+ <FormField label="Design">
44
+ <Checkbox
45
+ checked={Bind.twoWays(() => this.model.isDesign)}
46
+ text="Save this as a Design"
47
+ />
48
+ </FormField>
43
49
  <FormField label="Remote Url">
44
50
  <div data-layout="vertical-flex-stretch-items">
45
51
  <input value={Bind.twoWaysImmediate(() => this.model.remoteUrl)}/>
@@ -55,6 +55,12 @@ export default class WebSiteSettings extends ContentPage {
55
55
  text="Template"
56
56
  />
57
57
  </FormField>
58
+ <FormField label="Design">
59
+ <Checkbox
60
+ checked={Bind.twoWaysImmediate(() => this.model.isDesign)}
61
+ text="Design"
62
+ />
63
+ </FormField>
58
64
  <FormField label="Remote Url">
59
65
  <div data-layout="vertical-flex-stretch-items">
60
66
  <input value={Bind.twoWaysImmediate(() => this.model.remoteUrl)}/>