mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-24 17:38:40 +08:00
e45cd39906
* add h4 Signed-off-by: Kerry Archibald <kerrya@element.io> * add mixin to clear list style Signed-off-by: Kerry Archibald <kerrya@element.io> * add basic sidebar container Signed-off-by: Kerry Archibald <kerrya@element.io> * open list view button on beaconviewdialog Signed-off-by: Kerry Archibald <kerrya@element.io> * update tests for new utils Signed-off-by: Kerry Archibald <kerrya@element.io>
54 lines
1.2 KiB
Plaintext
54 lines
1.2 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`<DialogSidebar /> renders sidebar correctly 1`] = `
|
|
<DialogSidebar
|
|
beacons={Array []}
|
|
requestClose={[MockFunction]}
|
|
>
|
|
<div
|
|
className="mx_DialogSidebar"
|
|
>
|
|
<div
|
|
className="mx_DialogSidebar_header"
|
|
>
|
|
<Heading
|
|
size="h4"
|
|
>
|
|
<h4
|
|
className="mx_Heading_h4"
|
|
>
|
|
View List
|
|
</h4>
|
|
</Heading>
|
|
<AccessibleButton
|
|
className="mx_DialogSidebar_closeButton"
|
|
data-test-id="dialog-sidebar-close"
|
|
element="div"
|
|
onClick={[MockFunction]}
|
|
role="button"
|
|
tabIndex={0}
|
|
title="Close sidebar"
|
|
>
|
|
<div
|
|
className="mx_AccessibleButton mx_DialogSidebar_closeButton"
|
|
data-test-id="dialog-sidebar-close"
|
|
onClick={[MockFunction]}
|
|
onKeyDown={[Function]}
|
|
onKeyUp={[Function]}
|
|
role="button"
|
|
tabIndex={0}
|
|
title="Close sidebar"
|
|
>
|
|
<div
|
|
className="mx_DialogSidebar_closeButtonIcon"
|
|
/>
|
|
</div>
|
|
</AccessibleButton>
|
|
</div>
|
|
<ol
|
|
className="mx_DialogSidebar_list"
|
|
/>
|
|
</div>
|
|
</DialogSidebar>
|
|
`;
|