File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed
Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ let packages =
2222 " src/Fable.Recharts/Fable.Recharts.fsproj"
2323 ]
2424
25- let dotnetcliVersion = " 2.1.3 "
25+ let dotnetcliVersion = " 2.1.4 "
2626let mutable dotnetExePath = environVarOrDefault " DOTNET" " dotnet"
2727
2828// Clean and install dotnet SDK
Original file line number Diff line number Diff line change @@ -640,11 +640,13 @@ let inline ofOption (o: ReactElement option): ReactElement =
640640
641641/// Cast an int to a React element (erased in runtime)
642642let inline ofInt ( i : int ): ReactElement = unbox i
643+
643644/// Cast a float to a React element (erased in runtime)
644645let inline ofFloat ( f : float ): ReactElement = unbox f
645646
646647/// Returns a list **from .render() method**
647648let inline ofList ( els : ReactElement list ): ReactElement = unbox( List.toArray els)
649+
648650/// Returns an array **from .render() method**
649651let inline ofArray ( els : ReactElement array ): ReactElement = unbox els
650652
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
22<Project Sdk =" Microsoft.NET.Sdk" >
33 <PropertyGroup >
4- <Version >2.0.0-beta-002 </Version >
4+ <Version >2.0.0</Version >
55 <TargetFramework >netstandard1.6</TargetFramework >
66 </PropertyGroup >
77 <ItemGroup >
Original file line number Diff line number Diff line change 1+ ### 2.0.0
2+
3+ * Stable version
4+
15### 2.0.0-beta-002
26
37* Add BoxShadow CSSProp (@worldbeater )
You can’t perform that action at this time.
0 commit comments