Adam Perry
Adam Perry
https://github.com/anp/moxie/blob/main/dom/src/interfaces/node.rs#L65 https://doc.rust-lang.org/stable/std/fmt/struct.Arguments.html#method.as_str is stable as of 1.53.
Example: only file inputs should statically allow the `accept` attribute, i.e. this should be a compile error: ```rust input().type_("checkbox").accept("*").build() ``` I think this can be done by making `Input` and...
It would be useful to have a standalone example of making an html input element that is backed by a state variable.
Two API guidelines are in conflict for `Key`: * Smart pointers do not add inherent methods (C-SMART-PTR) * Only smart pointers implement Deref and DerefMut (C-DEREF) Key implements Deref (but...
I haven't paid a lot of attention to the directory structure exposed to Cargo, should go through and make sure we're not uploading stray files to crates.io.
The extra crate means we end up having to downcast from the typed information that the moxie-dom macros have to the web_sys::Element and web_sys::Node types.
Some options for progressively fancier setup: 1. just run `twiggy top`/`twigger monos` so the CI logs have the output 2. download the `main` branch's equivalent binary and run `twiggy diff`...
Should be doable with a setInterval stream and load() calls.