let
| Yes | boolean
| false
| Set to `true` to open the dropdown |
| value | No | let
| Yes | string
| ""
| Specify the multiselect value |
| selectedIds | No | let
| Yes | ReadonlyArray
| []
| Set the selected ids |
-| items | No | let
| Yes | ReadonlyArray
| []
| Set the multiselect items |
+| items | No | let
| No | ReadonlyArray
| []
| Set the multiselect items |
| itemToString | No | let
| No | (item: MultiSelectItem) => any
| (item) => item.text || item.id
| Override the display of a multiselect item |
| itemToInput | No | let
| No | (item: MultiSelectItem) => { name?: string; labelText?: any; title?: string; value?: string }
| (item) => {}
| Override the item name, title, labelText, or value passed to the user-selectable checkbox input as well as the hidden inputs. |
| size | No | let
| No | "sm" | "lg" | "xl"
| undefined
| Set the size of the combobox |
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index b906235c..bcf861ef 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -7078,7 +7078,7 @@
"isFunctionDeclaration": false,
"isRequired": false,
"constant": false,
- "reactive": true
+ "reactive": false
},
{
"name": "itemToString",