@ngxs/store 3.8.2-dev.master-59b0c4a → 3.8.2-dev.master-e0981de
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/esm2020/src/standalone-features/provide-store.mjs +3 -3
- package/fesm2015/ngxs-store.mjs +2 -2
- package/fesm2015/ngxs-store.mjs.map +1 -1
- package/fesm2020/ngxs-store.mjs +2 -2
- package/fesm2020/ngxs-store.mjs.map +1 -1
- package/package.json +1 -1
- package/schematics/src/actions/files/__name__.actions.ts__template__ +2 -2
- package/schematics/src/starter-kit/files/store/auth/auth.actions.ts__template__ +2 -3
- package/schematics/src/starter-kit/files/store/auth/auth.state.ts__template__ +2 -2
- package/schematics/src/starter-kit/files/store/dashboard/states/dictionary/dictionary.actions.ts__template__ +3 -6
- package/schematics/src/starter-kit/files/store/dashboard/states/dictionary/dictionary.state.ts__template__ +4 -4
- package/schematics/src/starter-kit/files/store/dashboard/states/user/user.actions.ts__template__ +2 -2
- package/schematics/src/starter-kit/files/store/dashboard/states/user/user.state.ts__template__ +2 -2
- package/schematics/src/state/files/__name__.state.ts__template__ +1 -1
- package/schematics/src/state/state.factory.js +1 -1
- package/schematics/src/state/state.factory.js.map +1 -1
- package/schematics/src/store/files/__name__.actions.ts__template__ +3 -3
- package/schematics/src/store/files/__name__.state.ts__template__ +2 -2
- package/schematics/src/store/store.factory.js +1 -1
- package/schematics/src/store/store.factory.js.map +1 -1
package/fesm2020/ngxs-store.mjs
CHANGED
|
@@ -2389,8 +2389,8 @@ function provideStore(states = [], ...optionsAndFeatures) {
|
|
|
2389
2389
|
}
|
|
2390
2390
|
return makeEnvironmentProviders([
|
|
2391
2391
|
...getRootProviders(states, options),
|
|
2392
|
-
|
|
2393
|
-
|
|
2392
|
+
NGXS_ROOT_ENVIRONMENT_INITIALIZER,
|
|
2393
|
+
features
|
|
2394
2394
|
]);
|
|
2395
2395
|
}
|
|
2396
2396
|
function isEnvironmentProvider(target) {
|