YaredFall
YaredFall
> This is by design as `reset` restores the `initial` state of the query, which is hydrated from the server - https://tanstack.com/query/latest/docs/reference/QueryClient/#queryclientresetqueries What is a proper way to completely reset...
Checked just now and it's surely fixed! Thanks!
I also encountered this problem while trying to animate `DialogContent` in my Nuxt3 project. It seems that the problem is that in Vue implementation the `Presence` component is only used...
@dvlden I gave a glance to these components and they all built the same. So yes, moving animations to `Positoner` should make it work
I think I managed to find a fix, I have rewritten `DialogPositioner` and `DialogContent` to be closer to React implementation [source code comparison](https://github.com/chakra-ui/ark/compare/main...YaredFall:ark:main?diff=split&w=). Tested it in dialog stories, `DailogContent` animations...
@dvlden I'm sorry, forgot to mention that you also need to set `display` property on the `Content` to override `hidden` attribute. > For me, moving the animation to `Positioner` did...
Just added `.d.ts` at the end of types reference path in env.d.ts and its worked! ```(ts) /// ```
@letoast Yes, I get global types for histoire components without the need to import them. I am using Nuxt too. I have created a [repo](https://github.com/YaredFall/Nuxt-Histoire-starter) with fresh nuxt and histoire...