Skip to content

Commit

Permalink
Fixed GridSpacing
Browse files Browse the repository at this point in the history
  • Loading branch information
mvsmal committed Aug 13, 2018
1 parent a2fe315 commit 03d4397
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
* 1.0.3 - Fixed naming of GridSpacing enum. Now it is called GridSpacing instead of Spacing
* 1.0.2 - Fixed import issues
* 1.0.1 - Added binding for `withWidth` HOC
* 1.0.0 - This is the first version of bindings with all components covered
8 changes: 4 additions & 4 deletions src/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("Fable.MaterialUI")>]
[<assembly: AssemblyProductAttribute("Fable.MaterialUI")>]
[<assembly: AssemblyDescriptionAttribute("Fable bindings for MaterialUI")>]
[<assembly: AssemblyVersionAttribute("1.0.2")>]
[<assembly: AssemblyFileVersionAttribute("1.0.2")>]
[<assembly: AssemblyVersionAttribute("1.0.3")>]
[<assembly: AssemblyFileVersionAttribute("1.0.3")>]
[<assembly: AssemblyConfigurationAttribute("Release")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "Fable.MaterialUI"
let [<Literal>] AssemblyProduct = "Fable.MaterialUI"
let [<Literal>] AssemblyDescription = "Fable bindings for MaterialUI"
let [<Literal>] AssemblyVersion = "1.0.2"
let [<Literal>] AssemblyFileVersion = "1.0.2"
let [<Literal>] AssemblyVersion = "1.0.3"
let [<Literal>] AssemblyFileVersion = "1.0.3"
let [<Literal>] AssemblyConfiguration = "Release"
4 changes: 2 additions & 2 deletions src/Fable.Helpers.MaterialUI.Props.fs
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ type [<StringEnum; RequireQualifiedAccess>] Direction =
| [<CompiledName("row-reverse")>] RowReverse
| [<CompiledName("column-reverse")>] ColumnReverse

type [<RequireQualifiedAccess>] Spacing =
type [<RequireQualifiedAccess>] GridSpacing =
| ``0`` = 0
| ``8`` = 8
| ``16`` = 16
Expand Down Expand Up @@ -375,7 +375,7 @@ type GridProp =
| Sm of GridSize
| Xl of GridSize
| Xs of GridSize
| Spacing of Spacing
| Spacing of GridSpacing
| Wrap of Wrap
| ZeroMinWidth of bool
interface IHTMLProp
Expand Down

0 comments on commit 03d4397

Please sign in to comment.