Skip to content

Commit 6ba1c7d

Browse files
authored
Merge pull request #14 from garyb/compiler/0.12
Updates for 0.12
2 parents e210049 + 8a572e7 commit 6ba1c7d

File tree

5 files changed

+23
-15
lines changed

5 files changed

+23
-15
lines changed

.gitignore

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
/.*
2+
!/.gitignore
3+
!/.eslintrc.json
4+
!/.travis.yml
5+
package-lock.json
16
/bower_components/
27
/node_modules/
3-
/.pulp-cache/
48
/output/
5-
/.psc*
6-
/.psa*

bower.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
2+
33
"name": "purescript-dom-indexed",
44
"homepage": "https://github.com/slamdata/purescript-dom-indexed",
55
"description": "Typed DOM attributes and properties",
@@ -16,8 +16,9 @@
1616
"package.json"
1717
],
1818
"dependencies": {
19-
"purescript-prelude": "^3.0.0",
20-
"purescript-media-types": "^3.0.0",
21-
"purescript-dom": "^4.0.0"
19+
"purescript-media-types": "^4.0.0",
20+
"purescript-prelude": "^4.0.0",
21+
"purescript-web-clipboard": "^1.0.0",
22+
"purescript-web-touchevents": "^1.0.0"
2223
}
2324
}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"build": "pulp build -- --censor-lib --strict"
66
},
77
"devDependencies": {
8-
"pulp": "^11.0.0",
9-
"purescript-psa": "^0.5.1",
10-
"purescript": "^0.11.1",
11-
"rimraf": "^2.5.4"
8+
"pulp": "^12.2.0",
9+
"purescript-psa": "^0.6.0",
10+
"purescript": "slamdata/node-purescript#0.12",
11+
"rimraf": "^2.6.2"
1212
}
1313
}

src/DOM/HTML/Indexed.purs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
module DOM.HTML.Indexed where
22

3-
import DOM.Event.ClipboardEvent (ClipboardEvent)
4-
import DOM.Event.Types (Event, FocusEvent, KeyboardEvent, MouseEvent, TouchEvent, WheelEvent)
5-
import DOM.HTML.Event.Types (DragEvent)
63
import DOM.HTML.Indexed.ButtonType (ButtonType)
74
import DOM.HTML.Indexed.CrossOriginValue (CrossOriginValue)
85
import DOM.HTML.Indexed.DirValue (DirValue)
@@ -19,6 +16,14 @@ import DOM.HTML.Indexed.StepValue (StepValue)
1916
import DOM.HTML.Indexed.WrapValue (WrapValue)
2017
import Data.DateTime (DateTime)
2118
import Data.MediaType (MediaType)
19+
import Web.Clipboard.ClipboardEvent (ClipboardEvent)
20+
import Web.Event.Event (Event)
21+
import Web.HTML.Event.DragEvent (DragEvent)
22+
import Web.TouchEvent (TouchEvent)
23+
import Web.UIEvent.FocusEvent (FocusEvent)
24+
import Web.UIEvent.KeyboardEvent (KeyboardEvent)
25+
import Web.UIEvent.MouseEvent (MouseEvent)
26+
import Web.UIEvent.WheelEvent (WheelEvent)
2227

2328
type CSSPixel = Int
2429

src/DOM/HTML/Indexed/DirValue.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ renderDirValue :: DirValue -> String
99
renderDirValue = case _ of
1010
DirLTR -> "ltr"
1111
DirRTL -> "rtl"
12-
DirAuto -> "auto"
12+
DirAuto -> "auto"

0 commit comments

Comments
 (0)