taino-edit-dioxus — the Dioxus adapter for taino-edit.
Mirrors taino-edit-leptos: a [TainoEditor] component takes a
[Signal<EditorState>] and mounts a [taino_edit_dom::EditorView]
inside its rendered <div>, reconciling the DOM on every signal
change and folding browser-side edits back into the signal.
Browser events (input, compositionstart/compositionend, paste,
pointer mousedown/mousemove/mouseup, selectionchange) are wired
with the same raw web-sys listeners the Leptos adapter uses — they are
registered on the mounted element (and, for selectionchange, on
document) and kept alive in the component's runtime slot. Optional
[ViewPlugin]s (e.g. TableView) can be installed via the [ViewPlugins]
prop, giving full event- and plugin-wiring parity with taino-edit-leptos.