You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,8 @@ Form generation features include the following:
56
56
| array: items | This schema is used to render each subsection of the array. Tuple validation (where items is a list of schemas) is not supported. |
57
57
| array: contains | Not supported except for validation |
58
58
| array: additionalItems | Not supported |
59
-
| array: length | Implemented only as validation |
59
+
| array: maxItems | Implemented only as validation |
60
+
| array: minItems | Implemented only as validation |
60
61
| array: uniqueItems | Implemented as validation |
61
62
| generic: title | The label of a field uses title for preference, otherwise it defaults to convering camel case into separated words e.g. initialRepeatingCost -> Initial repeating cost |
62
63
| generic: description | Description is rendered as part of the label and can be styled differently |
@@ -102,7 +103,7 @@ Here are the built-in editors:
102
103
| textarea | string | Renders a textarea HTML tag rather than an input for text entry |
103
104
| currency | number | Renders a text entry box with an automatic currency label (set with the currencySymbol property on the top-level schema object). Supplies a decimal number to the output value. |
104
105
| hidden | string | Renders a type='hidden' text box |
105
-
|multicheck| array of enums | Renders a multi-select set of check boxes which supplies an array of values of an enum whose values correspond to the check box labels |
106
+
|multiCheck| array of enums | Renders a multi-select set of check boxes which supplies an array of values of an enum whose values correspond to the check box labels |
106
107
| upload | string | Renders a file upload. The behaviour of the file upload is determined by two functions set up on the componentContext prop which (see below) is an object containing customisation for components. The functions are:
0 commit comments