Skip to content

Commit

Permalink
Fix types again
Browse files Browse the repository at this point in the history
- Also update Feliz.Bulma ...
  • Loading branch information
dbrattli committed Apr 26, 2020
1 parent 10c0fbe commit b21f3b8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
7 changes: 3 additions & 4 deletions Feliz.Bulma.ViewEngine/Feliz.Bulma.ViewEngine.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>Feliz.Bulma.ViewEngine</PackageId>
<Version>0.1.0</Version>
<PackageVersion>0.1.0</PackageVersion>
<Author>Dag Brattli</Author>
<Company>Brattli Labs</Company>
<Copyright>Brattli Labs</Copyright>
<Copyright>Roman Provazník</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://github.com/dbrattli/Feliz.ViewEngine</RepositoryUrl>
</PropertyGroup>
Expand All @@ -22,8 +24,5 @@
<ItemGroup>
<Content Include="*.fsproj; *.fs; *.js;" PackagePath="fable\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\src\Feliz.ViewEngine.fsproj" />
</ItemGroup>
<Import Project=".paket\Paket.Restore.targets" />
</Project>
5 changes: 3 additions & 2 deletions Feliz.Bulma.ViewEngine/paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ source https://www.nuget.org/api/v2
storage: none

group Main
source https://www.nuget.org/api/v2
source https://www.nuget.org/api/v2
storage: none
framework: netstandard2.0

nuget FSharp.Core ~> 4.7 lowest_matching: true
nuget Feliz.ViewEngine
nuget Feliz.ViewEngine >= 0.15
2 changes: 1 addition & 1 deletion Feliz.Bulma.ViewEngine/paket.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ STORAGE: NONE
RESTRICTION: == netstandard2.0
NUGET
remote: https://www.nuget.org/api/v2
Feliz.ViewEngine (0.14)
Feliz.ViewEngine (0.15)
FSharp.Core (>= 4.7 < 5.0)
FSharp.Core (4.7)
2 changes: 1 addition & 1 deletion src/Properties.fs
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ type prop =

/// Children of this React element.
static member inline children (value: ReactElement) = Children [ value ]
static member inline children (elems: seq<ReactElement>) = List.ofSeq elems |> Children
static member inline children (elems: #seq<ReactElement>) = List.ofSeq elems |> Children

/// A URL that designates a source document or message for the information quoted. This attribute is intended to
/// point to information explaining the context or the reference for the quote.
Expand Down

0 comments on commit b21f3b8

Please sign in to comment.