@ngxs/store 19.0.0-dev.master-0d2e6d0 → 19.0.0-dev.master-934d9e1
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/internals/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { InjectionToken, Signal } from '@angular/core';
|
|
3
|
-
import {
|
|
3
|
+
import { BehaviorSubject, Subject, MonoTypeOperatorFunction } from 'rxjs';
|
|
4
4
|
|
|
5
5
|
declare class StateToken<T = void> {
|
|
6
6
|
private readonly _name;
|
|
@@ -136,7 +136,7 @@ declare class ɵInitialState {
|
|
|
136
136
|
}
|
|
137
137
|
declare const ɵINITIAL_STATE_TOKEN: InjectionToken<ɵPlainObject>;
|
|
138
138
|
|
|
139
|
-
declare class ɵNgxsAppBootstrappedState extends
|
|
139
|
+
declare class ɵNgxsAppBootstrappedState extends BehaviorSubject<boolean> {
|
|
140
140
|
constructor();
|
|
141
141
|
bootstrap(): void;
|
|
142
142
|
static ɵfac: i0.ɵɵFactoryDeclaration<ɵNgxsAppBootstrappedState, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ngxs/store",
|
|
3
|
-
"version": "19.0.0-dev.master-
|
|
3
|
+
"version": "19.0.0-dev.master-934d9e1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"peerDependencies": {
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"types": "./internals/index.d.ts",
|
|
27
27
|
"default": "./fesm2022/ngxs-store-internals.mjs"
|
|
28
28
|
},
|
|
29
|
-
"./operators": {
|
|
30
|
-
"types": "./operators/index.d.ts",
|
|
31
|
-
"default": "./fesm2022/ngxs-store-operators.mjs"
|
|
32
|
-
},
|
|
33
29
|
"./plugins": {
|
|
34
30
|
"types": "./plugins/index.d.ts",
|
|
35
31
|
"default": "./fesm2022/ngxs-store-plugins.mjs"
|
|
36
32
|
},
|
|
33
|
+
"./operators": {
|
|
34
|
+
"types": "./operators/index.d.ts",
|
|
35
|
+
"default": "./fesm2022/ngxs-store-operators.mjs"
|
|
36
|
+
},
|
|
37
37
|
"./internals/testing": {
|
|
38
38
|
"types": "./internals/testing/index.d.ts",
|
|
39
39
|
"default": "./fesm2022/ngxs-store-internals-testing.mjs"
|