v11.0.0-beta.2
Pre-release
Pre-release
11.0.0-beta.2 (2021-11-24)
Features
BREAKING CHANGES
rerender
has been renamed tochange
.
Thechange
method keeps the current fixture intact and invokesngOnChanges
.
The new rerender
method destroys the current component and creates a new instance with the updated properties.
BEFORE:
const { rerender } = render(...)
rerender({...})
AFTER:
const { change } = render(...)
change({...})