mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 11:36:36 +00:00
fix build:docs
This commit is contained in:
parent
3a52b5b903
commit
37e0db3f8f
3 changed files with 12 additions and 4 deletions
|
@ -2805,8 +2805,8 @@ None.
|
|||
### Events
|
||||
|
||||
| Event name | Type | Detail |
|
||||
| :------------ | :--------- | :---------------- |
|
||||
| click:outside | dispatched | <code>null</code> |
|
||||
| :------------ | :--------- | :------------------------------------ |
|
||||
| click:outside | dispatched | <code>{ target: HTMLElement; }</code> |
|
||||
|
||||
## `ProgressBar`
|
||||
|
||||
|
|
|
@ -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" }
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<script>
|
||||
/**
|
||||
* @event {{ target: HTMLElement; }} click:outside
|
||||
*/
|
||||
|
||||
/** Set to `true` to display the popover */
|
||||
export let open = false;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue