@sumaris-net/ngx-components 2.6.10-rc2 → 2.6.11
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/esm2020/src/app/core/services/model/referential.model.mjs +4 -1
- package/fesm2015/sumaris-net.ngx-components.mjs +3 -0
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +3 -0
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/services/model/referential.model.d.ts +2 -1
- package/src/assets/manifest.json +1 -1
|
@@ -16330,6 +16330,9 @@ class BaseReferential extends Entity {
|
|
|
16330
16330
|
}
|
|
16331
16331
|
// @dynamic
|
|
16332
16332
|
let Referential = class Referential extends BaseReferential {
|
|
16333
|
+
constructor() {
|
|
16334
|
+
super();
|
|
16335
|
+
}
|
|
16333
16336
|
fromObject(source, opts) {
|
|
16334
16337
|
super.fromObject(source, opts);
|
|
16335
16338
|
this.properties = source.properties && { ...source.properties } || undefined;
|