Skip to content

Commit

Permalink
fix(modal): Event args list in meta.json
Browse files Browse the repository at this point in the history
  • Loading branch information
tmorehouse authored Jul 6, 2017
1 parent 3361911 commit 7b8ce01
Showing 1 changed file with 21 additions and 13 deletions.
34 changes: 21 additions & 13 deletions docs/components/modal/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"args": [
{
"arg": "is_visible",
"description": ""
"description": "true if modal is visble, false otherwise"
}
],
"description": "new modal visibility state"
Expand All @@ -19,30 +19,38 @@
{
"event": "hidden",
"description": "always emits after modal is hidden",
"args": {
"e": "Close event object. Non Cancellable: See docs"
}
"args": [
{
"e": "Close event object. Non Cancellable: See docs"
}
]
},
{
"event": "hide",
"description": "always emits just before modal has hidden",
"args": {
"e": "Close event object. Cancellable: See docs"
}
"args": [
{
"e": "Close event object. Cancellable: See docs"
}
]
},
{
"event": "ok",
"description": "when default OK button pressed, just before modal has hidden",
"args": {
"e": "Close event object. Cancellable: See docs"
}
"args": [
{
"e": "Close event object. Cancellable: See docs"
}
]
},
{
"event": "cancel",
"description": "when default CANCEL button pressed, just before modal has hidden",
"args": {
"e": "Close event object. Cancelable: See docs"
}
"args": [
{
"e": "Close event object. Cancelable: See docs"
}
]
}
],
"slots": [
Expand Down

0 comments on commit 7b8ce01

Please sign in to comment.