Added new supported settings type "number" description

Implements: blueprint input-type-number

Change-Id: Ic8c7a9de23633d76d320a447bb0dd7ccdaeb7fbe
This commit is contained in:
Kate Pimenova 2016-04-04 17:08:15 +03:00
parent 42ace6e5d9
commit fa5e0c8b8b
1 changed files with 9 additions and 4 deletions

View File

@ -50,6 +50,7 @@ structure includes the following attributes::
The following types are supported:
* *text* - single line input
* *number* - number input
* *password* - password input
* *textarea* - multiline input
* *checkbox* - multiple-options selector
@ -69,10 +70,14 @@ structure includes the following attributes::
* *values* list is needed for settings of "radio" or "select" type to declare
its possible values. Options from "values" list also support dependencies
and conflcits declaration.
* *min* is actual for settings of "text_list" or "textarea_list" type
to declare a minimum input list length for the setting
* *max* is actual for settings of "text_list" or "textarea_list" type
to declare a maximum input list length for the setting
* *min* is used for setting the "number", "text_list" or "textarea_list" type.
For the "number" type, "min" declares the minimum input number value.
For the "text_list" and "textarea_list" types, it declares the minimum list length for the
setting.
* *max* is used for setting the "number", "text_list", or "textarea_list" type.
For the "number" type, "max" declares the maximum input number value.
For the "text_list" and "textarea_list" types, it declares the maximum list length for the
setting.
.. _restrictions: