Skip to content

Commit 9492207

Browse files
committed
Updates for 0.12
1 parent e210049 commit 9492207

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

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": "#compiler/0.12",
20+
"purescript-prelude": "#compiler/0.12",
21+
"purescript-web-clipboard": "#compiler/0.12",
22+
"purescript-web-touchevents": "#compiler/0.12"
2223
}
2324
}

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)