v1.4.0
What's Changed
- support redux devtools and adjusts namespace (Fix #4) by @le-nn in #15
- Support HandleDisposable on Store and ObserverComponent that realizes handling IDisposable. Generated disposables will be Disposed when the component is destroyed.
Express Subscribing of Events declaratively and safely.
Overrides on ObserverComponent or Store<>
An example on Store
protected override IEnumerable<IDisposable> OnHandleDisposable() {
yield return _loading.Subscribe(e => {
Mutate(state => state with { LoadingState = e, });
});
}
Full Changelog: v1.3.1...v1.4.0