Sergii Stotskyi

Results 239 comments of Sergii Stotskyi

@LinusBorg what about cases when Popover and its content in different components? Then you can't easily access popover to close the dialog by clicking or selecting somethid. Use case: ```html...

Also I created an issue in rivets repository. Fix of that will allow to iterate over backbone collections (and not only) https://github.com/mikeric/rivets/issues/583

Or you could add something like this: ``` js let eachBinderRoutine = rivets.binders['each-*'].routine; rivets.binders['each-*'].routine = function(el, collection) { if (collection.models) { collection = collection.models; } return eachBinderRoutine.call(this, el, collection); };...

That's good point! Thanks for letting me know

I suggest to add something like this to generated types: ```ts export type Models = { User: { model: User; where: UserWhereInput, // other user related types } } ```...

fixed in https://github.com/stalniy/ucast/commit/ec1c7d6a82bee22dd5c26779f92ff2b5aaf2efb5 Will take some time to publish a new version, plan to do it till the end of the week

@ucast/[email protected] has been published. The issue should be fixed. ensure to update your lock file. Close the issue, in case of any issues, please do not hesitate to report it...

Adding methods is a bit more opinionated, also I don’t know how to adjust prisma types in this case. I have experience adding methods to mongoose models, it made initial...