mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
feat(ui-shell): support button tooltip in HeaderGlobalAction
(#1894)
Closes #1893
This commit is contained in:
parent
0405edee7d
commit
d8bc65163e
8 changed files with 92 additions and 90 deletions
|
@ -1,4 +1,8 @@
|
|||
<script>
|
||||
/**
|
||||
* @extends {"../Button/Button.svelte"} ButtonProps
|
||||
*/
|
||||
|
||||
/** Set to `true` to use the active variant */
|
||||
export let isActive = false;
|
||||
|
||||
|
@ -8,19 +12,22 @@
|
|||
*/
|
||||
export let icon = undefined;
|
||||
|
||||
/** Obtain a reference to the HTML button element */
|
||||
/** Obtain a reference to the HTML button element
|
||||
* @type {HTMLButtonElement}
|
||||
*/
|
||||
export let ref = null;
|
||||
|
||||
import Button from "../Button/Button.svelte";
|
||||
|
||||
$: buttonClass = [
|
||||
"bx--header__action",
|
||||
isActive && " bx--header__action--active",
|
||||
$$restProps.class,
|
||||
]
|
||||
.filter(Boolean)
|
||||
.join(" ");
|
||||
</script>
|
||||
|
||||
<button
|
||||
type="button"
|
||||
bind:this="{ref}"
|
||||
class:bx--header__action="{true}"
|
||||
class:bx--header__action--active="{isActive}"
|
||||
{...$$restProps}
|
||||
on:click
|
||||
>
|
||||
<slot>
|
||||
<svelte:component this="{icon}" size="{20}" />
|
||||
</slot>
|
||||
</button>
|
||||
<Button bind:ref {...$$restProps} class="{buttonClass}" on:click>
|
||||
<svelte:component this="{icon}" slot="icon" size="{20}" />
|
||||
</Button>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue