re-reselect
Advanced tools
Changelog
5.0.0
reselect
v5reselect
v4 -createCachedSelector
default exportChangelog
4.0.1
clearCache
from CreateSelectorInstance
typeChangelog
4.0.0
createCachedSelector(...)(arguments)
call with multiple argumentsFifoCacheObject
, FlatCacheObject
, LruCacheObject
exportscreateStructuredSelector
have been changed. Explicitly setting State
and Parameter
types is no longer required (nor possible), please update the typings as follows if necessary:// Before:
const selector = createStructuredCachedSelector<State, string>({
x: (state, id) => state.a[id],
})((state, id) => id);
// After:
const selector = createStructuredCachedSelector({
x: (state: State, id: string) => state.a[id],
})((state, id) => id);
createStructuredSelector
typingscreateCachedSelector
as both default and named exportChangelog
3.4.0
Changelog
3.0.0
dependencies
propertyChangelog
2.3.0
dependencies
propertyrecomputations
methodresetRecomputations
method