mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-16 10:51:06 +00:00
feat(UIShell): export ref for all UIShell components
This commit is contained in:
parent
4204a10a3e
commit
d1e9fc7225
11 changed files with 82 additions and 5 deletions
|
@ -4,10 +4,22 @@
|
|||
* @type {string} [href]
|
||||
*/
|
||||
export let href = undefined;
|
||||
|
||||
/**
|
||||
* Obtain a reference to the HTML button element
|
||||
* @type {null | HTMLButtonElement} [ref=null]
|
||||
*/
|
||||
export let ref = null;
|
||||
</script>
|
||||
|
||||
<li class:bx--switcher__item="{true}">
|
||||
<a href="{href}" class:bx--switcher__item-link="{true}" {...$$restProps} on:click>
|
||||
<a
|
||||
bind:this="{ref}"
|
||||
href="{href}"
|
||||
class:bx--switcher__item-link="{true}"
|
||||
{...$$restProps}
|
||||
on:click
|
||||
>
|
||||
<slot />
|
||||
</a>
|
||||
</li>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue