@ngxs/store 3.7.5-dev.master-f9549a3 → 3.7.5-dev.master-0da56b4
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/ngxs-store.umd.js +9 -0
- package/bundles/ngxs-store.umd.js.map +1 -1
- package/bundles/ngxs-store.umd.min.js +1 -1
- package/bundles/ngxs-store.umd.min.js.map +1 -1
- package/esm2015/src/actions-stream.js +7 -1
- package/esm5/src/actions-stream.js +10 -1
- package/fesm2015/ngxs-store.js +6 -0
- package/fesm2015/ngxs-store.js.map +1 -1
- package/fesm5/ngxs-store.js +9 -0
- package/fesm5/ngxs-store.js.map +1 -1
- package/ngxs-store.metadata.json +1 -1
- package/package.json +1 -1
- package/src/actions-stream.d.ts +3 -1
package/fesm5/ngxs-store.js
CHANGED
|
@@ -1568,6 +1568,15 @@ var InternalActions = /** @class */ (function (_super) {
|
|
|
1568
1568
|
function InternalActions() {
|
|
1569
1569
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
1570
1570
|
}
|
|
1571
|
+
/**
|
|
1572
|
+
* @return {?}
|
|
1573
|
+
*/
|
|
1574
|
+
InternalActions.prototype.ngOnDestroy = /**
|
|
1575
|
+
* @return {?}
|
|
1576
|
+
*/
|
|
1577
|
+
function () {
|
|
1578
|
+
this.complete();
|
|
1579
|
+
};
|
|
1571
1580
|
InternalActions.decorators = [
|
|
1572
1581
|
{ type: Injectable }
|
|
1573
1582
|
];
|