@sanity/ui 1.9.2 → 1.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanity/ui",
3
- "version": "1.9.2",
3
+ "version": "1.9.3",
4
4
  "sideEffects": false,
5
5
  "types": "./dist/index.d.ts",
6
6
  "source": "./src/index.ts",
@@ -0,0 +1,99 @@
1
+ import {
2
+ BoundaryElementProvider,
3
+ Button,
4
+ Card,
5
+ Flex,
6
+ Portal,
7
+ PortalProvider,
8
+ Stack,
9
+ Text,
10
+ Tooltip,
11
+ } from '@sanity/ui'
12
+ import {useBoolean, useSelect, useText} from '@sanity/ui-workshop'
13
+ import {useState} from 'react'
14
+ import {WORKSHOP_PLACEMENT_OPTIONS} from '../../../__workshop__/constants'
15
+
16
+ const PORTAL_OPTIONS = {
17
+ '(true)': true,
18
+ '(false)': false,
19
+ portal1: 'portal1',
20
+ }
21
+
22
+ export default function CustomPortalStory() {
23
+ const content = useText(
24
+ 'Content',
25
+ 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut mollis consectetur malesuada. Sed lobortis est dolor, eget imperdiet velit placerat et. Aenean posuere mi non aliquet iaculis. Donec fermentum pulvinar purus at sagittis. Ut tincidunt massa odio, sed finibus justo ullamcorper id. Nam venenatis justo non ligula elementum cursus. Pellentesque laoreet justo in mollis sagittis. In lacinia ornare ultrices. Suspendisse potenti.',
26
+ )
27
+ const placement = useSelect('Placement', WORKSHOP_PLACEMENT_OPTIONS, 'top')
28
+ const portal = useSelect('Portal', PORTAL_OPTIONS, undefined, 'Props')
29
+ const useBoundaryElement = useBoolean('Use boundary element', true)
30
+
31
+ const [portal1Element, setPortal1Element] = useState<HTMLDivElement | null>(null)
32
+ const [boundaryElement, setBoundaryElement] = useState<HTMLDivElement | null>(null)
33
+
34
+ return (
35
+ <PortalProvider
36
+ __unstable_elements={{
37
+ portal1: portal1Element,
38
+ }}
39
+ >
40
+ <Flex align="center" height="fill" justify="center">
41
+ <BoundaryElementProvider element={useBoundaryElement ? boundaryElement : null}>
42
+ <Card
43
+ border
44
+ padding={4}
45
+ ref={setBoundaryElement}
46
+ style={{
47
+ height: 'calc(100vh - 100px)',
48
+ position: 'relative',
49
+ width: '500px',
50
+ }}
51
+ >
52
+ <Text>Boundary element</Text>
53
+ <Flex align="center" height="fill" justify="center">
54
+ <Flex justify="center">
55
+ <Stack space={2}>
56
+ <Tooltip
57
+ boundaryElement={useBoundaryElement ? boundaryElement : null}
58
+ content={<Text size={1}>{content}</Text>}
59
+ padding={2}
60
+ placement={placement}
61
+ portal={portal}
62
+ >
63
+ <Button mode="bleed" text="Tooltip" />
64
+ </Tooltip>
65
+ </Stack>
66
+ </Flex>
67
+ </Flex>
68
+ </Card>
69
+ </BoundaryElementProvider>
70
+ </Flex>
71
+
72
+ <Card
73
+ border
74
+ margin={4}
75
+ padding={4}
76
+ ref={setPortal1Element}
77
+ style={{
78
+ left: 0,
79
+ position: 'absolute',
80
+ top: 0,
81
+ width: '175px',
82
+ }}
83
+ tone="critical"
84
+ />
85
+
86
+ <Portal __unstable_name="portal1">
87
+ <Stack space={4}>
88
+ <Text size={1} weight="medium">
89
+ Portal 1 content
90
+ </Text>
91
+ <Text size={1}>
92
+ The tooltip's max-width should not exceed this container's width (minus padding) if it's
93
+ set to use this portal
94
+ </Text>
95
+ </Stack>
96
+ </Portal>
97
+ </PortalProvider>
98
+ )
99
+ }
@@ -10,5 +10,20 @@ export default defineScope({
10
10
  title: 'Props',
11
11
  component: lazy(() => import('./props')),
12
12
  },
13
+ {
14
+ name: 'resizableBoundary',
15
+ title: 'Resizable Boundary',
16
+ component: lazy(() => import('./resizableBoundary')),
17
+ },
18
+ {
19
+ name: 'overflowBoundary',
20
+ title: 'Overflowing Boundary',
21
+ component: lazy(() => import('./overflowingBoundary')),
22
+ },
23
+ {
24
+ name: 'customPortalStory',
25
+ title: 'Custom Portal',
26
+ component: lazy(() => import('./customPortal')),
27
+ },
13
28
  ],
