@colijnit/transaction 253.1.4 → 253.1.6

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.
@@ -33,8 +33,8 @@
33
33
  function Version() {
34
34
  this.name = "@colijnit/transaction";
35
35
  this.description = "Colijn IT transaction package";
36
- this.symVer = "253.1.4";
37
- this.publishDate = "8-7-2024 11:36:28";
36
+ this.symVer = "253.1.6";
37
+ this.publishDate = "9-7-2024 22:05:41";
38
38
  }
39
39
  return Version;
40
40
  }());
@@ -18809,6 +18809,10 @@
18809
18809
  RelationBaseComponent.prototype.ngOnDestroy = function () {
18810
18810
  this._subs.forEach(function (s) { return s.unsubscribe(); });
18811
18811
  };
18812
+ RelationBaseComponent.prototype.handleRelationChange = function (relation) {
18813
+ this.relation.contactOptions = relation.contactOptions;
18814
+ this.relationChange.next(this.relation);
18815
+ };
18812
18816
  // overridden by descendant classes
18813
18817
  RelationBaseComponent.prototype.relationSet = function () {
18814
18818
  };
@@ -32747,7 +32751,7 @@
32747
32751
  { type: TransactionPaymentConnectorService },
32748
32752
  { type: TransactionEventService },
32749
32753
  { type: i0.ChangeDetectorRef },
32750
- { type: TransactionPaymentService },
32754
+ { type: TransactionPaymentService, decorators: [{ type: i0.SkipSelf }] },
32751
32755
  { type: IconCacheService }
32752
32756
  ]; };
32753
32757
  TransactionPaymentBaseComponent.propDecorators = {
@@ -33399,7 +33403,7 @@
33399
33403
  RelationContactDetailsComponent.decorators = [
33400
33404
  { type: i0.Component, args: [{
33401
33405
  selector: "co-relation-contact-details",
33402
- template: "\n <co-relation-contact-options\n [(relation)]=\"relation\"\n (relationChange)=\"relationChange.next(this.relation)\"\n ></co-relation-contact-options>\n <div class=\"default-data-row\" *ngIf=\"relationKind === relKind.Customer\">\n <co-input-checkbox *ngIf=\"showInviteForAccount\"\n [screenConfigurationObject]=\"configNames?.relationInviteToAccount\"\n [readonly]=\"readonly\"\n [label]=\"'INVITE_TO_ACCOUNT' | localize\"\n [(model)]=\"inviteRelation\"\n (modelChange)=\"handleCreateCustomerUserAndInviteMark($event)\"></co-input-checkbox>\n </div>\n ",
33406
+ template: "\n <co-relation-contact-options\n [relation]=\"relation\"\n (relationChange)=\"handleRelationChange($event)\"\n ></co-relation-contact-options>\n <div class=\"default-data-row\" *ngIf=\"relationKind === relKind.Customer\">\n <co-input-checkbox *ngIf=\"showInviteForAccount\"\n [screenConfigurationObject]=\"configNames?.relationInviteToAccount\"\n [readonly]=\"readonly\"\n [label]=\"'INVITE_TO_ACCOUNT' | localize\"\n [(model)]=\"inviteRelation\"\n (modelChange)=\"handleCreateCustomerUserAndInviteMark($event)\"></co-input-checkbox>\n </div>\n ",
33403
33407
  encapsulation: i0.ViewEncapsulation.None
33404
33408
  },] }
33405
33409
  ];