Skip to content

v1.4.0

Compare
Choose a tag to compare
@le-nn le-nn released this 23 Mar 10:32
· 67 commits to main since this release
f401674

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