Noah Baldwin

Results 50 comments of Noah Baldwin

Adding a hidden link it's very scaleable if I need to manually add that for every case I have a `href` within `FocusScope`, let alone even remembering/realising I need to...

Sure, there's a few component patterns this is affecting for me (a dialog/modal and pop-out aside). Here's an example (in this case it's trying to scroll to the heading at...

I don’t actually use Yazellix so I’m not sure I’m the best to do the whole thing as I’m not really gonna be able to properly test it. Perhaps I...

Hey if it helps I've found a few documents which will become invalid/broken after parsing and serializing and then viewing in Firefox. Perhaps these can help? [Arch Linux Logo](https://archlinux.org/static/logos/archlinux-logo-dark-scalable.518881f04ca9.svg) [Blobs](https://gitlab.gnome.org/GNOME/gnome-backgrounds/-/blob/main/backgrounds/blobs-d.svg)...

I've found that the issue occurs in the expansion of `#[napi]` in this function ```rust #[cfg(feature = "napi")] #[allow(non_snake_case)] #[allow(clippy::all)] #[cfg(all(not(test), not(target_family = "wasm")))] #[napi::ctor::ctor(crate_path = napi::ctor)] fn __napi_register__XMLNSOrder_52() {...

No idea if this is a reasonable fix, but flattening it so it doesn't have `static` gets rid of the error ```diff #[cfg_attr( any( target_os = "linux", target_os = "android",...

Alternatively, it may be worth being able to specify `#[napi(object)]` ``` #[napi(object)] enum Foo { Bar } // equivalent #[napi(object)] enum Foo { Bar() } ```

I still seem to be seeing an error unfortunately Error ``` = note: /usr/bin/ld: /home/noah/Projects/oxvg/target/debug/deps/liboxvg_optimiser-15dcb19bb4e65d6d.rlib(oxvg_optimiser-15dcb19bb4e65d6d.2padazl5ih76j7qm20lzqh11a.rcgu.o): in function `ox /home/noah/Projects/oxvg/crates/oxvg_optimiser/src/jobs/convert_colors.rs:25:(.text._ZN14oxvg_optimiser4jobs14convert_colors40__register__enum__ConvertCase_callback__17h567d777ef /usr/bin/ld: /home/noah/Projects/oxvg/crates/oxvg_optimiser/src/jobs/convert_colors.rs:25:(.text._ZN14oxvg_optimiser4jobs14convert_colors40__register__enum__ConvertCase_callback_ /usr/bin/ld: /home/noah/Projects/oxvg/crates/oxvg_optimiser/src/jobs/convert_colors.rs:25:(.text._ZN14oxvg_optimiser4jobs14convert_colors40__register__enum__ConvertCase_callback_ /usr/bin/ld: /home/noah/Projects/oxvg/target/debug/deps/libnapi-6a959227257c2961.rlib(napi-6a959227257c2961.napi.7d2bee03169df54b-cgu.12.rcgu.o): in function `napi::bindgen_runti /home/noah/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/napi-3.0.0-alpha.33/src/bindgen_runtime/js_values/number.rs:25:(.text._ZN4napi15bindgen_runtime9js_values6number79 collect2:...

I had another go at trying to resolve this issue for my project. Still not really sure what was _causing_ the issue, but I have found that forcing the enum...

For sure, but given that there exists an ideal order, I think it makes sense to use that by default rather than leave it to the user?