Skip to content

Commit

Permalink
feat(Tooltip): be able to change max width (#2643)
Browse files Browse the repository at this point in the history
  • Loading branch information
talkor authored Dec 12, 2024
1 parent aae8f21 commit f39633b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions packages/core/src/components/Tooltip/Tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,10 @@ interface TooltipBaseProps extends VibeComponentProps {
* The icon of the tooltip next to the title
*/
icon?: SubIcon;
/**
* Sets the max width of the Tooltip, defaults to 240px
*/
maxWidth?: number;
}
// When last tooltip was shown in the last 1.5 second - the next tooltip will be shown immediately
const IMMEDIATE_SHOW_THRESHOLD_MS = 1500;
Expand Down Expand Up @@ -174,7 +178,7 @@ export default class Tooltip extends PureComponent<TooltipProps> {
}

renderTooltipContent() {
const { theme, content, className, style, title, image, icon } = this.props;
const { theme, content, className, style, maxWidth, title, image, icon } = this.props;
if (!content) {
// don't render empty tooltip
return null;
Expand All @@ -196,7 +200,10 @@ export default class Tooltip extends PureComponent<TooltipProps> {
}

return (
<div style={style} className={cx(styles.tooltip, getStyle(styles, camelCase(theme)), className)}>
<div
style={maxWidth ? ({ ...style, "--tooltip-max-width": `${maxWidth}px` } as CSSProperties) : style}
className={cx(styles.tooltip, getStyle(styles, camelCase(theme)), className)}
>
{image && <img className={styles.image} src={image} alt="" />}
<div className={cx(styles.content)}>
{title && (
Expand Down

0 comments on commit f39633b

Please sign in to comment.