chore(repo): save local work

This commit is contained in:
slhx agent
2026-07-27 13:23:56 +02:00
parent 276f40ee59
commit 2dc7703936
5 changed files with 61 additions and 8 deletions
+2 -2
View File
@@ -155,7 +155,7 @@ client app state framework.
004 Ordinary page navigation must not require user-authored handlers. Explicit navigation handlers are available only when custom application logic is needed, and they still return generated target/page commands. [north_star]
005 Browser back/forward is supported. On `popstate`, hemx fetches the URL as a partial request and applies the same page-swap update without pushing a new history entry. [north_star]
005 Browser back/forward restores a saved generated page snapshot and scroll position when available, otherwise fetches the URL as a partial request without pushing a new entry. [north_star]
006 If a page lacks the expected `content` slot, hemx-axum falls back to normal browser navigation in production and emits a diagnostic in development. [north_star]
@@ -1011,7 +1011,7 @@ async fn delete(app: State<App>, todo_id: TodoId) -> impl IntoEffect
013 Static empty confirmation messages are build errors: they silently disable the guard in browsers. Custom confirm UI belongs to integration crates.
014 `data-hemx-revealed` dispatches once when the element enters view, with an immediate fallback when `IntersectionObserver` is unavailable.
014 `data-hemx-revealed` dispatches once when the element enters view, re-arms after browser page restoration, and has an immediate fallback when `IntersectionObserver` is unavailable.
015 Duplicate timers/observers per root are avoided.