@sladg/apex-state 3.0.5 → 3.2.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/README.md +2 -0
- package/dist/apply-changes-Btg-SNmO.d.ts +1552 -0
- package/dist/index.d.ts +5 -1529
- package/dist/index.js +11 -11
- package/dist/index.js.map +1 -1
- package/dist/testing/index.d.ts +113 -0
- package/dist/testing/index.js +1384 -0
- package/dist/testing/index.js.map +1 -0
- package/package.json +12 -3
package/README.md
CHANGED
|
@@ -76,6 +76,7 @@ const App = () => (
|
|
|
76
76
|
| **WASM mode** | Rust-powered pipeline for bulk operations | [Architecture](docs/WASM_ARCHITECTURE.md) |
|
|
77
77
|
| **Composable hooks** | Buffered, throttled, transformed field wrappers | [Store & Hooks](docs/guides/STORE_HOOKS.md) |
|
|
78
78
|
| **Record/wildcard** | `Record<string, V>` with `[*]` wildcard paths | [Wildcard Guide](docs/WILD_FUNCTION_GUIDE.md) |
|
|
79
|
+
| **Testing mock** | Drop-in `vi.mock` replacement with call tracking | [Testing Mock](docs/TESTING_MOCK.md) |
|
|
79
80
|
|
|
80
81
|
## Architecture
|
|
81
82
|
|
|
@@ -215,6 +216,7 @@ cargo install wasm-pack
|
|
|
215
216
|
| [Debug Timing](docs/DEBUG_TIMING.md) | Performance debugging utilities |
|
|
216
217
|
| [Wildcard Paths](docs/WILD_FUNCTION_GUIDE.md) | `Wild()` template utility for Record types |
|
|
217
218
|
| [Record Migration](docs/RECORD_MIGRATION.md) | Migration patterns for dynamic Record types |
|
|
219
|
+
| [Testing Mock](docs/TESTING_MOCK.md) | Mock module for consumer tests (`vi.mock`) |
|
|
218
220
|
| [Full Index](docs/README.md) | Complete documentation index |
|
|
219
221
|
|
|
220
222
|
## Roadmap
|