@ngxs/store 19.0.0-dev.master-c739a26 → 19.0.0-dev.master-d3dad28
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/fesm2022/ngxs-store-internals-testing.mjs +21 -22
- package/fesm2022/ngxs-store-internals-testing.mjs.map +1 -1
- package/fesm2022/ngxs-store-internals.mjs +24 -25
- package/fesm2022/ngxs-store-internals.mjs.map +1 -1
- package/fesm2022/ngxs-store-operators.mjs.map +1 -1
- package/fesm2022/ngxs-store-plugins.mjs +3 -2
- package/fesm2022/ngxs-store-plugins.mjs.map +1 -1
- package/fesm2022/ngxs-store.mjs +185 -189
- package/fesm2022/ngxs-store.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/internals/index.d.ts +1 -1
- package/internals/testing/index.d.ts +1 -1
- package/package.json +9 -9
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { ModuleWithProviders, Signal, EnvironmentProviders, Type } from '@angular/core';
|
|
3
|
-
import {
|
|
3
|
+
import { ɵActionOptions as _ActionOptions, StateToken, ɵSharedSelectorOptions as _SharedSelectorOptions, ɵStateClass as _StateClass, ɵStoreOptions as _StoreOptions } from '@ngxs/store/internals';
|
|
4
4
|
export { ɵActionOptions as ActionOptions, StateToken } from '@ngxs/store/internals';
|
|
5
5
|
import * as rxjs from 'rxjs';
|
|
6
6
|
import { Observable, Subscription, OperatorFunction } from 'rxjs';
|
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
|
|
3
|
+
import { Observable, BehaviorSubject, Subject, MonoTypeOperatorFunction } from 'rxjs';
|
|
4
4
|
|
|
5
5
|
declare class StateToken<T = void> {
|
|
6
6
|
private readonly _name;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { NgxsModuleOptions, Store } from '@ngxs/store';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import {
|
|
3
|
+
import { EnvironmentProviders, ModuleWithProviders } from '@angular/core';
|
|
4
4
|
import { TestBedStatic } from '@angular/core/testing';
|
|
5
5
|
import { ɵStateClass as _StateClass } from '@ngxs/store/internals';
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ngxs/store",
|
|
3
|
-
"version": "19.0.0-dev.master-
|
|
3
|
+
"version": "19.0.0-dev.master-d3dad28",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"peerDependencies": {
|
|
7
|
-
"@angular/core": ">=
|
|
7
|
+
"@angular/core": ">=20.0.0 <21.0.0",
|
|
8
8
|
"rxjs": ">=7.0.0"
|
|
9
9
|
},
|
|
10
10
|
"schematics": "./schematics/collection.json",
|
|
@@ -18,22 +18,22 @@
|
|
|
18
18
|
"types": "./index.d.ts",
|
|
19
19
|
"default": "./fesm2022/ngxs-store.mjs"
|
|
20
20
|
},
|
|
21
|
-
"./experimental": {
|
|
22
|
-
"types": "./experimental/index.d.ts",
|
|
23
|
-
"default": "./fesm2022/ngxs-store-experimental.mjs"
|
|
24
|
-
},
|
|
25
21
|
"./internals": {
|
|
26
22
|
"types": "./internals/index.d.ts",
|
|
27
23
|
"default": "./fesm2022/ngxs-store-internals.mjs"
|
|
28
24
|
},
|
|
29
|
-
"./
|
|
30
|
-
"types": "./
|
|
31
|
-
"default": "./fesm2022/ngxs-store-
|
|
25
|
+
"./experimental": {
|
|
26
|
+
"types": "./experimental/index.d.ts",
|
|
27
|
+
"default": "./fesm2022/ngxs-store-experimental.mjs"
|
|
32
28
|
},
|
|
33
29
|
"./operators": {
|
|
34
30
|
"types": "./operators/index.d.ts",
|
|
35
31
|
"default": "./fesm2022/ngxs-store-operators.mjs"
|
|
36
32
|
},
|
|
33
|
+
"./plugins": {
|
|
34
|
+
"types": "./plugins/index.d.ts",
|
|
35
|
+
"default": "./fesm2022/ngxs-store-plugins.mjs"
|
|
36
|
+
},
|
|
37
37
|
"./internals/testing": {
|
|
38
38
|
"types": "./internals/testing/index.d.ts",
|
|
39
39
|
"default": "./fesm2022/ngxs-store-internals-testing.mjs"
|