@@ -228,7 +228,8 @@ INSERT INTO parameter(component, name, description, type, top_level, optional) S
228
228
(' required' , ' Set this to true to prevent the form contents from being sent if this field is left empty by the user.' , ' BOOL' , FALSE, TRUE),
229
229
(' min' , ' The minimum value to accept for an input of type number' , ' NUMBER' , FALSE, TRUE),
230
230
(' max' , ' The minimum value to accept for an input of type number' , ' NUMBER' , FALSE, TRUE),
231
- (' checked' , ' Used only for checkboxes. Indicates whether the checkbox should appear as already checked.' , ' BOOL' , FALSE, TRUE),
231
+ (' checked' , ' Used only for checkboxes and radio buttons. Indicates whether the checkbox should appear as already checked.' , ' BOOL' , FALSE, TRUE),
232
+ (' multiple' , ' Used only for select elements. Indicates that multiple elements can be selected simultaneously.' , ' BOOL' , FALSE, TRUE),
232
233
(' step' , ' The increment of values in an input of type number. Set to 1 to allow only integers.' , ' NUMBER' , FALSE, TRUE),
233
234
(' description' , ' A helper text to display near the input field.' , ' TEXT' , FALSE, TRUE),
234
235
(' pattern' , ' A regular expression that the value must match. For instance, [0-9]{3} will only accept 3 digits.' , ' TEXT' , FALSE, TRUE),
0 commit comments