mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-20 20:33:02 +00:00
Run "yarn build:docs"
This commit is contained in:
parent
bbda4a8697
commit
d4cf087050
3 changed files with 13 additions and 7 deletions
|
@ -1609,9 +1609,10 @@ None.
|
||||||
### Events
|
### Events
|
||||||
|
|
||||||
| Event name | Type | Detail |
|
| Event name | Type | Detail |
|
||||||
| :--------- | :--------- | :----- |
|
| :--------- | :--------- | :---------------- |
|
||||||
|
| open | dispatched | <code>null</code> |
|
||||||
|
| close | dispatched | <code>null</code> |
|
||||||
| click | forwarded | -- |
|
| click | forwarded | -- |
|
||||||
| close | dispatched | -- |
|
|
||||||
|
|
||||||
## `HeaderActionLink`
|
## `HeaderActionLink`
|
||||||
|
|
||||||
|
|
|
@ -4573,8 +4573,9 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"events": [
|
"events": [
|
||||||
{ "type": "forwarded", "name": "click", "element": "button" },
|
{ "type": "dispatched", "name": "open", "detail": "null" },
|
||||||
{ "type": "dispatched", "name": "close" }
|
{ "type": "dispatched", "name": "close", "detail": "null" },
|
||||||
|
{ "type": "forwarded", "name": "click", "element": "button" }
|
||||||
],
|
],
|
||||||
"typedefs": [],
|
"typedefs": [],
|
||||||
"rest_props": { "type": "Element", "name": "button" }
|
"rest_props": { "type": "Element", "name": "button" }
|
||||||
|
|
6
types/UIShell/HeaderAction.svelte.d.ts
vendored
6
types/UIShell/HeaderAction.svelte.d.ts
vendored
|
@ -46,6 +46,10 @@ export interface HeaderActionProps
|
||||||
|
|
||||||
export default class HeaderAction extends SvelteComponentTyped<
|
export default class HeaderAction extends SvelteComponentTyped<
|
||||||
HeaderActionProps,
|
HeaderActionProps,
|
||||||
{ click: WindowEventMap["click"]; close: CustomEvent<any> },
|
{
|
||||||
|
open: CustomEvent<null>;
|
||||||
|
close: CustomEvent<null>;
|
||||||
|
click: WindowEventMap["click"];
|
||||||
|
},
|
||||||
{ default: {}; closeIcon: {}; icon: {}; text: {} }
|
{ default: {}; closeIcon: {}; icon: {}; text: {} }
|
||||||
> {}
|
> {}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue