@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.
- package/bundles/colijnit-transaction.umd.js +7 -3
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/relation/relation-base.component.js +5 -1
- package/esm2015/lib/component/relation/relation-contact-details/relation-contact-details.component.js +3 -3
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +8 -4
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/relation/relation-base.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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.
|
|
37
|
-
this.publishDate = "
|
|
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 [
|
|
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
|
];
|