-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathalpha-diff
64 lines (49 loc) · 1.72 KB
/
alpha-diff
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
This is a MAJOR change.
---- Element - MAJOR ----
Changed:
- classifyDevice : Size -> Device
+ classifyDevice :
{ window | width : Basics.Int, height : Basics.Int }
-> Element.Device
---- Element.Attributes - MAJOR ----
Changed:
- inlineStyle : List ( String, String ) -> Attribute variation msg
+ inlineStyle :
String.String
-> String.String
-> Element.Internal.Model.Attribute variation msg
---- Element.Events - MAJOR ----
Added:
custom :
String.String
-> Json.Decode.Decoder
{ message : msg
, stopPropagation : Basics.Bool
, preventDefault : Basics.Bool
}
-> Element.Internal.Model.Attribute variation msg
preventDefaultOn :
String.String
-> Json.Decode.Decoder ( msg, Basics.Bool )
-> Element.Internal.Model.Attribute variation msg
stopPropagationOn :
String.String
-> Json.Decode.Decoder ( msg, Basics.Bool )
-> Element.Internal.Model.Attribute variation msg
Removed:
type alias Options = { stopPropagation : Bool, preventDefault : Bool }
defaultOptions : Options
onWithOptions :
String -> Options -> Decoder msg -> Attribute variation msg
---- Style - MAJOR ----
Added:
type alias Color = Style.Internal.Model.Color
rgb : Basics.Float -> Basics.Float -> Basics.Float -> Style.Color
rgba :
Basics.Float
-> Basics.Float
-> Basics.Float
-> Basics.Float
-> Style.Color
Removed:
unguarded : Option