0.3.2
redux-components 0.3.2 has been published to NPM.
0.3.2
Observable selector changes
We've made some changes to make observable selectors more convenient. None of these are breaking changes.
- All selectors on all ReduxComponents are now observable by default. It is no longer necessary to use
ObservableSelectorMixin.ObservableSelectorMixinwill continue to exist for backwards compatibility, but is simply an empty mixin now. - It is now possible to call
selector.nexteven if the selector's owning component is not yet mounted. The attachment of theObserverto the selector will then be deferred until the component is mounted. - The internal implementation of selectors has been refactored so that there is no penalty for the
Observableimplementation unless you actually attach anObserver.
0.3.1
Added component.isMounted() API
There is now a component.isMounted() API which returns true when the component is mounted and false otherwise.