Releases: VerZsuT/react-afc
Releases · VerZsuT/react-afc
v2.3.2
v2.3.1: Bug fix
- Fixed bug with spread operator (
...state
fromreactive
)
v2.3.0: Injectable, inject
Changes
- Fixed bug in strict mode
- Added decorator
Injectable
- Added function
inject
Renamed
inRender
->onRender
getDispatcher
->getDispatch
afterMount
->onMount
afterDraw
->onDraw
afterUnmount
->onDestroy
Deprecated
inRender
getDispatcher
afterMount
afterUnmount
afterDraw
v2.2.0: 'reactive' and 'ref'
Changes
- Added
reactive
function. - Added
ref
function.
v2.1.1: Optimization
- During the first render (when the constructor is called), there is no more unnecessary updating of props.
createState
,getDispatcher
,useActions
,afterUnmount
,afterMount
,afterDraw
no longer adds hook logic during each call, which makes its performance independent of the number of calls.