-
Notifications
You must be signed in to change notification settings - Fork 10
/
reflex-dom-semui.cabal
82 lines (72 loc) · 2.14 KB
/
reflex-dom-semui.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
76
77
78
79
80
81
82
name: reflex-dom-semui
version: 0.1
license: BSD3
license-file: LICENSE
synopsis: A reflex-dom API for semantic-ui components
description: This package provides a Reflex wrapper around the
Semantic UI components. The goal is to make it fast
and easy to build nice looking applications and make
Semantic UI functionality a lot more discoverable.
author: Doug Beardsley
maintainer: [email protected]
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files:
lib/semantic.min.css
lib/themes
library
hs-source-dirs: src
js-sources:
-- Order is important: jquery is used by semantic but must come after.
lib/semantic.min.js,
lib/jquery.min.js
exposed-modules:
Reflex.Dom.SemanticUI
Reflex.Dom.SemanticUI.Button
Reflex.Dom.SemanticUI.Checkbox
Reflex.Dom.SemanticUI.Common
Reflex.Dom.SemanticUI.Container
Reflex.Dom.SemanticUI.Dropdown
Reflex.Dom.SemanticUI.Icon
Reflex.Dom.SemanticUI.Input
Reflex.Dom.SemanticUI.Modal
Reflex.Dom.SemanticUI.RadioGroup
build-depends:
base >= 4.8 && < 4.12
, containers
, data-default
, file-embed >= 0.0.10 && < 0.1
, ghcjs-base
, ghcjs-dom
, jsaddle >= 0.8.0.0 && < 0.10
, lens
, mtl
, reflex >= 0.5 && < 0.6
, reflex-dom-core >= 0.4 && < 0.5
, text
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-orphans
cpp-options: -D_GHCJS_ -DGHCJS_GC_INTERVAL=60000
default-language: Haskell2010
test-suite example
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: StateEnum, CountryEnum
hs-source-dirs: example
default-language: Haskell2010
default-extensions:
CPP
build-depends:
base
, containers
, dependent-sum
, ghcjs-dom
, lens
, mtl
, reflex >= 0.5 && < 0.6
, reflex-dom-core >= 0.4 && < 0.5
, reflex-dom-semui
, text
source-repository head
type: git
location: https://github.com/reflex-frp/reflex-dom-semui