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 ### Events
| Event name | Type | Detail | | Event name | Type | Detail |
| :------------ | :--------- | :---------------- | | :------------ | :--------- | :------------------------------------ |
| click:outside | dispatched | <code>null</code> | | click:outside | dispatched | <code>{ target: HTMLElement; }</code> |
## `ProgressBar` ## `ProgressBar`

View file

@ -8908,7 +8908,11 @@
"moduleExports": [], "moduleExports": [],
"slots": [{ "name": "__default__", "default": true, "slot_props": "{}" }], "slots": [{ "name": "__default__", "default": true, "slot_props": "{}" }],
"events": [ "events": [
{ "type": "dispatched", "name": "click:outside", "detail": "null" } {
"type": "dispatched",
"name": "click:outside",
"detail": "{ target: HTMLElement; }"
}
], ],
"typedefs": [], "typedefs": [],
"rest_props": { "type": "Element", "name": "div" } "rest_props": { "type": "Element", "name": "div" }

View file

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