packages feed

threepenny-gui 0.4.0.1 → 0.4.0.2

raw patch · 4 files changed

+13/−3 lines, 4 filesdep ~bytestring

Dependency ranges changed: bytestring

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ ## Changelog for the `threepenny-gui` package +**0.4.0.1** -- Bugfix release.++* Fix CSS bug for `grid` function.+ **0.4.0.0** -- Snapshot release.  * New `UI` monad for easier JavaScript FFI and recursion in FRP.
src/Graphics/UI/Threepenny/Internal/Types.hs view
@@ -37,7 +37,13 @@ newtype ElementId = ElementId BS.ByteString     deriving (Data,Typeable,Show,Eq,Ord) -instance NFData ElementId where rnf (ElementId x) = rnf x+instance NFData ElementId where+    rnf (ElementId x) =+#if MIN_VERSION_bytestring(0, 10, 0)+        rnf x+#else+        BS.length x `seq` ()+#endif  type EventId  = String type Handlers = Map EventId (E.Handler EventData)
src/Graphics/UI/driver.css view
@@ -1,3 +1,3 @@-.tabel      { display: table; }+.table { display: table; } .table-row  { display: table-row; } .table-cell { display: table-cell; }
threepenny-gui.cabal view
@@ -1,5 +1,5 @@ Name:                threepenny-gui-Version:             0.4.0.1+Version:             0.4.0.2 Synopsis:            GUI framework that uses the web browser as a display. Description:     Threepenny-GUI is a GUI framework that uses the web browser as a display.