mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* Separate hydration and render queue. * Revert "Fix issue with node refs and hydration (#2597)" This reverts commit 469cc341c340bd0093d9233847f523b66a18fd90. * Priority Render. * Add some tests. * Add more tests. * Add test result after click. * Fix test comment. * Fix test timing. * Restore test. * Once AtomicBool, now a Cell. * Prefer use_future. * Revealing of Suspense always happen after the component has re-rendered itself. * Shifting should register correct next_sibling. * Revert to HashMap. * cargo +nightly fmt. * Fix comment. * Optimise Code size? * Add comment if assertion fails. * Revert "Merge branch 'hydration-4' into fc-prepared-state" This reverts commit 427b087d4db6b2e497ad618273655bd18ba9bd01, reversing changes made to 109fcfaa127aefc5fa3c697e254fe2c049292be2. * Revert "Revert "Merge branch 'hydration-4' into fc-prepared-state"" This reverts commit f1e408958d94cb13813ce75aa6f0aad06c9fa3e8. * Redo #2957.
14 lines
312 B
TOML
14 lines
312 B
TOML
[package]
|
|
name = "js_callback"
|
|
version = "0.1.0"
|
|
authors = ["Scott Steele <scottlsteele@gmail.com>"]
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
wasm-bindgen = "0.2"
|
|
yew = { path = "../../packages/yew", features = ["csr", "tokio"] }
|
|
wasm-bindgen-futures = "0.4"
|
|
js-sys = "0.3"
|
|
once_cell = "1"
|