diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index d9ef4132..da6dd1b0 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -2365,7 +2365,7 @@ export interface MultiSelectItem {
| items | No | let
| Yes | 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; }
| (item) => {}
| Override the item name, title, labelText passed to the checkbox input |
-| size | No | let
| No | "sm" | "lg" | "xl"
| undefined
| Set the size of the combobox |
+| size | No | let
| No | "sm" | "lg"
| undefined
| Set the size of the combobox |
| type | No | let
| No | "default" | "inline"
| "default"
| Specify the type of multiselect |
| direction | No | let
| No | "bottom" | "top"
| "bottom"
| Specify the direction of the multiselect dropdown menu |
| selectionFeedback | No | let
| No | "top" | "fixed" | "top-after-reopen"
| "top-after-reopen"
| Specify the selection feedback after selecting items |
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index 623aae27..293d9f5b 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -7019,7 +7019,7 @@
"name": "size",
"kind": "let",
"description": "Set the size of the combobox",
- "type": "\"sm\" | \"lg\" | \"xl\"",
+ "type": "\"sm\" | \"lg\"",
"isFunction": false,
"isFunctionDeclaration": false,
"isRequired": false,
diff --git a/docs/src/pages/components/MultiSelect.svx b/docs/src/pages/components/MultiSelect.svx
index 35387f64..19b4812a 100644
--- a/docs/src/pages/components/MultiSelect.svx
+++ b/docs/src/pages/components/MultiSelect.svx
@@ -32,7 +32,7 @@ To prevent alphabetical item ordering, pass an empty function to the `sortItem`
@@ -53,7 +53,7 @@ To select (or bind) items, pass an array of item ids to `selectedIds`.
## Multiple multi-select dropdowns
@@ -107,9 +107,9 @@ Set `direction` to `"top"` for the dropdown menu to appear above the input.
{id: "2", text: "Fax"}]}"
/>
-## Extra-large size
+## Large size
-