Make tooltips keyboard accessible (#7281)
* show tooltips on hover in eventtile Signed-off-by: Kerry Archibald <kerrya@element.io> * use tooltip props pass thru * use tooltiptarget in InfoTooltip Signed-off-by: Kerry Archibald <kerrya@element.io> * use target in TestWithTooltip Signed-off-by: Kerry Archibald <kerrya@element.io> * tsc fixes Signed-off-by: Kerry Archibald <kerrya@element.io> * test tooltip target Signed-off-by: Kerry Archibald <kerrya@element.io> * lint fix Signed-off-by: Kerry Archibald <kerrya@element.io> * rename tooltip handlers Signed-off-by: Kerry Archibald <kerrya@element.io> * update copyright to 2021 Signed-off-by: Kerry Archibald <kerrya@element.io>
This commit is contained in:
parent
4712ae49b2
commit
0c850b2f13
11 changed files with 242 additions and 98 deletions
|
@ -0,0 +1,29 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`<TooltipTarget /> displays tooltip on mouseover 1`] = `
|
||||
<div
|
||||
class="mx_Tooltip test tooltipClassName mx_Tooltip_visible"
|
||||
style="right: 1008px; top: -26px; display: block;"
|
||||
>
|
||||
<div
|
||||
class="mx_Tooltip_chevron"
|
||||
/>
|
||||
test label
|
||||
</div>
|
||||
`;
|
||||
|
||||
exports[`<TooltipTarget /> renders container 1`] = `
|
||||
<div
|
||||
aria-describedby="test id"
|
||||
class="test tooltipTargetClassName"
|
||||
data-test-id="test"
|
||||
tabindex="0"
|
||||
>
|
||||
<span>
|
||||
child
|
||||
</span>
|
||||
<div
|
||||
class="test className"
|
||||
/>
|
||||
</div>
|
||||
`;
|
Loading…
Add table
Add a link
Reference in a new issue