Skip to content

Commit

Permalink
feat(Tipseen): allow referenceWrapperClassName prop for component (mo…
Browse files Browse the repository at this point in the history
…ndaycom#2652)

(cherry picked from commit 9d6fcc2)
  • Loading branch information
stasshw committed Dec 15, 2024
1 parent 31149b1 commit c97615b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/core/src/components/Tipseen/Tipseen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export interface TipseenProps extends VibeComponentProps {
width?: number;
moveBy?: MoveBy;
hideWhenReferenceHidden?: boolean;
referenceWrapperClassName?: string;
/**
* when false, the arrow of the tooltip is hidden
*/
Expand Down Expand Up @@ -104,6 +105,7 @@ const Tipseen: VibeComponent<TipseenProps> & {
width,
moveBy,
hideWhenReferenceHidden = false,
referenceWrapperClassName,
tip = true,
tooltipArrowClassName,
modifiers = EMPTY_ARR,
Expand Down Expand Up @@ -206,6 +208,7 @@ const Tipseen: VibeComponent<TipseenProps> & {
disableDialogSlide={false}
moveBy={moveBy}
hideWhenReferenceHidden={hideWhenReferenceHidden}
referenceWrapperClassName={referenceWrapperClassName}
tip={tip && !floating}
modifiers={modifiers}
open={defaultDelayOpen ? delayedOpen : undefined}
Expand Down

0 comments on commit c97615b

Please sign in to comment.