diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index 76ce3dd8..c92b69aa 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -2804,9 +2804,9 @@ None.
### Events
-| Event name | Type | Detail |
-| :------------ | :--------- | :---------------- |
-| click:outside | dispatched | null
|
+| Event name | Type | Detail |
+| :------------ | :--------- | :------------------------------------ |
+| click:outside | dispatched | { target: HTMLElement; }
|
## `ProgressBar`
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index e3ad94a1..6d18c68f 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -8908,7 +8908,11 @@
"moduleExports": [],
"slots": [{ "name": "__default__", "default": true, "slot_props": "{}" }],
"events": [
- { "type": "dispatched", "name": "click:outside", "detail": "null" }
+ {
+ "type": "dispatched",
+ "name": "click:outside",
+ "detail": "{ target: HTMLElement; }"
+ }
],
"typedefs": [],
"rest_props": { "type": "Element", "name": "div" }
diff --git a/docs/src/pages/components/Popover.svx b/docs/src/pages/components/Popover.svx
index 03f1da78..d756b572 100644
--- a/docs/src/pages/components/Popover.svx
+++ b/docs/src/pages/components/Popover.svx
@@ -36,6 +36,12 @@ Set `closeOnOutsideClick` to set `open` to `false` when clicking outside of the
+## Manage open state with a Button
+
+You can bind the `open` prop and manage the open state of the popover with an external button.
+
+