-
I'm seeing this error a fair amount. I'm pretty certain it's associated with the hot reloading aspect of Next.js.
Curious, why this check?
```typescript
// applySnapshot.ts
if (inDevMode(…
-
When using Typescript (4.0.3) the map properties types are incorrect.
```javascript
@model("TwoU/StoreCatalog")
export class StoreCatalog extends Model({
themes: prop_mapObject(() => new Map…
-
How about making refs generic as well (if possible) like we made models generic (#239, #242, 9be6e0f386547c7b5a58eedd3566bbfa6a63fece)? This would be useful for creating refs of generic models, so the…
-
When I try to assign a js object to an attribute of the model, the object is not instantiated, so when I try to call a method, an exception is raised because it does not exist.
Ex.:
@model("tod…
-
Regarding: https://github.com/xaviergonz/mobx-keystone/issues/150#issuecomment-750711035
Removal of nodes that have back references results in more than one patch, meaning undoManager.undo requires…
-
Looks like `@category` is being ignored.
our code:
```
...
*
* @export
* @abstract
* @category Mobx-Keystone Model
* @class BaseModel
* @extends {Model}
*/
```
In the default th…
-
Hey there!
After upgrading to `0.48.1`, `mobx-keystone` stopped working with Snowpack with error:
`ReferenceError: require is not defined`
Here is a explanation of why this happens: https://git…
dodas updated
3 years ago
-
Hey,
Awesome lib, been looking for something like this for a while.
You mention in your (incredible) docs [that you can use](https://paarthenon.github.io/variant/docs/articles/type-name) a dif…
-
I know it was [mentioned (vaguely) here](https://github.com/xaviergonz/mobx-keystone/issues/165#issuecomment-665656622) that avoiding the "Model already exists" warning in jest involves globalConfig, …
-
Hi folks,
First of all, great work done with Jotai. Good documentation too.
I have a use-case where i am require to maintain a component tree and its styles, which are to be rendered on a page. …