From cf1869634dfa644a90eb2f574db3064c82458e69 Mon Sep 17 00:00:00 2001 From: martascorreia Date: Thu, 23 Apr 2026 10:58:32 +0200 Subject: [PATCH 1/4] feat: updating the sd-combobox docs about limit height --- packages/docs/src/stories/components/combobox.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/src/stories/components/combobox.mdx b/packages/docs/src/stories/components/combobox.mdx index 2255971e8c..56ff9f7a95 100644 --- a/packages/docs/src/stories/components/combobox.mdx +++ b/packages/docs/src/stories/components/combobox.mdx @@ -67,7 +67,7 @@ Do not mix the two variants (default / floating label) within the same product, - Filter available options in real time as the user types; highlight or bold matching text to indicate relevance. - Show a message (e.g., “No matches found”) when no options align with the user’s input. -- Consider limiting the maximum number of displayed suggestions to avoid overwhelming users. +- Consider limiting the maximum number of displayed suggestions to avoid overwhelming users. We recommend displaying 6-8 (with scrolling for additional results). #### Background From eee92434750b09ee74ea3afe326678f71798b064 Mon Sep 17 00:00:00 2001 From: martascorreia Date: Thu, 23 Apr 2026 11:00:40 +0200 Subject: [PATCH 2/4] chore: adding changeset --- .changeset/fruity-jars-tease.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/fruity-jars-tease.md diff --git a/.changeset/fruity-jars-tease.md b/.changeset/fruity-jars-tease.md new file mode 100644 index 0000000000..8a5cfa95ff --- /dev/null +++ b/.changeset/fruity-jars-tease.md @@ -0,0 +1,5 @@ +--- +'@solid-design-system/docs': patch +--- + +Updating the `sd-combobox` documentation about limiting the height of the dropdown display. From 8ecf224275444807fbeeb27cfe9c27e10081cc2f Mon Sep 17 00:00:00 2001 From: martascorreia Date: Thu, 23 Apr 2026 13:51:22 +0200 Subject: [PATCH 3/4] feeat: adding documentation to sd-select about limit height of dropdown --- packages/docs/src/stories/components/select.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/docs/src/stories/components/select.mdx b/packages/docs/src/stories/components/select.mdx index 3e22965fff..e588b0273e 100644 --- a/packages/docs/src/stories/components/select.mdx +++ b/packages/docs/src/stories/components/select.mdx @@ -73,6 +73,7 @@ Do not mix the two variants (default / floating label) within the same product, - Apply the "multiple" attribute when multiple selections are allowed, and pair it with "checkbox" for corresponding nested options. - By default, the number of selected options is displayed after the text. - Display selected options as tags within the field to help users track their selections. +- Consider limiting the maximum number of displayed selectable options to avoid overwhelming users. We recommend displaying 6-8 (with scrolling for additional results). #### Background From c5118199b50082398bc5f9862bc9c0f0fef83045 Mon Sep 17 00:00:00 2001 From: martascorreia Date: Thu, 23 Apr 2026 13:52:51 +0200 Subject: [PATCH 4/4] chore: updating the changeset --- .changeset/fruity-jars-tease.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.changeset/fruity-jars-tease.md b/.changeset/fruity-jars-tease.md index 8a5cfa95ff..0ef79223ce 100644 --- a/.changeset/fruity-jars-tease.md +++ b/.changeset/fruity-jars-tease.md @@ -2,4 +2,5 @@ '@solid-design-system/docs': patch --- -Updating the `sd-combobox` documentation about limiting the height of the dropdown display. +Updating the `sd-combobox` and `sd-select` documentation about limiting the height of the dropdown display. +