@ngxs/store 18.0.0-dev.master-5428af8 → 18.0.0-dev.master-0108915

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,4 +1,4 @@
1
- import { OnDestroy, Signal } from '@angular/core';
1
+ import { OnDestroy } from '@angular/core';
2
2
  import { ɵPlainObject } from './symbols';
3
3
  import { ɵOrderedBehaviorSubject } from './custom-rxjs-subjects';
4
4
  import * as i0 from "@angular/core";
@@ -7,7 +7,6 @@ import * as i0 from "@angular/core";
7
7
  * @ignore
8
8
  */
9
9
  export declare class ɵStateStream extends ɵOrderedBehaviorSubject<ɵPlainObject> implements OnDestroy {
10
- readonly state: Signal<ɵPlainObject | undefined>;
11
10
  constructor();
12
11
  ngOnDestroy(): void;
13
12
  static ɵfac: i0.ɵɵFactoryDeclaration<ɵStateStream, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngxs/store",
3
- "version": "18.0.0-dev.master-5428af8",
3
+ "version": "18.0.0-dev.master-0108915",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
@@ -20,6 +20,12 @@
20
20
  "esm": "./esm2022/ngxs-store.mjs",
21
21
  "default": "./fesm2022/ngxs-store.mjs"
22
22
  },
23
+ "./experimental": {
24
+ "types": "./experimental/index.d.ts",
25
+ "esm2022": "./esm2022/experimental/ngxs-store-experimental.mjs",
26
+ "esm": "./esm2022/experimental/ngxs-store-experimental.mjs",
27
+ "default": "./fesm2022/ngxs-store-experimental.mjs"
28
+ },
23
29
  "./internals": {
24
30
  "types": "./internals/index.d.ts",
25
31
  "esm2022": "./esm2022/internals/ngxs-store-internals.mjs",
package/src/store.d.ts CHANGED
@@ -40,6 +40,7 @@ export declare class Store {
40
40
  * Select a signal from the state.
41
41
  */
42
42
  selectSignal<T>(selector: TypedSelector<T>): Signal<T>;
43
+ private selectFromStateStream;
43
44
  /**
44
45
  * Allow the user to subscribe to the root of the state
45
46
  */