File tree 4 files changed +13
-7
lines changed
4 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,12 @@ jobs:
12
12
- uses : actions/checkout@v2
13
13
14
14
- uses : purescript-contrib/setup-purescript@main
15
+ with :
16
+ purescript : " unstable"
15
17
16
- - uses : actions/setup-node@v1
18
+ - uses : actions/setup-node@v2
17
19
with :
18
- node-version : " 12 "
20
+ node-version : " 14 "
19
21
20
22
- name : Install dependencies
21
23
run : |
Original file line number Diff line number Diff line change 15
15
" package.json"
16
16
],
17
17
"dependencies" : {
18
- "purescript-media-types" : " ^5 .0.0" ,
19
- "purescript-prelude" : " ^5 .0.0" ,
20
- "purescript-web-clipboard" : " ^3 .0.0" ,
21
- "purescript-web-touchevents" : " ^3 .0.0"
18
+ "purescript-media-types" : " ^6 .0.0" ,
19
+ "purescript-prelude" : " ^6 .0.0" ,
20
+ "purescript-web-clipboard" : " ^4 .0.0" ,
21
+ "purescript-web-touchevents" : " ^4 .0.0"
22
22
}
23
23
}
Original file line number Diff line number Diff line change 5
5
"build" : " pulp build -- --censor-lib --strict"
6
6
},
7
7
"devDependencies" : {
8
- "pulp" : " ^15 .0.0" ,
8
+ "pulp" : " ^16 .0.0- 0" ,
9
9
"purescript-psa" : " ^0.8.2" ,
10
10
"rimraf" : " ^3.0.2"
11
11
}
Original file line number Diff line number Diff line change @@ -171,6 +171,7 @@ type HTMLaudio = Interactive
171
171
, muted :: Boolean
172
172
, preload :: PreloadValue
173
173
, src :: String
174
+ , onError :: Event
174
175
)
175
176
176
177
type HTMLb = Interactive ()
@@ -356,6 +357,8 @@ type HTMLinput = Interactive
356
357
, list :: String
357
358
, max :: Number
358
359
, min :: Number
360
+ , maxLength :: Int
361
+ , minLength :: Int
359
362
, multiple :: Boolean
360
363
, name :: String
361
364
, onAbort :: Event
@@ -636,6 +639,7 @@ type HTMLvideo = Interactive
636
639
, src :: String
637
640
, width :: CSSPixel
638
641
, type :: MediaType
642
+ , onError :: Event
639
643
)
640
644
641
645
type HTMLwbr = Interactive ()
You can’t perform that action at this time.
0 commit comments