diff --git a/packages/core/src/components/Tipseen/Tipseen.tsx b/packages/core/src/components/Tipseen/Tipseen.tsx index f4161ec904..12d07058e0 100644 --- a/packages/core/src/components/Tipseen/Tipseen.tsx +++ b/packages/core/src/components/Tipseen/Tipseen.tsx @@ -43,6 +43,7 @@ export interface TipseenProps extends VibeComponentProps { width?: number; moveBy?: MoveBy; hideWhenReferenceHidden?: boolean; + referenceWrapperClassName?: string; /** * when false, the arrow of the tooltip is hidden */ @@ -97,6 +98,7 @@ const Tipseen: VibeComponent & { width, moveBy, hideWhenReferenceHidden = false, + referenceWrapperClassName, tip = true, tooltipArrowClassName, modifiers = [], @@ -188,6 +190,7 @@ const Tipseen: VibeComponent & { disableDialogSlide={false} moveBy={moveBy} hideWhenReferenceHidden={hideWhenReferenceHidden} + referenceWrapperClassName={referenceWrapperClassName} tip={tip && !floating} modifiers={modifiers} open={defaultDelayOpen ? delayedOpen : undefined}