@ngxs/store 3.8.0-dev.master-c31ed89 → 3.8.0-dev.master-4f8f372

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.
@@ -1,8 +1,8 @@
1
1
  import { InjectionToken } from '@angular/core';
2
2
  import { PlainObject } from './symbols';
3
- export declare const INITIAL_STATE_TOKEN: InjectionToken<any>;
4
3
  export declare class InitialState {
5
- private static value;
4
+ private static _value;
6
5
  static set(state: PlainObject): void;
7
6
  static pop(): PlainObject;
8
7
  }
8
+ export declare const INITIAL_STATE_TOKEN: InjectionToken<any>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "../../node_modules/ng-packagr/package.schema.json",
3
3
  "name": "@ngxs/store",
4
- "version": "3.8.0-dev.master-c31ed89",
4
+ "version": "3.8.0-dev.master-4f8f372",
5
5
  "license": "MIT",
6
6
  "sideEffects": true,
7
7
  "peerDependencies": {
@@ -4,7 +4,6 @@ import { StateStream } from './state-stream';
4
4
  import { NgxsConfig } from '../symbols';
5
5
  import * as i0 from "@angular/core";
6
6
  /**
7
- * State Context factory class
8
7
  * @ignore
9
8
  */
10
9
  export declare class InternalStateOperations {
package/src/module.d.ts CHANGED
@@ -8,7 +8,6 @@ import * as i0 from "@angular/core";
8
8
  * Ngxs Module
9
9
  */
10
10
  export declare class NgxsModule {
11
- private static readonly ROOT_OPTIONS;
12
11
  /**
13
12
  * Root module factory
14
13
  */
@@ -18,9 +17,7 @@ export declare class NgxsModule {
18
17
  */
19
18
  static forFeature(states?: StateClass[]): ModuleWithProviders<NgxsFeatureModule>;
20
19
  private static ngxsTokenProviders;
21
- private static ngxsConfigFactory;
22
20
  private static appBootstrapListenerFactory;
23
- private static getInitialState;
24
21
  static ɵfac: i0.ɵɵFactoryDeclaration<NgxsModule, never>;
25
22
  static ɵmod: i0.ɵɵNgModuleDeclaration<NgxsModule, never, never, never>;
26
23
  static ɵinj: i0.ɵɵInjectorDeclaration<NgxsModule>;
package/src/symbols.d.ts CHANGED
@@ -6,6 +6,7 @@ import { NgxsExecutionStrategy } from './execution/symbols';
6
6
  import { SharedSelectorOptions } from './internal/internals';
7
7
  import { StateToken } from './state-token/state-token';
8
8
  import * as i0 from "@angular/core";
9
+ export declare const ROOT_OPTIONS: InjectionToken<Partial<NgxsConfig>>;
9
10
  export declare const ROOT_STATE_TOKEN: InjectionToken<any>;
10
11
  export declare const FEATURE_STATE_TOKEN: InjectionToken<any>;
11
12
  export declare const NGXS_PLUGINS: InjectionToken<unknown>;