useDeepCommandState — useCommandState with deep (Proxy-backed) reactivity.
Identical dispatch/coalesce/cleanup semantics to useCommandState; the only
difference is the returned state is a deep ref(), so BOTH command-driven
whole-value replacement AND direct nested mutation
(state.value.a.b = c) trigger reactivity. Use it for hybrid models that mix
command dispatch with two-way bound fields. For pure command-driven state,
prefer the faster useCommandState from the core.
useDeepCommandState —
useCommandStatewith deep (Proxy-backed) reactivity.Identical dispatch/coalesce/cleanup semantics to
useCommandState; the only difference is the returnedstateis a deepref(), so BOTH command-driven whole-value replacement AND direct nested mutation (state.value.a.b = c) trigger reactivity. Use it for hybrid models that mix command dispatch with two-way bound fields. For pure command-driven state, prefer the fasteruseCommandStatefrom the core.