From 7b35647c375b83f25e08e170a7b0fce760ed7893 Mon Sep 17 00:00:00 2001 From: Luke LaValva Date: Mon, 18 Mar 2024 11:02:23 -0700 Subject: [PATCH] fix(tourtip): fix host type (#2131) * fix(tourtip): fix host type * chore: add changeset --- .changeset/quiet-drinks-worry.md | 5 +++++ src/components/ebay-tourtip/component.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/quiet-drinks-worry.md diff --git a/.changeset/quiet-drinks-worry.md b/.changeset/quiet-drinks-worry.md new file mode 100644 index 000000000..00727c85e --- /dev/null +++ b/.changeset/quiet-drinks-worry.md @@ -0,0 +1,5 @@ +--- +"@ebay/ebayui-core": patch +--- + +Fix types for ebay-tourtip diff --git a/src/components/ebay-tourtip/component.ts b/src/components/ebay-tourtip/component.ts index 703f6b85d..8fd5e14d7 100644 --- a/src/components/ebay-tourtip/component.ts +++ b/src/components/ebay-tourtip/component.ts @@ -5,7 +5,7 @@ import type { Input as TooltipOverlayInput } from "../components/ebay-tooltip-ov interface TourtipInput extends Omit, `on${string}`> { open?: boolean; "no-hover"?: TooltipBaseInput["noHover"]; - host?: Marko.Input<"span">; + host?: Marko.AttrTag>; offset?: TooltipBaseInput["offset"]; pointer?: TooltipBaseInput["pointer"]; placement?: TooltipBaseInput["placement"];