Skip to content

Commit

Permalink
Bump version to 1.1.0-beta-4
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin committed Jul 6, 2017
1 parent 8b6ab0b commit 27d711a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.1.0-beta-4

* Adding record type for DialogActionProp

### 1.1.0-beta-3

* Module is now public
Expand Down
10 changes: 5 additions & 5 deletions src/Fable.Helpers.ReactToolbox.fs
Original file line number Diff line number Diff line change
Expand Up @@ -339,13 +339,13 @@ type DialogTheme =
| Navigation of string
| Title of string

type DialogActionProps =
| Label of string
| OnClick of (React.MouseEvent -> unit)
interface IReactToolboxProp
[<Pojo>]
type DialogActionProp =
{ label: string
onClick: unit -> unit }

type DialogProps =
| Actions of IHTMLProp list array
| Actions of DialogActionProp array
| Active of bool
| Children of React.ReactNode
| OnEscKeyDown of Function
Expand Down

0 comments on commit 27d711a

Please sign in to comment.