Jasmin

Results 14 comments of Jasmin

Another solution that I'm currently using, feels very clean to me: (This probably also applies to other use cases, not only children) ```tsx const keepAlive = createMemo((prev) => prev ||...

Hey @aminya, did you revalidate this issue recently? I just set up a fresh astro project, added the solid integration and kobalte works perfectly fine for me. With both `import...

@SinnerAir You are missing proper exports in the `package.json` of your `ui-kit` package, this is not a Kobalte issue. Add the following to `ui-kit/package.json`: ```json "exports": { ".": { "types":...

Hey! Many thanks for you efforts :) Feel free to open a pull request with the changes and I'll have a look if it fits to the package.

@ColinTravis Hey, is the server public? I can take a look at it if you want. This kind of problem is always hard to debug, since we're using UDP here...

@d0x2f I created my own reusable workflow where I allow the working-dir to be overwritten :) I don't think its possible with this action at the moment. https://github.com/GiyoMoon/workflows/blob/main/.github/workflows/rust-audit.yml

hm this is tricky to solve, it's actually two issues that come to play here: - In your stackblitz repro the problem is that the first drawer moves the focus...

hmm yeah, the Kobalte Dropdown and the Drawer don't play well together at all :/ The quickest solution in userland would be to set `modal={false}` on the Dropdown root and...