diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md index 192fffe4..24a32634 100644 --- a/COMPONENT_INDEX.md +++ b/COMPONENT_INDEX.md @@ -1608,10 +1608,11 @@ None. ### Events -| Event name | Type | Detail | -| :--------- | :--------- | :----- | -| click | forwarded | -- | -| close | dispatched | -- | +| Event name | Type | Detail | +| :--------- | :--------- | :---------------- | +| open | dispatched | null | +| close | dispatched | null | +| click | forwarded | -- | ## `HeaderActionLink` diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json index 6f71b1c1..2310113f 100644 --- a/docs/src/COMPONENT_API.json +++ b/docs/src/COMPONENT_API.json @@ -4573,8 +4573,9 @@ } ], "events": [ - { "type": "forwarded", "name": "click", "element": "button" }, - { "type": "dispatched", "name": "close" } + { "type": "dispatched", "name": "open", "detail": "null" }, + { "type": "dispatched", "name": "close", "detail": "null" }, + { "type": "forwarded", "name": "click", "element": "button" } ], "typedefs": [], "rest_props": { "type": "Element", "name": "button" } diff --git a/src/UIShell/HeaderAction.svelte b/src/UIShell/HeaderAction.svelte index da47c6da..03fdb613 100644 --- a/src/UIShell/HeaderAction.svelte +++ b/src/UIShell/HeaderAction.svelte @@ -1,4 +1,9 @@