fix build:docs

This commit is contained in:
Maxime Fafard 2022-12-01 11:14:39 -05:00
commit 37e0db3f8f
3 changed files with 12 additions and 4 deletions

View file

@ -2804,9 +2804,9 @@ None.
### Events
| Event name | Type | Detail |
| :------------ | :--------- | :---------------- |
| click:outside | dispatched | <code>null</code> |
| Event name | Type | Detail |
| :------------ | :--------- | :------------------------------------ |
| click:outside | dispatched | <code>{ target: HTMLElement; }</code> |
## `ProgressBar`

View file

@ -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" }

View file

@ -1,4 +1,8 @@
<script>
/**
* @event {{ target: HTMLElement; }} click:outside
*/
/** Set to `true` to display the popover */
export let open = false;