-
```typescipt
import { model, Model, prop, ExtendedModel } from "mobx-keystone"
@model("MyApp/Point")
class Point extends Model({
_version: prop(2),
x: prop(),
y: prop(),
}, {
toSnaps…
-
Does computedTree support an array of models?
I get an error "an object cannot be assigned a new parent when it already has one" when the tree is updated for the second time.
https://codesandbox.io/…
ZFail updated
2 years ago
-
On latest `@nrwl` `15.7.2`
-
Version 0.69.5 uncovered a bug in the `typesTag`: the baseChecker's check function was assigned directly rather than being wrapped within another function, which caused an endlessly recursive call to …
kcoop updated
2 years ago
-
### Discussed in https://github.com/xaviergonz/mobx-keystone/discussions/469
Originally posted by **aboyer1013** July 8, 2022
Looking for some guidance here with regards to errors when using …
-
I would like to create something like this:
```js
abstract class A {
protected abstract method1: () => T;
}
class B extends A {
protected method1 = () => "helloword";
}
```
So I d…
-
I'm seeing the following error when trying provide an action as an event handler on a react component:
```
Uncaught Error: wrappedAction must be a tree node (usually a model or a shallow / deep ch…
-
`mobx-keystone` is awesome and way easier to use for typesafe domain modeling than MST.
i've managed to hit some unexpected behavior when using it in combination with `react` and `mobx-react-lite`…
-
Hi,
Great work with the library! Really liking it as a mst user.
However I think I have discovered a packaging bug with the library when used in a react native project. The metro bundler can n…
-
### Cocos Creator version
2.4.8
### System information
MacOS 12.3
### Issue description
I try to use `mobx-keystone` from npm
when I just define a `RootStore` class and extends `Model`…