@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.
@@ -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;