14
29
  })
@@ -0,0 +1,73 @@
1
+ import {BoundaryElementProvider, Button, Card, Code, Flex, Stack, Text, Tooltip} from '@sanity/ui'
2
+ import {useBoolean, useSelect, useText} from '@sanity/ui-workshop'
3
+ import {useCallback, useState} from 'react'
4
+ import {WORKSHOP_PLACEMENT_OPTIONS} from '../../../__workshop__/constants'
5
+
6
+ export default function OverflowingBoundaryStory() {
7
+ const content = useText(
8
+ 'Content',
9
+ 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut mollis consectetur malesuada. Sed lobortis est dolor, eget imperdiet velit placerat et. Aenean posuere mi non aliquet iaculis. Donec fermentum pulvinar purus at sagittis. Ut tincidunt massa odio, sed finibus justo ullamcorper id. Nam venenatis justo non ligula elementum cursus. Pellentesque laoreet justo in mollis sagittis. In lacinia ornare ultrices. Suspendisse potenti.',
10
+ )
11
+ const placement = useSelect('Placement', WORKSHOP_PLACEMENT_OPTIONS, 'top')
12
+ const portal = useBoolean('Portal', false)
13
+ const useBoundaryElement = useBoolean('Use boundary element', true)
14
+
15
+ const [boundaryElement, setBoundaryElement] = useState<HTMLDivElement | null>(null)
16
+ const [buttonsVisible, setButtonsVisible] = useState(true)
17
+
18
+ const handleHideButtons = useCallback(() => {
19
+ setButtonsVisible(false)
20
+ }, [])
21
+
22
+ const handleShowButtons = useCallback(() => {
23
+ setButtonsVisible(true)
24
+ }, [])
25
+
26
+ return (
27
+ <Flex align="center" height="fill" justify="center" style={{height: '200vh'}}>
28
+ <BoundaryElementProvider element={useBoundaryElement ? boundaryElement : null}>
29
+ <Card
30
+ border
31
+ ref={setBoundaryElement}
32
+ style={{
33
+ height: 'calc(100vh - 100px)',
34
+ overflow: 'hidden',
35
+ position: 'relative',
36
+ resize: 'both',
37
+ width: '500px',
38
+ }}
39
+ >
40
+ <Flex align="center" height="fill" justify="center">
41
+ <Flex justify="center">
42
+ <Stack space={2}>
43
+ <Code size={1}>Placement: {placement}</Code>
44
+ <Button
45
+ disabled={buttonsVisible}
46
+ fontSize={1}
47
+ onClick={handleShowButtons}
48
+ text="Show buttons"
49
+ />
50
+ </Stack>
51
+ </Flex>
52
+ </Flex>
53
+
54
+ {buttonsVisible && (
55
+ <Tooltip
56
+ content={<Text size={1}>{content}</Text>}
57
+ padding={2}
58
+ placement={placement}
59
+ portal={portal}
60
+ >
61
+ <Button
62
+ mode="bleed"
63
+ onClick={handleHideButtons}
64
+ style={{position: 'absolute', top: 10, right: 10}}
65
+ text="Tooltip"
66
+ />
67
+ </Tooltip>
68
+ )}
69
+ </Card>
70
+ </BoundaryElementProvider>
71
+ </Flex>
72
+ )
73
+ }
@@ -0,0 +1,85 @@
1
+ import {BoundaryElementProvider, Button, Card, Code, Flex, Text, Tooltip} from '@sanity/ui'
2
+ import {useBoolean, useSelect, useText} from '@sanity/ui-workshop'
3
+ import {useState} from 'react'
4
+ import {WORKSHOP_PLACEMENT_OPTIONS} from '../../../__workshop__/constants'
5
+
6
+ export default function ResizableBoundaryStory() {
7
+ const content = useText(
8
+ 'Content',
9
+ 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut mollis consectetur malesuada. Sed lobortis est dolor, eget imperdiet velit placerat et. Aenean posuere mi non aliquet iaculis. Donec fermentum pulvinar purus at sagittis. Ut tincidunt massa odio, sed finibus justo ullamcorper id. Nam venenatis justo non ligula elementum cursus. Pellentesque laoreet justo in mollis sagittis. In lacinia ornare ultrices. Suspendisse potenti.',
10
+ )
11
+ const placement = useSelect('Placement', WORKSHOP_PLACEMENT_OPTIONS, 'right')
12
+ const portal = useBoolean('Portal', true)
13
+ const useBoundaryElement = useBoolean('Use boundary element', true)
14
+
15
+ const [boundaryElement, setBoundaryElement] = useState<HTMLDivElement | null>(null)
16
+
17
+ return (
18
+ <Flex align="center" height="fill" justify="center">
19
+ <BoundaryElementProvider element={useBoundaryElement ? boundaryElement : null}>
20
+ <Card
21
+ border
22
+ ref={setBoundaryElement}
23
+ style={{
24
+ height: 'calc(100vh - 100px)',
25
+ overflow: 'hidden',
26
+ position: 'relative',
27
+ resize: 'both',
28
+ width: '500px',
29
+ }}
30
+ >
31
+ <Flex align="center" height="fill" justify="center">
32
+ <Flex justify="center">
33
+ <Code size={1}>Placement: {placement}</Code>
34
+ </Flex>
35
+ </Flex>
36
+
37
+ <Tooltip
38
+ content={<Text size={1}>{content}</Text>}
39
+ padding={2}
40
+ placement={placement}
41
+ portal={portal}
42
+ >
43
+ <Button mode="bleed" style={{position: 'absolute', top: 10, left: 10}} text="Tooltip" />
44
+ </Tooltip>
45
+ <Tooltip
46
+ content={<Text size={1}>{content}</Text>}
47
+ padding={2}
48
+ placement={placement}
49
+ portal={portal}
50
+ >
51
+ <Button
52
+ mode="bleed"
53
+ style={{position: 'absolute', top: 10, right: 10}}
54
+ text="Tooltip"
55
+ />
56
+ </Tooltip>
57
+ <Tooltip
58
+ content={<Text size={1}>{content}</Text>}
59
+ padding={2}
60
+ placement={placement}
61
+ portal={portal}
62
+ >
63
+ <Button
64
+ mode="bleed"
65
+ style={{position: 'absolute', bottom: 10, left: 10}}
66
+ text="Tooltip"
67
+ />
68
+ </Tooltip>
69
+ <Tooltip
70
+ content={<Text size={1}>{content}</Text>}
71
+ padding={2}
72
+ placement={placement}
73
+ portal={portal}
74
+ >
75
+ <Button
76
+ mode="bleed"
77
+ style={{position: 'absolute', bottom: 10, right: 10}}
78
+ text="Tooltip"
79
+ />
80
+ </Tooltip>
81
+ </Card>
82
+ </BoundaryElementProvider>
83
+ </Flex>
84
+ )
85
+ }
@@ -1,5 +1,6 @@
1
1
  import {Placement} from '@floating-ui/react-dom'
