mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
fix desktop and liveview compilation
This commit is contained in:
parent
0ef765e060
commit
62556b2c34
3 changed files with 4 additions and 4 deletions
|
@ -11,7 +11,7 @@ keywords = ["dom", "ui", "gui", "react"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
dioxus-core = { workspace = true, features = ["serialize"] }
|
dioxus-core = { workspace = true, features = ["serialize"] }
|
||||||
dioxus-html = { workspace = true, features = ["serialize", "native-bind"] }
|
dioxus-html = { workspace = true, features = ["serialize", "native-bind", "mounted", "eval"] }
|
||||||
dioxus-interpreter-js = { workspace = true }
|
dioxus-interpreter-js = { workspace = true }
|
||||||
dioxus-hot-reload = { workspace = true, optional = true }
|
dioxus-hot-reload = { workspace = true, optional = true }
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ tokio-stream = { version = "0.1.11", features = ["net"] }
|
||||||
tokio-util = { version = "0.7.4", features = ["rt"] }
|
tokio-util = { version = "0.7.4", features = ["rt"] }
|
||||||
serde = { version = "1.0.151", features = ["derive"] }
|
serde = { version = "1.0.151", features = ["derive"] }
|
||||||
serde_json = "1.0.91"
|
serde_json = "1.0.91"
|
||||||
dioxus-html = { workspace = true, features = ["serialize"] }
|
dioxus-html = { workspace = true, features = ["serialize", "eval", "mounted"] }
|
||||||
dioxus-core = { workspace = true, features = ["serialize"] }
|
dioxus-core = { workspace = true, features = ["serialize"] }
|
||||||
dioxus-interpreter-js = { workspace = true }
|
dioxus-interpreter-js = { workspace = true }
|
||||||
dioxus-hot-reload = { workspace = true, optional = true }
|
dioxus-hot-reload = { workspace = true, optional = true }
|
||||||
|
|
|
@ -16,8 +16,8 @@ impl LiveviewElement {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RenderedElementBacking for LiveviewElement {
|
impl RenderedElementBacking for LiveviewElement {
|
||||||
fn get_raw_element(&self) -> dioxus_html::MountedResult<&dyn std::any::Any> {
|
fn as_any(&self) -> &dyn std::any::Any {
|
||||||
Ok(self)
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
fn get_client_rect(
|
fn get_client_rect(
|
||||||
|
|
Loading…
Reference in a new issue