From 5221080309051c728d5834fd33a99ebe8e1aefbc Mon Sep 17 00:00:00 2001 From: Gregor Wassmann Date: Tue, 28 Mar 2023 19:16:32 +0200 Subject: [PATCH] chore: v11 MultiSelect Size `xl` changed to `lg`. --- COMPONENT_INDEX.md | 2 +- docs/src/COMPONENT_API.json | 2 +- docs/src/pages/components/MultiSelect.svx | 8 ++++---- src/MultiSelect/MultiSelect.svelte | 2 +- tests/MultiSelect.test.svelte | 2 +- types/MultiSelect/MultiSelect.svelte.d.ts | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) 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 -