From 9ca8975baf4f39cab1a478bf56978d1be067acea Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Fri, 23 Jun 2017 14:32:21 -0700 Subject: [PATCH] [Documentation] Add number input Fixes #1628 numberfield added to .md files; --- docs/src/guide/index.md | 5 +++-- platform/forms/README.md | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/src/guide/index.md b/docs/src/guide/index.md index 5bf5c34b37..7bc8930105 100644 --- a/docs/src/guide/index.md +++ b/docs/src/guide/index.md @@ -933,9 +933,10 @@ Note that `templateUrl` is not supported for `containers`. 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. * `checkbox`: A box which may be checked/unchecked. * `color`: A color picker. diff --git a/platform/forms/README.md b/platform/forms/README.md index 07d924ee7d..1f0b7386ec 100644 --- a/platform/forms/README.md +++ b/platform/forms/README.md @@ -100,9 +100,10 @@ a form appropriate to pass to a `RegExp` constructor. ## 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. * `checkbox`: A box which may be checked/unchecked. * `color`: A color picker.