@sumaris-net/ngx-components 1.9.7 → 1.9.8
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/shared/services/startable-service.class.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/shared/services/startable-service.class.d.ts +1 -0
- package/sumaris-net.ngx-components.metadata.json +1 -1
|
@@ -9414,6 +9414,9 @@
|
|
|
9414
9414
|
this._subscription = this._subscription || new rxjs.Subscription();
|
|
9415
9415
|
return this._subscription.add(sub);
|
|
9416
9416
|
};
|
|
9417
|
+
StartableService.prototype.unregisterSubscription = function (sub) {
|
|
9418
|
+
this._subscription.remove(sub);
|
|
9419
|
+
};
|
|
9417
9420
|
StartableService.prototype.ngOnStop = function () {
|
|
9418
9421
|
return __awaiter(this, void 0, void 0, function () {
|
|
9419
9422
|
return __generator(this, function (_a) {
|