taino-edit-dioxus 0.5.3

Dioxus adapter for taino-edit, the native-Rust WYSIWYG rich-text editor.
Documentation

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.