[Documentation] Add number input

Fixes #1628
numberfield added to .md files;
This commit is contained in:
Charles Hacskaylo 2017-06-23 14:32:21 -07:00
parent e7ba13f844
commit 9ca8975baf
2 changed files with 6 additions and 4 deletions

View File

@ -933,9 +933,10 @@ Note that `templateUrl` is not supported for `containers`.
Controls provide options for the `mct-control` directive. Controls provide options for the `mct-control` directive.
Ten standard control types are included in the forms bundle: These standard control types are included in the forms bundle:
* `textfield`: An area to enter plain text. * `textfield`: A text input to enter plain text.
* `numberfield`: A text input to enter numbers.
* `select`: A drop-down list of options. * `select`: A drop-down list of options.
* `checkbox`: A box which may be checked/unchecked. * `checkbox`: A box which may be checked/unchecked.
* `color`: A color picker. * `color`: A color picker.

View File

@ -100,9 +100,10 @@ a form appropriate to pass to a `RegExp` constructor.
## Adding controls ## Adding controls
Four standard control types are included in the forms bundle: These control types are included in the forms bundle:
* `textfield`: An area to enter plain text. * `textfield`: A text input to enter plain text.
* `numberfield`: A text input to enter numbers.
* `select`: A drop-down list of options. * `select`: A drop-down list of options.
* `checkbox`: A box which may be checked/unchecked. * `checkbox`: A box which may be checked/unchecked.
* `color`: A color picker. * `color`: A color picker.