@ngrx/store-devtools 20.0.1 → 21.0.0-beta.0
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/ngrx-store-devtools.mjs +13 -13
- package/fesm2022/ngrx-store-devtools.mjs.map +1 -1
- package/migrations/17_0_0-beta/index.js +11 -14
- package/migrations/17_0_0-beta/index.js.map +1 -1
- package/migrations/6_0_0/index.js +3 -6
- package/migrations/6_0_0/index.js.map +1 -1
- package/package.json +5 -5
- package/schematics/ng-add/index.js +30 -33
- package/schematics/ng-add/index.js.map +1 -1
- package/schematics/ng-add/schema.js +0 -2
- package/schematics-core/index.js +24 -75
- package/schematics-core/index.js.map +1 -1
- package/schematics-core/utility/ast-utils.js +28 -44
- package/schematics-core/utility/ast-utils.js.map +1 -1
- package/schematics-core/utility/change.js +8 -15
- package/schematics-core/utility/change.js.map +1 -1
- package/schematics-core/utility/config.js +4 -8
- package/schematics-core/utility/config.js.map +1 -1
- package/schematics-core/utility/find-component.js +17 -22
- package/schematics-core/utility/find-component.js.map +1 -1
- package/schematics-core/utility/find-module.js +19 -24
- package/schematics-core/utility/find-module.js.map +1 -1
- package/schematics-core/utility/json-utilts.js +1 -4
- package/schematics-core/utility/json-utilts.js.map +1 -1
- package/schematics-core/utility/libs-version.js +1 -4
- package/schematics-core/utility/libs-version.js.map +1 -1
- package/schematics-core/utility/ngrx-utils.js +28 -36
- package/schematics-core/utility/ngrx-utils.js.map +1 -1
- package/schematics-core/utility/package.js +1 -4
- package/schematics-core/utility/package.js.map +1 -1
- package/schematics-core/utility/parse-name.js +5 -8
- package/schematics-core/utility/parse-name.js.map +1 -1
- package/schematics-core/utility/project.js +9 -15
- package/schematics-core/utility/project.js.map +1 -1
- package/schematics-core/utility/standalone.js +13 -18
- package/schematics-core/utility/standalone.js.map +1 -1
- package/schematics-core/utility/strings.js +9 -20
- package/schematics-core/utility/strings.js.map +1 -1
- package/schematics-core/utility/update.js +4 -7
- package/schematics-core/utility/update.js.map +1 -1
- package/schematics-core/utility/visitors.js +16 -30
- package/schematics-core/utility/visitors.js.map +1 -1
- package/types/ngrx-store-devtools.d.ts +252 -0
- package/index.d.ts +0 -6
- package/public_api.d.ts +0 -1
- package/src/actions.d.ts +0 -79
- package/src/config.d.ts +0 -126
- package/src/devtools-dispatcher.d.ts +0 -6
- package/src/devtools.d.ts +0 -35
- package/src/extension.d.ts +0 -52
- package/src/index.d.ts +0 -6
- package/src/instrument.d.ts +0 -9
- package/src/provide-store-devtools.d.ts +0 -26
- package/src/reducer.d.ts +0 -47
- package/src/utils.d.ts +0 -42
- package/src/zone-config.d.ts +0 -9
package/src/utils.d.ts
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import { Action } from '@ngrx/store';
|
|
2
|
-
import * as Actions from './actions';
|
|
3
|
-
import { ActionSanitizer, StateSanitizer, Predicate, StoreDevtoolsConfig } from './config';
|
|
4
|
-
import { ComputedState, LiftedAction, LiftedActions, LiftedState } from './reducer';
|
|
5
|
-
export declare function difference(first: any[], second: any[]): any[];
|
|
6
|
-
/**
|
|
7
|
-
* Provides an app's view into the state of the lifted store.
|
|
8
|
-
*/
|
|
9
|
-
export declare function unliftState(liftedState: LiftedState): any;
|
|
10
|
-
export declare function unliftAction(liftedState: LiftedState): LiftedAction;
|
|
11
|
-
/**
|
|
12
|
-
* Lifts an app's action into an action on the lifted store.
|
|
13
|
-
*/
|
|
14
|
-
export declare function liftAction(action: Action): Actions.PerformAction;
|
|
15
|
-
/**
|
|
16
|
-
* Sanitizes given actions with given function.
|
|
17
|
-
*/
|
|
18
|
-
export declare function sanitizeActions(actionSanitizer: ActionSanitizer, actions: LiftedActions): LiftedActions;
|
|
19
|
-
/**
|
|
20
|
-
* Sanitizes given action with given function.
|
|
21
|
-
*/
|
|
22
|
-
export declare function sanitizeAction(actionSanitizer: ActionSanitizer, action: LiftedAction, actionIdx: number): LiftedAction;
|
|
23
|
-
/**
|
|
24
|
-
* Sanitizes given states with given function.
|
|
25
|
-
*/
|
|
26
|
-
export declare function sanitizeStates(stateSanitizer: StateSanitizer, states: ComputedState[]): ComputedState[];
|
|
27
|
-
/**
|
|
28
|
-
* Sanitizes given state with given function.
|
|
29
|
-
*/
|
|
30
|
-
export declare function sanitizeState(stateSanitizer: StateSanitizer, state: any, stateIdx: number): any;
|
|
31
|
-
/**
|
|
32
|
-
* Read the config and tell if actions should be filtered
|
|
33
|
-
*/
|
|
34
|
-
export declare function shouldFilterActions(config: StoreDevtoolsConfig): string[] | Predicate;
|
|
35
|
-
/**
|
|
36
|
-
* Return a full filtered lifted state
|
|
37
|
-
*/
|
|
38
|
-
export declare function filterLiftedState(liftedState: LiftedState, predicate?: Predicate, safelist?: string[], blocklist?: string[]): LiftedState;
|
|
39
|
-
/**
|
|
40
|
-
* Return true is the action should be ignored
|
|
41
|
-
*/
|
|
42
|
-
export declare function isActionFiltered(state: any, action: LiftedAction, predicate?: Predicate, safelist?: string[], blockedlist?: string[]): true | RegExpMatchArray;
|
package/src/zone-config.d.ts
DELETED