@ngxs/store 20.1.0-dev.master-37cd3ad → 20.1.0-dev.master-0b2ec01
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 { Observable, BehaviorSubject, Subject } from 'rxjs';
|
|
3
|
+
import { Observable, BehaviorSubject, Subject, MonoTypeOperatorFunction } from 'rxjs';
|
|
4
4
|
|
|
5
5
|
declare class StateToken<T = void> {
|
|
6
6
|
private readonly _name;
|
|
@@ -188,6 +188,8 @@ declare class ɵOrderedBehaviorSubject<T> extends BehaviorSubject<T> {
|
|
|
188
188
|
next(value: T): void;
|
|
189
189
|
}
|
|
190
190
|
|
|
191
|
+
declare function ɵwrapObserverCalls<TValue>(invokeFn: (fn: () => void) => void): MonoTypeOperatorFunction<TValue>;
|
|
192
|
+
|
|
191
193
|
/**
|
|
192
194
|
* BehaviorSubject of the entire state.
|
|
193
195
|
* @ignore
|
|
@@ -212,5 +214,5 @@ declare class ɵNgxsActionRegistry {
|
|
|
212
214
|
static ɵprov: i0.ɵɵInjectableDeclaration<ɵNgxsActionRegistry>;
|
|
213
215
|
}
|
|
214
216
|
|
|
215
|
-
export { StateToken, ɵINITIAL_STATE_TOKEN, ɵInitialState, ɵMETA_KEY, ɵMETA_OPTIONS_KEY, ɵNGXS_STATE_CONTEXT_FACTORY, ɵNGXS_STATE_FACTORY, ɵNgxsActionRegistry, ɵNgxsAppBootstrappedState, ɵOrderedBehaviorSubject, ɵOrderedSubject, ɵSELECTOR_META_KEY, ɵStateStream, ɵdefineProperty, ɵensureSelectorMetadata, ɵensureStoreMetadata, ɵgetSelectorMetadata, ɵgetStoreMetadata, ɵhasOwnProperty, ɵmemoize };
|
|
217
|
+
export { StateToken, ɵINITIAL_STATE_TOKEN, ɵInitialState, ɵMETA_KEY, ɵMETA_OPTIONS_KEY, ɵNGXS_STATE_CONTEXT_FACTORY, ɵNGXS_STATE_FACTORY, ɵNgxsActionRegistry, ɵNgxsAppBootstrappedState, ɵOrderedBehaviorSubject, ɵOrderedSubject, ɵSELECTOR_META_KEY, ɵStateStream, ɵdefineProperty, ɵensureSelectorMetadata, ɵensureStoreMetadata, ɵgetSelectorMetadata, ɵgetStoreMetadata, ɵhasOwnProperty, ɵmemoize, ɵwrapObserverCalls };
|
|
216
218
|
export type { ɵActionHandlerMetaData, ɵActionOptions, ɵExtractTokenType, ɵMetaDataModel, ɵPlainObject, ɵPlainObjectOf, ɵRuntimeSelectorContext, ɵSelectFromRootState, ɵSelectorFactory, ɵSelectorMetaDataModel, ɵSharedSelectorOptions, ɵStateClass, ɵStateClassInternal, ɵStateToken, ɵStoreOptions, ɵTokenName };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ngxs/store",
|
|
3
|
-
"version": "20.1.0-dev.master-
|
|
3
|
+
"version": "20.1.0-dev.master-0b2ec01",
|
|
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"
|