Sami Jaber
Sami Jaber
> The intent behind our JSX is that we match React JSX, so `srcSet` should be `srcSet` in Mitosis too I hadn't realized we wanted to match React more closely...
@shubham-y Sorry for the delay here! Wanted to chime in with an overall idea for the new approach: Instead of making the initial HTML casing our default (e.g. `srcset`), we...
We should change the warning to throw an error, or at least improve the warning: "Could not parse export: ignoring..."
Yeah, we're definitely open to producing the more idiomatic output! However, from reading SolidJS docs, it seems like the only other choice is `createStore` + `produce`, which does not map...
Asked questions in the SolidJS Discord, here's the thread https://discord.com/channels/722131463138705510/751355413701591120/1001192746301788180 We might want to try some of these options: - find a way to `batch` code (while making sure that...
@mhevery can this be closed?
Yeah, this suggestion effectively entails implementing what the `classnames` package does into Mitosis. I think, for now, folks who like those ergonomics can import `classnames` manually and use it, and...
Fully agree, providing some form of "hooks" support is probably a critical next feature for Mitosis. It's been on my mind...folks need a way to encapsulate complex logic and reuse...
@leopiccionia Thanks a lot for sharing, that's very valuable information!
I needed this as well to get `nps-utils` to play nicely with my scripts. Here's a workaround I built: ```ts /** * @type {(...additionalFlags: string[]) => (...scripts: string[]) => string}...