jer3m01
jer3m01
I'll take a jab at `style-prop`! Does Biome already have a list of all known css rules? eslint-plugin-solid imports a package with the list for fixing camel to kebab on...
> Unfortunately, it doesn't. Should I paste a list somewhere or make it try to convert any camel to kebab (except all uppercase)?
The `onChange` and `onRawValueChange` get called whenever any async events cause them to change internally. There might be a way to predict exactly when they should and shouldn't be called...
By default Kobalte allows you to unselect an option (by clicking on the current option) and so send undefined to `onChange`. You're correct that the type doesn't match, I'll update...
I've changed the type and fixed it for multiselect (now calls with `[]`), I might change the value for single from null to undefined later but this would become a...
Kobalte exports 2 builds, a precompiled client ESM and an uncompiled JSX version meant for server rendering. It looks like Astro is importing the wrong one, I'll have a look.
Conversation continued in #408.
I'm not super familiar with `source` exports, but for `@kobalte/core` would this be more optimized to avoid barrel files (which will be removed at some point) in favor of separated...
Thanks for the PR!
Thanks for the report, `HTMLTextAreaElement` should extend `HTMLFormElement` and not cause any type errors but I might've been mistaken, I'll have a look and fix the type.