-
Notifications
You must be signed in to change notification settings - Fork 667
Popover: Support WCAG - Hoverable #32934
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
r-farkhutdinov
merged 4 commits into
DevExpress:26_1
from
r-farkhutdinov:26_1_tooltip_hoverable
Mar 18, 2026
+413
−54
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| import React from 'react'; | ||
| import type { Meta, StoryObj } from '@storybook/react-webpack5'; | ||
| import { Tooltip } from 'devextreme-react/tooltip'; | ||
|
|
||
| const meta: Meta<typeof Tooltip> = { | ||
| title: 'Components/Tooltip', | ||
| component: Tooltip, | ||
| parameters: { | ||
| layout: 'padded', | ||
| }, | ||
| }; | ||
|
|
||
| export default meta; | ||
|
|
||
| type Story = StoryObj<typeof Tooltip>; | ||
|
|
||
| const HoverableExample: Story['render'] = (args) => ( | ||
| <div style={{ padding: '80px 40px' }}> | ||
| <p style={{ marginBottom: 16 }}> | ||
| Hover the button to show the tooltip, then move the pointer onto | ||
| the tooltip content — it must stay open. | ||
| </p> | ||
| <button id="tooltip-target"> | ||
| Hover me | ||
| </button> | ||
| <Tooltip | ||
| {...args} | ||
| target="#tooltip-target" | ||
| showEvent="mouseenter" | ||
| hideEvent="mouseleave" | ||
| > | ||
| <div style={{ padding: '8px 12px' }}> | ||
| <strong>WCAG — Hoverable</strong> | ||
| <p style={{ margin: '6px 0 0' }}> | ||
| Move your pointer here from the button. | ||
| <br /> | ||
| The tooltip stays open as long as the pointer | ||
| <br /> | ||
| is over the target <em>or</em> this content. | ||
| </p> | ||
| </div> | ||
| </Tooltip> | ||
| </div> | ||
| ); | ||
|
|
||
| export const Hoverable: Story = { | ||
| args: { | ||
| position: 'bottom', | ||
| }, | ||
| argTypes: { | ||
| position: { | ||
| control: 'select', | ||
| options: ['top', 'bottom', 'left', 'right'], | ||
| }, | ||
| }, | ||
| render: HoverableExample, | ||
| }; | ||
|
|
||
| const HoverableWithDelayExample: Story['render'] = (args) => ( | ||
| <div style={{ padding: '80px 40px' }}> | ||
| <p style={{ marginBottom: 16 }}> | ||
| Show delay: <strong>500 ms</strong> — Hide delay: <strong>300 ms</strong>. | ||
| Moving onto the tooltip content cancels the hide timeout. | ||
| </p> | ||
| <button id="tooltip-target-delay"> | ||
| Hover me (with delay) | ||
| </button> | ||
| <Tooltip | ||
| {...args} | ||
| target="#tooltip-target-delay" | ||
| showEvent={{ name: 'mouseenter', delay: 500 }} | ||
| hideEvent={{ name: 'mouseleave', delay: 300 }} | ||
| > | ||
| <div style={{ padding: '8px 12px' }}> | ||
| Move here to cancel the hide timeout. | ||
| </div> | ||
| </Tooltip> | ||
| </div> | ||
| ); | ||
|
|
||
| export const HoverableWithDelay: Story = { | ||
| args: { | ||
| position: 'bottom', | ||
| }, | ||
| argTypes: { | ||
| position: { | ||
| control: 'select', | ||
| options: ['top', 'bottom', 'left', 'right'], | ||
| }, | ||
| }, | ||
| render: HoverableWithDelayExample, | ||
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.