inspector-ng 0.0.22 → 0.0.23
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/README.md +12 -7
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -11,9 +11,11 @@ Inspired by [ibelick](https://github.com/ibelick)'s original design.
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npm install inspector-ng@
|
|
14
|
+
npm install inspector-ng@latest @ngrx/store
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
Use the `@ngrx/store` major that matches your application's Angular major (e.g. `@ngrx/store@^20` for Angular 20).
|
|
18
|
+
|
|
17
19
|
For a complete new-project walkthrough with copy-paste Store, Router, Redux DevTools, state, local-package, and troubleshooting examples, see the [setup guide](https://github.com/destx0/inspector/blob/main/SETUP_GUIDE.md).
|
|
18
20
|
|
|
19
21
|
## Getting Started
|
|
@@ -121,14 +123,17 @@ A checkpoint contains the root Store value and current route. Restore dispatches
|
|
|
121
123
|
|
|
122
124
|
## Compatibility
|
|
123
125
|
|
|
124
|
-
|
|
126
|
+
The library is Angular-version agnostic. It requires any Angular between 17 and 22 and works across the full supported range:
|
|
127
|
+
|
|
128
|
+
| Dependency | Version range |
|
|
125
129
|
|---|---|
|
|
126
|
-
| `@angular/core` |
|
|
127
|
-
| `@angular/common` |
|
|
128
|
-
| `@angular/router` |
|
|
129
|
-
| `@ngrx/store` |
|
|
130
|
+
| `@angular/core` | `>=17.0.0 <23` |
|
|
131
|
+
| `@angular/common` | `>=17.0.0 <23` |
|
|
132
|
+
| `@angular/router` | `>=17.0.0 <23` |
|
|
133
|
+
| `@ngrx/store` | `>=17.0.0 <22` (peer dependency used only for checkpoints) |
|
|
134
|
+
| `rxjs` | `^7.8.0` |
|
|
130
135
|
|
|
131
|
-
Built as a standalone component with signal-based reactivity and `OnPush` change detection.
|
|
136
|
+
Install the `@ngrx/store` major that matches your application's Angular major. Built as a standalone component with signal-based reactivity and `OnPush` change detection.
|
|
132
137
|
|
|
133
138
|
## License
|
|
134
139
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inspector-ng",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.23",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "
|
|
6
|
-
"@angular/core": "
|
|
7
|
-
"@angular/router": "
|
|
8
|
-
"@ngrx/store": "
|
|
5
|
+
"@angular/common": ">=17.0.0 <23",
|
|
6
|
+
"@angular/core": ">=17.0.0 <23",
|
|
7
|
+
"@angular/router": ">=17.0.0 <23",
|
|
8
|
+
"@ngrx/store": ">=17.0.0 <22",
|
|
9
9
|
"rxjs": "^7.8.0"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|