-
I'm coming from evaluating typescript version of mobx-MST for a project, and battling with the typescript nuances somehow I'have ended up here (although I have starred this project a long time ago and…
-
When the app opens I want to hydrate the locally stored state like this:
```applySnapshot(this, storeJson);```
However it's complaining that the ids have changed. Can I applySnapshots while ignoring…
-
`fast-json-patch` has [clear type definitions for Patches](https://github.com/Starcounter-Jack/JSON-Patch/blob/53caddfc924aeccdae5146793eaa31562571c11c/module/core.d.ts#L4-L26). Would it be a good ide…
-
I have an idea that could solve a code cleanness issue _(and by extend might result in less bugs in userland)_.
What if `autorun` _(or a variant of it)_ would process eventually returned functions …
-
Hello,
Thanks for this amazing library I really enjoy it for now. I'm a beginner in MobX but I've been using React and TypeScript for quite a while now.
I'm currently working on a React/TypeScri…
-
When I try to apply a snapshot for some reason I get an error message stating:
`snapshot model type 'consento/User' does not match target model type 'consento/User'`
Which is fine as I probably…
-
Are there any plans to support Map as a valid prop type?
I could imagine something like `entities: prop(() => new Map, e => e.id)` where the second argument would define a function to get the key of …
-
How to reproduce: Open docs in chrome on Android, try to scroll
For example, this link: https://mobx-keystone.js.org/runtimeTypeChecking
-
I frequently need to test how a change somewhere in the tree affects the rest of the tree. For instance, while editing a text field in a form, I validate the entered value, but the validation routine …
-
This library looks really good! I'm currently building an application using mobx-state-tree, but running into a lot of trouble especially with Typescript. I was looking into switching to mobx-keystone…