Greg Johnston

Results 477 comments of Greg Johnston

I'm a little confused -- Don't we already support custom error types in the `ServerFnError` type? (With the generic that defaults to `NoCustomError`?)

The issue here is relatively straightforward. The example reproduction uses an SVG with [three top-level elements](https://github.com/carloskiki/icondata/blob/main/icondata_cg/src/lib.rs#L6963-L6966): ```svg ``` `InertElement` expects to be given HTML for *one* element, and therefore to...

There is no way that I'm aware of to gracefully recover from panics in WASM, which means that if you cause a panic in user-land code there is no way...

I do not know if this is documented somewhere. I learned it somewhere in my last few years of working with Rust/WASM. If you Google "Rust WASM panic" you can...

PR welcome to remove it from the example, I don't think we run lints on the examples.

See comments on #3439 and [here](https://github.com/leptos-rs/leptos/pull/3274#issuecomment-2508672840); this will require a version bump from `leptos_axum`, so can be rolled into the planned 0.8 toward the end of this month. (And of...

Merged 0.8 to main; these changes are included in 0.8.0-alpha and -beta.

A PR for Option 3 is welcome (passing through a user-provided attribute), but it probably shouldn't be special-cased; the `component` macro should likely just pass through most or all attributes...

One thing I ran into just now while trying to use it: presumably it works best when parsers are `Send + Sync`, so the cached parser can be stored in...