@colijnit/transaction 12.1.183 → 12.1.184
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 +14 -6
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/avatar/avatar.component.js +13 -5
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +14 -6
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/package.json +1 -1
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
function Version() {
|
|
32
32
|
this.name = "@colijnit/transaction";
|
|
33
33
|
this.description = "Colijn IT transaction package";
|
|
34
|
-
this.symVer = "12.1.
|
|
35
|
-
this.publishDate = "3-1-2024
|
|
34
|
+
this.symVer = "12.1.184";
|
|
35
|
+
this.publishDate = "3-1-2024 17:02:18";
|
|
36
36
|
}
|
|
37
37
|
return Version;
|
|
38
38
|
}());
|
|
@@ -27612,8 +27612,12 @@
|
|
|
27612
27612
|
return this._relationId;
|
|
27613
27613
|
},
|
|
27614
27614
|
set: function (value) {
|
|
27615
|
-
this.
|
|
27616
|
-
|
|
27615
|
+
if (this.relationId !== value) {
|
|
27616
|
+
this._image = undefined;
|
|
27617
|
+
this._relation = undefined;
|
|
27618
|
+
this._relationId = value;
|
|
27619
|
+
this._setImageForAvatar();
|
|
27620
|
+
}
|
|
27617
27621
|
},
|
|
27618
27622
|
enumerable: false,
|
|
27619
27623
|
configurable: true
|
|
@@ -27623,8 +27627,12 @@
|
|
|
27623
27627
|
return this._relation;
|
|
27624
27628
|
},
|
|
27625
27629
|
set: function (value) {
|
|
27626
|
-
this._relation
|
|
27627
|
-
|
|
27630
|
+
if (this._relation && value && this._relation.relationId !== value.relationId) {
|
|
27631
|
+
this._image = undefined;
|
|
27632
|
+
this._relationId = undefined;
|
|
27633
|
+
this._relation = value;
|
|
27634
|
+
this._setImageForAvatar();
|
|
27635
|
+
}
|
|
27628
27636
|
},
|
|
27629
27637
|
enumerable: false,
|
|
27630
27638
|
configurable: true
|