@ngxs/store 19.0.0-dev.master-fb07d3f → 19.0.0-dev.master-ea51ae4
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 { BehaviorSubject, Subject, MonoTypeOperatorFunction } from 'rxjs';
|
|
3
|
+
import { BehaviorSubject, Subject, MonoTypeOperatorFunction, Observable } from 'rxjs';
|
|
4
4
|
|
|
5
5
|
declare class StateToken<T = void> {
|
|
6
6
|
private readonly _name;
|
|
@@ -201,4 +201,6 @@ declare class ɵStateStream extends ɵOrderedBehaviorSubject<ɵPlainObject> {
|
|
|
201
201
|
static ɵprov: i0.ɵɵInjectableDeclaration<ɵStateStream>;
|
|
202
202
|
}
|
|
203
203
|
|
|
204
|
-
|
|
204
|
+
declare function ɵof<T>(value: T): Observable<T>;
|
|
205
|
+
|
|
206
|
+
export { StateToken, type ɵActionHandlerMetaData, type ɵActionOptions, type ɵExtractTokenType, ɵINITIAL_STATE_TOKEN, ɵInitialState, ɵMETA_KEY, ɵMETA_OPTIONS_KEY, type ɵMetaDataModel, ɵNGXS_STATE_CONTEXT_FACTORY, ɵNGXS_STATE_FACTORY, ɵNgxsAppBootstrappedState, ɵOrderedBehaviorSubject, ɵOrderedSubject, type ɵPlainObject, type ɵPlainObjectOf, type ɵRuntimeSelectorContext, ɵSELECTOR_META_KEY, type ɵSelectFromRootState, type ɵSelectorFactory, type ɵSelectorMetaDataModel, type ɵSharedSelectorOptions, type ɵStateClass, type ɵStateClassInternal, ɵStateStream, type ɵStateToken, type ɵStoreOptions, type ɵTokenName, ɵensureSelectorMetadata, ɵensureStoreMetadata, ɵgetSelectorMetadata, ɵgetStoreMetadata, ɵmemoize, ɵof, ɵwrapObserverCalls };
|
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-ea51ae4",
|
|
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"
|