diff --git a/.changeset/shaggy-pans-kiss.md b/.changeset/shaggy-pans-kiss.md
new file mode 100644
index 000000000..16519dbf2
--- /dev/null
+++ b/.changeset/shaggy-pans-kiss.md
@@ -0,0 +1,5 @@
+---
+'@lion/combobox': patch
+---
+
+Add a new option showAllOnEmpty which shows the full list if the input has an empty value
diff --git a/packages/combobox/README.md b/packages/combobox/README.md
index 273510ae9..b5210901b 100644
--- a/packages/combobox/README.md
+++ b/packages/combobox/README.md
@@ -160,7 +160,24 @@ export const customMatchCondition = () => html`
`;
```
-## Changing defaults
+## Options
+
+```js preview-story
+export const showAllOnEmpty = () => html`
+
+ ${lazyRender(
+ listboxData.map(entry => html` ${entry} `),
+ )}
+
+`;
+```
+
+### Changing defaults
By default `selection-follows-focus` will be true (aligned with the
wai-aria examples and the natve `