@social-mail/social-mail-client 1.9.24 → 1.9.25

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.
@@ -61647,7 +61647,6 @@ System.register(["tslib", "@web-atoms/web-controls/dist/mobile-app/MobileApp", "
61647
61647
  },
61648
61648
  "event-item-deleted": ce => this.onLineItemDeleted(ce.detail),
61649
61649
  itemRenderer: line => XNode.create("div", {
61650
- "data-layout": "row",
61651
61650
  "data-align-items": "flex-start"
61652
61651
  }, XNode.create(ReferenceEditor, {
61653
61652
  label: "",
@@ -61675,7 +61674,7 @@ System.register(["tslib", "@web-atoms/web-controls/dist/mobile-app/MobileApp", "
61675
61674
  "event-reference-updated": ce => this.onItemPriceUpdated(line, ce.detail),
61676
61675
  searchQuery: (q, search) => q.where({
61677
61676
  id: line.itemID
61678
- }, p => x => x.storeItemID === p.id),
61677
+ }, p => x => x.storeItemID === p.id && x.active === true),
61679
61678
  itemRenderer: x => XNode.create("div", {
61680
61679
  text: `${x.currency} ${x.amount}`
61681
61680
  })
@@ -61684,6 +61683,8 @@ System.register(["tslib", "@web-atoms/web-controls/dist/mobile-app/MobileApp", "
61684
61683
  }), XNode.create("input", {
61685
61684
  readOnly: true,
61686
61685
  value: Bind.source(line, x => x.source.amount)
61686
+ }), XNode.create("div", {
61687
+ text: Bind.source(line, x => x.source.total)
61687
61688
  }), XNode.create("div", {
61688
61689
  "data-layout": "vertical-flex",
61689
61690
  "style-padding": "0",
@@ -61706,6 +61707,12 @@ System.register(["tslib", "@web-atoms/web-controls/dist/mobile-app/MobileApp", "
61706
61707
  }, "Posted Balance")), ...((_a = this.model.entries) !== null && _a !== void 0 ? _a : []).map(x => XNode.create("tr", null, XNode.create("td", null, x.storeAccount.name), XNode.create("td", null, x.debit), XNode.create("td", null, x.credit), XNode.create("td", {
61707
61708
  title: "Balance when posted"
61708
61709
  }, x.balance))))), XNode.create("footer", {
61710
+ "data-layout": "flex-wrap-padding"
61711
+ }, XNode.create("div", {
61712
+ "data-layout": "row"
61713
+ }, XNode.create("label", null, "Total"), XNode.create("label", {
61714
+ text: this.model.total
61715
+ }))), XNode.create("footer", {
61709
61716
  "data-layout": "command-row"
61710
61717
  }, XNode.create(SaveIconTextButton, {
61711
61718
  "data-click-event": "save-order"