packages feed

lucid-alpine 0.1.0.6 → 0.1.0.7

raw patch · 3 files changed

+26/−2 lines, 3 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Lucid.Alpine: alpineSrc :: Text
- Lucid.Alpine: alpineSrcWithSemVer :: (Int, Int, Int) -> Text
- Lucid.Alpine: showT :: Show a => a -> Text

Files

ChangeLog.md view
@@ -23,3 +23,7 @@ ## 0.1.0.6  Add helpers for importing Alpine.js script++## 0.1.0.7++Export explicitly
lucid-alpine.cabal view
@@ -1,6 +1,6 @@ cabal-version:      1.12 name:               lucid-alpine-version:            0.1.0.6+version:            0.1.0.7 license:            BSD3 license-file:       LICENSE copyright:          2022 Monadic Systems LLC
src/Lucid/Alpine.hs view
@@ -1,6 +1,26 @@ {-# LANGUAGE OverloadedStrings #-} -module Lucid.Alpine where+module Lucid.Alpine+  ( xData_,+    xBind_,+    xHtml_,+    xCloak_,+    xEffect_,+    xFor_,+    xForKey_,+    xIf_,+    xIgnore_,+    xInit_,+    xModel_,+    xOn_,+    xRef_,+    xShow_,+    xText_,+    xTransition_,+    useAlpine,+    useAlpineVersion,+  )+where  import Data.Text (Text, intercalate, pack) import Lucid (Html, HtmlT, defer_, script_, src_)