Changelog
2.4.6 - 2021-07-12
input
Changelog
2.4.5 - 2021-07-02
kea-router
pluginChangelog
2.4.4 - 2021-06-27
kea-router
pluginChangelog
2.4.3 - 2021-06-26
kea-router
pluginChangelog
2.4.2 - 2021-05-17
const logic = kea({ inherit: [otherLogic], actions: {...} })
.
This makes a copy of the inputs for otherLogic
. Actions and values will not be shared between the two logics.Changelog
2.4.0 - 2021-05-02
path
(or when not using the kea babel plugin) from kea.inline
to kea.logic
. If you have ever hardcoded
"kea.inline"
anywhere, perhaps in tests, this will cause a bit of headache. If you need it set at kea.inline
, use
resetContext({ defaultPath: ['kea', 'inline'] })
.<Provider />
tag to simplify calling React-Redux's <Provider store={getContext().store} />
.Changelog
2.3.8 - 2021-04-26
key: props => props.id || 'default'