@sumaris-net/ngx-components 0.27.10 → 0.27.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/bundles/sumaris-net.ngx-components.umd.js +3 -2
- 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/table/table.class.js +4 -3
- package/fesm2015/sumaris-net.ngx-components.js +3 -2
- package/fesm2015/sumaris-net.ngx-components.js.map +1 -1
- package/package.json +1 -1
- package/sumaris-net.ngx-components.metadata.json +1 -1
|
@@ -23829,8 +23829,9 @@
|
|
|
23829
23829
|
AppTable.prototype.markAsReady = function (opts) {
|
|
23830
23830
|
if (this.readySubject.value !== false) {
|
|
23831
23831
|
this.readySubject.next(false);
|
|
23832
|
-
|
|
23833
|
-
|
|
23832
|
+
// If subclasses implements OnReady
|
|
23833
|
+
if (typeof this['ngOnReady'] === 'function') {
|
|
23834
|
+
this.ngOnReady();
|
|
23834
23835
|
}
|
|
23835
23836
|
}
|
|
23836
23837
|
};
|