@colijnit/transaction 253.1.4 → 253.1.5

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.5";
37
+ this.publishDate = "9-7-2024 13:02:43";
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
  };
@@ -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
  ];