Jozef Mikuláš

Results 28 comments of Jozef Mikuláš

@hersentino If you are getting a mobx-keystone "snapshot" of `A` from server (that means all models have `$modelType` prop), then you can call `fromSnapshot()` rather than `new A()`, and all...

@xaviergonz thanks for the feedback. Could I workaround this by using runtime checking, therefore referencing `User` class as value, not only type? Something like: ```ts import { User } from...

Could you explain why I am getting that TS error when trying to use runtime validation for class model? ``` Type 'User' does not satisfy the constraint 'AnyType'. Property '$$recordType'...

Ah, this just bit me. Looks like the issue is fixed in code, but it hasn't been released on npm, so the issue still exists in practice. Can we get...

Hey @yusukebe! I agree that this is probably not something that should be added to the core. Would it be currently possible to write such util in user-land? e.g. ```tsx...

Hey Naresh! Accessing the underlying element though the `ref` can be useful in many cases. For example, if you wrap `RouterLink` in [Chakra UI's `Tooltip`](https://chakra-ui.com/docs/overlay/tooltip), the tooltip won't be positioned...

Thumbs up! feTS is great, but lack of a way to split routes is a real bummer. One way I was able to partially workaround this is by extracting router's...