Skip to content

Commit

Permalink
fix(tourtip): fix host type (#2131)
Browse files Browse the repository at this point in the history
* fix(tourtip): fix host type

* chore: add changeset
  • Loading branch information
LuLaValva committed Mar 18, 2024
1 parent f29e53c commit 7b35647
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/quiet-drinks-worry.md
@@ -0,0 +1,5 @@
---
"@ebay/ebayui-core": patch
---

Fix types for ebay-tourtip
2 changes: 1 addition & 1 deletion src/components/ebay-tourtip/component.ts
Expand Up @@ -5,7 +5,7 @@ import type { Input as TooltipOverlayInput } from "../components/ebay-tooltip-ov
interface TourtipInput extends Omit<Marko.Input<"span">, `on${string}`> {
open?: boolean;
"no-hover"?: TooltipBaseInput["noHover"];
host?: Marko.Input<"span">;
host?: Marko.AttrTag<Marko.Input<"span">>;
offset?: TooltipBaseInput["offset"];
pointer?: TooltipBaseInput["pointer"];
placement?: TooltipBaseInput["placement"];
Expand Down

0 comments on commit 7b35647

Please sign in to comment.