├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── Setup.hs ├── reflex-dom-helpers.cabal ├── src └── Reflex │ ├── Tags.hs │ └── Tags │ ├── Attr.hs │ ├── AttrPrime.hs │ ├── DynAttr.hs │ ├── DynAttrPrime.hs │ ├── Simple.hs │ ├── SimpleClass.hs │ ├── SimplePrime.hs │ └── TH.hs ├── stack.yaml └── test └── Spec.hs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /reflex-dom-helpers.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/reflex-dom-helpers.cabal -------------------------------------------------------------------------------- /src/Reflex/Tags.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/src/Reflex/Tags.hs -------------------------------------------------------------------------------- /src/Reflex/Tags/Attr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/src/Reflex/Tags/Attr.hs -------------------------------------------------------------------------------- /src/Reflex/Tags/AttrPrime.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/src/Reflex/Tags/AttrPrime.hs -------------------------------------------------------------------------------- /src/Reflex/Tags/DynAttr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/src/Reflex/Tags/DynAttr.hs -------------------------------------------------------------------------------- /src/Reflex/Tags/DynAttrPrime.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/src/Reflex/Tags/DynAttrPrime.hs -------------------------------------------------------------------------------- /src/Reflex/Tags/Simple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/src/Reflex/Tags/Simple.hs -------------------------------------------------------------------------------- /src/Reflex/Tags/SimpleClass.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/src/Reflex/Tags/SimpleClass.hs -------------------------------------------------------------------------------- /src/Reflex/Tags/SimplePrime.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/src/Reflex/Tags/SimplePrime.hs -------------------------------------------------------------------------------- /src/Reflex/Tags/TH.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/src/Reflex/Tags/TH.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer-3-communications/reflex-dom-helpers/HEAD/test/Spec.hs --------------------------------------------------------------------------------