Merge branch 'develop' into release/0.6.1.0

This commit is contained in:
Ali Abrar 2020-11-06 10:14:52 -05:00
commit 3e70474e65
2 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@
* Fix ([#467](https://github.com/reflex-frp/reflex-dom/issues/467)): Prevent multiple firings of XHR response event
* Updates for GHC 8.10
* Move `HasSetValue` from Reflex.Dom.Widget.Input to Reflex.Dom.Builder.Class and add an instance for `TextAreaElementConfig`
* Add `now` to the `MonadHold` instance for `UnrunnableT`
## 0.6.0.0

View File

@ -211,6 +211,7 @@ instance (Monad m, MonadHold t m) => MonadHold t (UnrunnableT js t m) where
holdIncremental _ _ = unrunnable
buildDynamic _ _ = unrunnable
headE _ = unrunnable
now = unrunnable
instance Monad m => MonadSample t (UnrunnableT js t m) where
sample _ = unrunnable
instance Monad m => MonadIO (UnrunnableT js t m) where