Skip to content

Commit

Permalink
feat(Tipseen): allow referenceWrapperClassName prop for component (#2652
Browse files Browse the repository at this point in the history
)
  • Loading branch information
stasshw authored Dec 15, 2024
1 parent 3bf35bd commit 9d6fcc2
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 @@ -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
*/
Expand Down Expand Up @@ -97,6 +98,7 @@ const Tipseen: VibeComponent<TipseenProps> & {
width,
moveBy,
hideWhenReferenceHidden = false,
referenceWrapperClassName,
tip = true,
tooltipArrowClassName,
modifiers = [],
Expand Down Expand Up @@ -188,6 +190,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 9d6fcc2

Please sign in to comment.