Skip to content
This repository was archived by the owner on Jan 20, 2022. It is now read-only.

Releases: mozilla/reflex-virtual-dom-driver

Fix regression introduced by 0.2.4

Choose a tag to compare

@Gozala Gozala released this 03 Nov 23:03

0.2.4 introduced a regression that was causing errors in browser due to incorrect use of window.requestAnimationFrame. This release fixes that regression.

Add profiling hooks

Choose a tag to compare

@Gozala Gozala released this 03 Nov 17:05

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

Choose a tag to compare

@Gozala Gozala released this 28 Sep 11:20
Version 0.2.3

Fix behavior of value property on textarea

Choose a tag to compare

@Gozala Gozala released this 18 Jan 07:00

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

Choose a tag to compare

@Gozala Gozala released this 15 Jan 09:41

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

Choose a tag to compare

@Gozala Gozala released this 23 Oct 01:03

This realize fixes event listener cleanup or more specifically they are no longer expected to be functions.

Initial release

Choose a tag to compare

@Gozala Gozala released this 23 Oct 01:02

Initial implementation for virtual-dom base render-driver for reflex.