packages feed

reflex-dom 0.6.0.0 → 0.6.1.0

raw patch · 3 files changed

+12/−4 lines, 3 filesdep ~aesondep ~basedep ~reflexPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: aeson, base, reflex, reflex-dom-core

API changes (from Hackage documentation)

- Reflex.Dom.Internal: attachHydrationWidget :: JSM () -> JSContextSingleton () -> (Event DomTimeline () -> IORef HydrationMode -> Maybe (IORef [(Node, HydrationRunnerT DomTimeline (DomCoreWidget ()) ())]) -> EventChannel -> PerformEventT DomTimeline DomHost (a, IORef (Maybe (EventTrigger DomTimeline ())))) -> IO (a, FireCommand DomTimeline DomHost)
+ Reflex.Dom.Internal: attachHydrationWidget :: () => JSM () -> JSContextSingleton () -> (Event DomTimeline () -> IORef HydrationMode -> Maybe (IORef [(Node, HydrationRunnerT DomTimeline (DomCoreWidget ()) ())]) -> EventChannel -> PerformEventT DomTimeline DomHost (a, IORef (Maybe (EventTrigger DomTimeline ())))) -> IO (a, FireCommand DomTimeline DomHost)
- Reflex.Dom.Internal: attachImmediateWidget :: (IORef HydrationMode -> EventChannel -> PerformEventT DomTimeline DomHost (a, IORef (Maybe (EventTrigger DomTimeline ())))) -> IO (a, FireCommand DomTimeline DomHost)
+ Reflex.Dom.Internal: attachImmediateWidget :: () => (IORef HydrationMode -> EventChannel -> PerformEventT DomTimeline DomHost (a, IORef (Maybe (EventTrigger DomTimeline ())))) -> IO (a, FireCommand DomTimeline DomHost)
- Reflex.Dom.Internal: attachWidget'' :: (EventChannel -> PerformEventT DomTimeline DomHost (a, IORef (Maybe (EventTrigger DomTimeline ())))) -> IO (a, FireCommand DomTimeline DomHost)
+ Reflex.Dom.Internal: attachWidget'' :: () => (EventChannel -> PerformEventT DomTimeline DomHost (a, IORef (Maybe (EventTrigger DomTimeline ())))) -> IO (a, FireCommand DomTimeline DomHost)
- Reflex.Dom.Internal: runDomHost :: DomHost a -> IO a
+ Reflex.Dom.Internal: runDomHost :: () => DomHost a -> IO a

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for reflex-dom +## 0.6.1.0++* Update for new dependent-map and dependent-sum (after the "some" package split)+ ## 0.6.0.0  * ([#379](https://github.com/reflex-frp/reflex-dom/pull/379)) Re-export all modules from `reflex-dom-core`. The newly re-exported modules are:
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2015, Obsidian Systems LLC+Copyright (c) 2020, Obsidian Systems LLC All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
reflex-dom.cabal view
@@ -1,8 +1,12 @@ cabal-version: 1.24 Name: reflex-dom-Version: 0.6.0.0+Version: 0.6.1.0 Synopsis: Functional Reactive Web Apps with Reflex Description:+  Web applications without callbacks or side-effects.+  Reflex-DOM brings the power of functional reactive programming (FRP) to the web.+  Build HTML and other Document Object Model (DOM) data with a pure functional interface.+  .   Reflex-DOM is a Functional Reactive web framework based on the Reflex FRP engine: <https://reflex-frp.org/>.   .   The @reflex-dom@ package is a small wrapper around the @reflex-dom-core@ package. It pulls in the@@ -69,8 +73,8 @@   build-depends:     base >= 4.7 && < 4.14,     bytestring == 0.10.*,-    reflex >= 0.6.2 && < 0.8,-    reflex-dom-core == 0.6.0.0,+    reflex >= 0.8 && < 0.9,+    reflex-dom-core == 0.6.1.0,     text == 1.2.*   if !impl(ghcjs)     if flag(use-warp) && (os(linux) || os(osx))