diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index 7dcd5af4..766613fc 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -671,6 +671,7 @@ export interface ComboBoxItem {
| size | No | let | No | "sm" | "xl" | undefined | Set the size of the combobox |
| disabled | No | let | No | boolean | false | Set to `true` to disable the combobox |
| titleText | No | let | No | string | "" | Specify the title text of the combobox |
+| hideLabel | No | let | No | boolean | false | Set to `true` to visually hide the label text |
| placeholder | No | let | No | string | "" | Specify the placeholder text |
| helperText | No | let | No | string | "" | Specify the helper text |
| invalidText | No | let | No | string | "" | Specify the invalid state text |
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index e4826601..a5e67ac2 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -1851,6 +1851,18 @@
"constant": false,
"reactive": false
},
+ {
+ "name": "hideLabel",
+ "kind": "let",
+ "description": "Set to `true` to visually hide the label text",
+ "type": "boolean",
+ "value": "false",
+ "isFunction": false,
+ "isFunctionDeclaration": false,
+ "isRequired": false,
+ "constant": false,
+ "reactive": false
+ },
{
"name": "placeholder",
"kind": "let",
diff --git a/docs/src/pages/components/ComboBox.svx b/docs/src/pages/components/ComboBox.svx
index 559b4127..26d465b4 100644
--- a/docs/src/pages/components/ComboBox.svx
+++ b/docs/src/pages/components/ComboBox.svx
@@ -24,6 +24,15 @@ Override the default slot to customize the display of each item. Access the item
+## Hidden label
+
+
+
## Initial selected id
{#if titleText || $$slots.titleText}
-