-
Notifications
You must be signed in to change notification settings - Fork 0
/
reflex-dom-htmlea.cabal
75 lines (73 loc) · 3.63 KB
/
reflex-dom-htmlea.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: reflex-dom-htmlea
version: 0.1.1.7
synopsis: A reflex-dom API for HTML elements and attributes.
description: This package introduces sets of functions for writing
html elements and attributes. This way the compiler
can help to avoid some of the typos that otherwise would
have to be debugged out on runtime (that can happen
easily with el-family of functions). The functions
introduced in this package can be used together with
el-family of functions.
license: BSD3
license-file: LICENSE
author: gspia
maintainer: Use github to contact gspia
copyright: All rights reserved, gspia
category: Web
build-type: Simple
extra-source-files:
cabal-version: >=1.24
library
exposed-modules: Reflex.Dom.HTML5.Attrs
, Reflex.Dom.HTML5.Attrs.AnyAttr
, Reflex.Dom.HTML5.Attrs.Aria
, Reflex.Dom.HTML5.Attrs.Attrs
, Reflex.Dom.HTML5.Attrs.Common
, Reflex.Dom.HTML5.Attrs.Globals
, Reflex.Dom.HTML5.Attrs.DataAttrs
, Reflex.Dom.HTML5.Elements
-- , Reflex.Dom.HTML5.Elements.Class
, Reflex.Dom.HTML5.Elements.Elements
, Reflex.Dom.HTML5.Elements.Embedded
, Reflex.Dom.HTML5.Elements.Interactive
, Reflex.Dom.HTML5.Elements.Metadata
, Reflex.Dom.HTML5.Elements.SectionHead
, Reflex.Dom.HTML5.Elements.Tabular
, Reflex.Dom.HTML5.Component
, Reflex.Dom.HTML5.Component.Common.CompEvent
, Reflex.Dom.HTML5.Component.Common.DrawFuns
, Reflex.Dom.HTML5.Component.Common.StateInfo
, Reflex.Dom.HTML5.Component.Common.RfpUtils
, Reflex.Dom.HTML5.Component.Table
, Reflex.Dom.HTML5.Component.Table.Common
, Reflex.Dom.HTML5.Component.Table.ActElem
, Reflex.Dom.HTML5.Component.Table.Table
, Reflex.Dom.HTML5.Component.Table.TdComb
, Reflex.Dom.HTML5.Component.Table.TfootComb
, Reflex.Dom.HTML5.Component.Table.ThComb
, Reflex.Dom.HTML5.Component.Tree
, Reflex.Dom.HTML5.Component.Tree.Common
, Reflex.Dom.HTML5.Component.Tree.ActNode
, Reflex.Dom.HTML5.Component.Tree.RootCombNS
, Reflex.Dom.HTML5.Component.Tree.LevelNCombNS
, Reflex.Dom.HTML5.Component.Tree.Tree
-- , Reflex.Dom.HTML5.Component.Tree.RootComb
-- , Reflex.Dom.HTML5.Component.Tree.LiComb
hs-source-dirs: lib/src
default-language: Haskell2010
build-depends: base
, containers
-- , data-default
, ghcjs-dom
, lens
, mtl
, reflex
, reflex-dom
, reflex-dom-core
, text
, vector
, jsaddle
, jsaddle-warp
ghc-options: -Wall -O2 -Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wmissing-import-lists