2
2
 
3
+ export const DEFAULT_TOOLTIP_PADDING = 4
3
4
  export const DEFAULT_FALLBACK_PLACEMENTS: Record<Placement, Placement[]> = {
4
5
  top: ['bottom', 'left', 'right'],
5
6
  'top-start': ['bottom-start', 'left-start', 'right-start'],
@@ -6,6 +6,17 @@ import {render} from '../../../test'
6
6
  import {Text, Button} from '../../primitives'
7
7
  import {Tooltip, TooltipDelayGroupProvider} from '../tooltip'
8
8
 
9
+ // Fake timers using Jest
10
+ beforeEach(() => {
11
+ jest.useFakeTimers()
12
+ })
13
+
14
+ // Running all pending timers and switching to real timers using Jest
15
+ afterEach(() => {
16
+ jest.runOnlyPendingTimers()
17
+ jest.useRealTimers()
18
+ })
19
+
9
20
  describe('Tooltip', () => {
10
21
  describe('Using same delay for open and close', () => {
11
22
  it('should hide and show the tooltip content when hovered, with no delay', () => {
@@ -275,6 +286,7 @@ describe('Tooltip', () => {
275
286
  jest.clearAllMocks()
276
287
  })
277
288
  })
289
+
278
290
  describe('Closing the <Tooltip /> with the Escape key', () => {
279
291
  it('Standalone tooltip closes immediately with Escape key', () => {
280
292
  const delay = 150
@@ -342,4 +354,117 @@ describe('Tooltip', () => {
342
354
  expect(screen.queryByText('Tooltip content')).not.toBeInTheDocument()
343
355
  })
344
356
  })
357
+
358
+ describe('Clicking the <Tooltip /> child should close the tooltip', () => {
359
+ it('Should close the tooltip when clicked', () => {
360
+ const delay = 150
361
+
362
+ render(
363
+ <Tooltip content={<Text size={1}>{'Tooltip content'}</Text>} delay={delay}>
364
+ <Button mode="bleed" text="Hover me" />
365
+ </Tooltip>,
366
+ )
367
+
368
+ const button = screen.getByText('Hover me')
369
+
370
+ // Assertion: tooltip does not exist in the document
371
+ expect(screen.queryByText('Tooltip content')).not.toBeInTheDocument()
372
+ fireEvent.focus(button)
373
+
374
+ act(() => jest.advanceTimersByTime(delay))
375
+
376
+ // Assertion: the tooltip is not visible
377
+ expect(screen.queryByText('Tooltip content')).toBeVisible()
378
+
379
+ act(() => fireEvent.click(button))
380
+
381
+ // Assertion: tooltip does not exist in the document
382
+ expect(screen.queryByText('Tooltip content')).not.toBeInTheDocument()
383
+ })
384
+
385
+ it('Should close the tooltip when the context menu is opened (right click)', () => {
386
+ const delay = 150
387
+
388
+ render(
389
+ <Tooltip content={<Text size={1}>{'Tooltip content'}</Text>} delay={delay}>
390
+ <Button mode="bleed" text="Hover me" />
391
+ </Tooltip>,
392
+ )
393
+
394
+ const button = screen.getByText('Hover me')
395
+
396
+ // Assertion: tooltip does not exist in the document
397
+ expect(screen.queryByText('Tooltip content')).not.toBeInTheDocument()
398
+ fireEvent.focus(button)
399
+
400
+ act(() => jest.advanceTimersByTime(delay))
401
+
402
+ // Assertion: the tooltip is not visible
403
+ expect(screen.queryByText('Tooltip content')).toBeVisible()
404
+
405
+ act(() => fireEvent.contextMenu(button))
406
+
407
+ // Assertion: tooltip does not exist in the document
408
+ expect(screen.queryByText('Tooltip content')).not.toBeInTheDocument()
409
+ })
410
+ })
411
+
412
+ describe('Used defined events on <Tooltip /> child should fire correctly', () => {
413
+ const handleBlur = jest.fn()
414
+ const handleClick = jest.fn()
415
+ const handleContextMenu = jest.fn()
416
+ const handleFocus = jest.fn()
417
+ const handleMouseEnter = jest.fn()
418
+ const handleMouseLeave = jest.fn()
419
+
420
+ beforeEach(() => {
421
+ render(
422
+ <Tooltip content={<Text size={1}>{'Tooltip content'}</Text>}>
423
+ <Button
424
+ data-testid="btn"
425
+ mode="bleed"
426
+ onBlur={handleBlur}
427
+ onClick={handleClick}
428
+ onContextMenu={handleContextMenu}
429
+ onFocus={handleFocus}
430
+ onMouseEnter={handleMouseEnter}
431
+ onMouseLeave={handleMouseLeave}
432
+ text="Hover me"
433
+ />
434
+ </Tooltip>,
435
+ )
436
+ })
437
+
438
+ afterEach(() => jest.clearAllMocks())
439
+
440
+ it('should fire the onBlur event', () => {
441
+ fireEvent.blur(screen.getByTestId('btn'))
442
+ expect(handleBlur).toHaveBeenCalledTimes(1)
443
+ })
444
+
445
+ it('should fire the onClick event', () => {
446
+ fireEvent.click(screen.getByTestId('btn'))
447
+ expect(handleClick).toHaveBeenCalledTimes(1)
448
+ })
449
+
450
+ it('should fire the onContextMenu event', () => {
451
+ fireEvent.contextMenu(screen.getByTestId('btn'))
452
+ expect(handleContextMenu).toHaveBeenCalledTimes(1)
453
+ })
454
+
455
+ it('should fire the onFocus event', () => {
456
+ fireEvent.focus(screen.getByTestId('btn'))
457
+ expect(handleFocus).toHaveBeenCalledTimes(1)
458
+ })
459
+
460
+ it('should fire the onMouseEnter event', () => {
461
+ fireEvent.mouseEnter(screen.getByTestId('btn'))
462
+ expect(handleMouseEnter).toHaveBeenCalledTimes(1)
463
+ })
464
+
465
+ it('should fire the onMouseLeave event', () => {
466
+ fireEvent.mouseLeave(screen.getByTestId('btn'))
467
+ expect(handleMouseLeave).toHaveBeenCalledTimes(1)
468
+ })
469
+ })
345
470
  })
@@ -8,7 +8,6 @@ import {
8
8
  useFloating,
9
9
  Middleware,
10
10
  RootBoundary,
11
- size,
12
11
  } from '@floating-ui/react-dom'
13
12
  import {
14
13
  cloneElement,
@@ -28,10 +27,10 @@ import {useArrayProp, useForwardedRef} from '../../hooks'
28
27
  import {useDelayedState} from '../../hooks/useDelayedState'
29
28
  import {ThemeColorSchemeKey, useTheme} from '../../theme'
30
29
  import {Placement} from '../../types'
31
- import {Layer, LayerProps, Portal, useBoundaryElement} from '../../utils'
30
+ import {Layer, LayerProps, Portal, useBoundaryElement, usePortal} from '../../utils'
32
31
  import {Card} from '../card'
33
32
  import {Delay} from '../types'
34
- import {DEFAULT_FALLBACK_PLACEMENTS} from './constants'
33
+ import {DEFAULT_FALLBACK_PLACEMENTS, DEFAULT_TOOLTIP_PADDING} from './constants'
35
34
  import {TooltipArrow} from './tooltipArrow'
36
35
  import {useTooltipDelayGroup} from './tooltipDelayGroup'
37
36
 
@@ -61,8 +60,9 @@ export interface TooltipProps extends Omit<LayerProps, 'as'> {
61
60
  delay?: Delay
62
61
  }
63
62
 
64
- const Root = styled(Layer)`
63
+ const Root = styled(Layer)<{$maxWidth: number}>`
65
64
  pointer-events: none;
65
+ max-width: ${({$maxWidth}) => $maxWidth}px;
66
66
  `
67
67
 
68
68
  /**
@@ -83,7 +83,7 @@ export const Tooltip = forwardRef(function Tooltip(
83
83
  DEFAULT_FALLBACK_PLACEMENTS[props.placement ?? 'bottom'],
84
84
  padding,
85
85
  placement: placementProp = 'bottom',
86
- portal,
86
+ portal: portalProp,
87
87
  scheme,
88
88
  shadow = 2,
89
89
  zOffset = theme.sanity.layer?.tooltip.zOffset,
@@ -96,6 +96,22 @@ export const Tooltip = forwardRef(function Tooltip(
96
96
  const arrowRef = useRef<HTMLDivElement | null>(null)
97
97
  const rootBoundary: RootBoundary = 'viewport'
98
98
 
99
+ const portal = usePortal()
100
+ const portalElement =
101
+ typeof portalProp === 'string' ? portal.elements?.[portalProp] || null : portal.element
102
+
103
+ // Get the maximum tooltip width (sans tooltip padding)
104
+ // Tooltip width should never exceed the width of either any supplied boundary or portal element.
105
+ // If both portal and boundary elements are provided, use the smaller width of the two.
106
+ const tooltipWidth = useMemo(() => {
107
+ const availableWidths = [
108
+ ...(boundaryElement ? [boundaryElement.offsetWidth] : []),
109
+ portalElement?.offsetWidth || document.body.offsetWidth,
110
+ ]
111
+
112
+ return Math.min(...availableWidths) - DEFAULT_TOOLTIP_PADDING * 2
113
+ }, [boundaryElement, portalElement?.offsetWidth])
114
+
99
115
  const middleware = useMemo(() => {
100
116
  const ret: Middleware[] = []
101
117
 
@@ -104,33 +120,20 @@ export const Tooltip = forwardRef(function Tooltip(
104
120
  flip({
105
121
  boundary: boundaryElement || undefined,
106
122
  fallbackPlacements,
107
- padding: 4,
123
+ padding: DEFAULT_TOOLTIP_PADDING,
108
124
  rootBoundary,
109
- mainAxis: false,
110
125
  }),
111
126
  )
112
127
 
113
128
  // Define distance between reference and floating element
114
129
  ret.push(offset({mainAxis: 3}))
115
130
 
116
- // Set width and height on the floating element
117
- ret.push(
118
- size({
119
- apply({availableWidth, availableHeight, elements}) {
120
- Object.assign(elements.floating.style, {
121
- maxWidth: `${availableWidth - 4 * 2}px`, // the padding is `4px`
122
- maxHeight: `${availableHeight - 4 * 2}px`, // the padding is `4px`
123
- })
124
- },
125
- }),
126
- )
127
-
128
- // Shift the tooltip so its sits with the boundary eleement
131
+ // Shift the tooltip so its sits with the boundary element
129
132
  ret.push(
130
133
  shift({
131
134
  boundary: boundaryElement || undefined,
132
135
  rootBoundary,
133
- padding: 4,
136
+ padding: DEFAULT_TOOLTIP_PADDING,
134
137
  }),
135
138
  )
136
139
 
@@ -203,10 +206,48 @@ export const Tooltip = forwardRef(function Tooltip(
203
206
  [isInsideGroup, delayGroupContext, openDelay, tooltipId, closeDelay, setIsOpen],
204
207
  )
205
208
 
206
- const handleBlur = useCallback(() => handleIsOpenChange(false), [handleIsOpenChange])
207
- const handleFocus = useCallback(() => handleIsOpenChange(true), [handleIsOpenChange])
208
- const handleMouseEnter = useCallback(() => handleIsOpenChange(true), [handleIsOpenChange])
209
- const handleMouseLeave = useCallback(() => handleIsOpenChange(false), [handleIsOpenChange])
209
+ const handleBlur = useCallback(
210
+ (e: FocusEvent) => {
211
+ handleIsOpenChange(false)
212
+ childProp?.props?.onBlur?.(e)
213
+ },
214
+ [childProp?.props, handleIsOpenChange],
215
+ )
216
+ const handleClick = useCallback(
217
+ (e: MouseEvent) => {
218
+ handleIsOpenChange(false, true), [handleIsOpenChange]
219
+ childProp?.props.onClick?.(e)
220
+ },
221
+ [childProp?.props, handleIsOpenChange],
222
+ )
223
+ const handleContextMenu = useCallback(
224
+ (e: MouseEvent) => {
225
+ handleIsOpenChange(false, true), [handleIsOpenChange]
226
+ childProp?.props.onContextMenu?.(e)
227
+ },
228
+ [childProp?.props, handleIsOpenChange],
229
+ )
230
+ const handleFocus = useCallback(
231
+ (e: FocusEvent) => {
232
+ handleIsOpenChange(true)
233
+ childProp?.props?.onFocus?.(e)
234
+ },
235
+ [childProp?.props, handleIsOpenChange],
236
+ )
237
+ const handleMouseEnter = useCallback(
238
+ (e: MouseEvent) => {
239
+ handleIsOpenChange(true)
240
+ childProp?.props?.onMouseEnter?.(e)
241
+ },
242
+ [childProp?.props, handleIsOpenChange],
243
+ )
244
+ const handleMouseLeave = useCallback(
245
+ (e: MouseEvent) => {
246
+ handleIsOpenChange(false)
247
+ childProp?.props?.onMouseLeave?.(e)
248
+ },
249
+ [childProp?.props, handleIsOpenChange],
250
+ )
210
251
 
211
252
  // Detect whether the mouse is moving outside of the reference element. This is sometimes
212
253
  // necessary, because the tooltip might not always close as it should (e.g. when clicking
@@ -303,9 +344,20 @@ export const Tooltip = forwardRef(function Tooltip(
303
344
  onFocus: handleFocus,
304
345
  onMouseEnter: handleMouseEnter,
305
346
  onMouseLeave: handleMouseLeave,
347
+ onClick: handleClick,
348
+ onContextMenu: handleContextMenu,
306
349
  ref: setReference,
307
350
  })
308
- }, [childProp, handleBlur, handleFocus, handleMouseEnter, handleMouseLeave, setReference])
351
+ }, [
352
+ childProp,
353
+ handleBlur,
354
+ handleClick,
355
+ handleContextMenu,
356
+ handleFocus,
357
+ handleMouseEnter,
358
+ handleMouseLeave,
359
+ setReference,
360
+ ])
309
361
 
310
362
  if (!child) return <></>
311
363
 
@@ -318,6 +370,7 @@ export const Tooltip = forwardRef(function Tooltip(
318
370
  ref={setFloating}
319
371
  style={floatingStyles}
320
372
  zOffset={zOffset}
373
+ $maxWidth={tooltipWidth}
321
374
  >
322
375
  <Card
323
376
  data-ui="Tooltip__card"
@@ -339,8 +392,8 @@ export const Tooltip = forwardRef(function Tooltip(
339
392
 
340
393
  {showTooltip && (
341
394
  <>
342
- {portal ? (
343
- <Portal __unstable_name={typeof portal === 'string' ? portal : undefined}>
395
+ {portalProp ? (
396
+ <Portal __unstable_name={typeof portalProp === 'string' ? portalProp : undefined}>
344
397
  {root}
345
398
  </Portal>
346
399
  ) : (