@sumaris-net/ngx-components 1.23.46 → 1.23.47
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/sumaris-net.ngx-components.umd.js +3 -0
- package/bundles/sumaris-net.ngx-components.umd.js.map +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js +1 -1
- package/bundles/sumaris-net.ngx-components.umd.min.js.map +1 -1
- package/esm2015/src/app/core/services/model/referential.model.js +4 -1
- package/fesm2015/sumaris-net.ngx-components.js +3 -0
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/src/app/core/services/model/referential.model.d.ts +3 -1
- package/sumaris-net.ngx-components.metadata.json +1 -1
|
@@ -15148,6 +15148,8 @@
|
|
|
15148
15148
|
target.creationDate = toDateISOString(this.creationDate);
|
|
15149
15149
|
if (opts && opts.keepTypename === false)
|
|
15150
15150
|
delete target.entityName;
|
|
15151
|
+
if (opts && opts.keepIcon === false)
|
|
15152
|
+
delete target.icon;
|
|
15151
15153
|
return target;
|
|
15152
15154
|
};
|
|
15153
15155
|
BaseReferential.prototype.fromObject = function (source, opts) {
|
|
@@ -15162,6 +15164,7 @@
|
|
|
15162
15164
|
this.parentId = source.parentId;
|
|
15163
15165
|
this.creationDate = fromDateISOString(source.creationDate);
|
|
15164
15166
|
this.entityName = source.entityName;
|
|
15167
|
+
this.icon = source.icon;
|
|
15165
15168
|
};
|
|
15166
15169
|
BaseReferential.prototype.equals = function (other) {
|
|
15167
15170
|
return _super.prototype.equals.call(this, other) && this.entityName === other.entityName;
|