This repository was archived by the owner on Jan 20, 2022. It is now read-only.
Releases: mozilla/reflex-virtual-dom-driver
Releases · mozilla/reflex-virtual-dom-driver
Release list
Fix regression introduced by 0.2.4
Add profiling hooks
In this release reflex-virtual-dom-driver/lib/profiler module has being added that can be used to profile application performance more specifically to analyze time spend on rendering / diffing / patching.
0.2.3
Fix behavior of value property on textarea
Previously setting value on textarea element would change a cursor position, which rendered it pretty useless for majority of cases. In this release value property on textarea get's same treatment as of input - cursor position will be kept as long as value in text-area matches value actually it currently holds.
Prefer DOM properties over attributes
Switch preference towards DOM properties.
- This improves compatibility with react-driver as it copies it’s configuration in regards to property vs attribute use.
- This avoid pitfalls of boolean attributes which are extremely annoying.
Fix event listener cleanup
This realize fixes event listener cleanup or more specifically they are no longer expected to be functions.
Initial release
Initial implementation for virtual-dom base render-driver for reflex.