-
-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 0.0.0 - Completed demo - Fixed bugs highlighted by the demo - Added disclaimer about the ugliness of the demo - Added info on where to find the project in the README.md Signed-off-by: Daniel Hunsaker <[email protected]>
- Loading branch information
1 parent
1ee6fce
commit 6acd327
Showing
5 changed files
with
336 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,193 @@ | ||
{ | ||
"bogus": { | ||
"type": "bogus", | ||
"label": "bogus" | ||
}, | ||
"button": { | ||
"type": "button", | ||
"label": "button" | ||
}, | ||
"checkbox": { | ||
"type": "checkbox", | ||
"label": "checkbox" | ||
}, | ||
"checklist": { | ||
"type": "checklist", | ||
"label": "checklist", | ||
"options": { | ||
"first": { | ||
"label": "first option" | ||
}, | ||
"second": { | ||
"label": "second option", | ||
"isOn": "on", | ||
"isOff": "off" | ||
} | ||
} | ||
}, | ||
"color": { | ||
"type": "color", | ||
"label": "color" | ||
}, | ||
"date": { | ||
"type": "date", | ||
"label": "date" | ||
"label": "date", | ||
"placeholder": "date" | ||
}, | ||
"datetime": { | ||
"type": "datetime", | ||
"label": "datetime" | ||
"label": "datetime", | ||
"placeholder": "datetime" | ||
}, | ||
"datetime-local": { | ||
"type": "datetime-local", | ||
"label": "datetime-local" | ||
"label": "datetime-local", | ||
"placeholder": "datetime-local" | ||
}, | ||
"email": { | ||
"type": "email", | ||
"label": "email" | ||
"label": "email", | ||
"placeholder": "email" | ||
}, | ||
"file": { | ||
"type": "file", | ||
"label": "file", | ||
"multiple": true | ||
}, | ||
"hidden": { | ||
"type": "hidden", | ||
"label": "hidden", | ||
"val": "hidden" | ||
}, | ||
"image": { | ||
"type": "image", | ||
"label": "image", | ||
"source": "http://angularjs.org/img/AngularJS-large.png" | ||
}, | ||
"legend": { | ||
"type": "legend", | ||
"label": "legend" | ||
}, | ||
"month": { | ||
"type": "month", | ||
"label": "month", | ||
"placeholder": "month" | ||
}, | ||
"number": { | ||
"type": "number", | ||
"label": "number" | ||
"label": "number", | ||
"placeholder": "number" | ||
}, | ||
"password": { | ||
"type": "password", | ||
"label": "password" | ||
"label": "password", | ||
"placeholder": "password" | ||
}, | ||
"radio": { | ||
"type": "radio", | ||
"label": "radio", | ||
"values": { | ||
"first": "first option", | ||
"second": "second option", | ||
"third": "third option", | ||
"fourth": "fourth option", | ||
"fifth": "fifth option" | ||
} | ||
}, | ||
"range": { | ||
"type": "range", | ||
"label": "range", | ||
"model": "number", | ||
"val": 42, | ||
"minValue": -42, | ||
"maxValue": 84 | ||
}, | ||
"reset": { | ||
"type": "reset", | ||
"label": "reset" | ||
}, | ||
"search": { | ||
"type": "search", | ||
"label": "search", | ||
"placeholder": "search" | ||
}, | ||
"select": { | ||
"type": "select", | ||
"label": "select", | ||
"empty": "nothing selected", | ||
"options": { | ||
"first": { | ||
"label": "first option" | ||
}, | ||
"second": { | ||
"label": "second option", | ||
"group": "first group" | ||
}, | ||
"third": { | ||
"label": "third option", | ||
"group": "second group" | ||
}, | ||
"fourth": { | ||
"label": "fourth option", | ||
"group": "first group" | ||
}, | ||
"fifth": { | ||
"label": "fifth option" | ||
}, | ||
"sixth": { | ||
"label": "sixth option", | ||
"group": "second group" | ||
}, | ||
"seventh": { | ||
"label": "seventh option" | ||
}, | ||
"eighth": { | ||
"label": "eighth option", | ||
"group": "first group" | ||
}, | ||
"ninth": { | ||
"label": "ninth option", | ||
"group": "second group" | ||
}, | ||
"tenth": { | ||
"label": "tenth option" | ||
} | ||
} | ||
}, | ||
"submit": { | ||
"type": "submit", | ||
"label": "submit" | ||
}, | ||
"tel": { | ||
"type": "tel", | ||
"label": "tel", | ||
"placeholder": "tel" | ||
}, | ||
"text": { | ||
"type": "text", | ||
"label": "text" | ||
"label": "text", | ||
"placeholder": "text" | ||
}, | ||
"textarea": { | ||
"type": "textarea", | ||
"label": "textarea" | ||
"label": "textarea", | ||
"placeholder": "textarea", | ||
"splitBy": "\n", | ||
"val": ["This array should be","separated by new lines"] | ||
}, | ||
"time": { | ||
"type": "time", | ||
"label": "time" | ||
"label": "time", | ||
"placeholder": "time" | ||
}, | ||
"url": { | ||
"type": "url", | ||
"label": "url" | ||
"label": "url", | ||
"placeholder": "url" | ||
}, | ||
"week": { | ||
"type": "week", | ||
"label": "week", | ||
"placeholder": "week" | ||
} | ||
} |
Oops, something went wrong.