You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.2 KiB
91 lines
2.2 KiB
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Dropdown overlay is function and has custom transitionName 1`] = `
|
|
Array [
|
|
<button
|
|
class="ant-dropdown-trigger ant-dropdown-open"
|
|
type="button"
|
|
>
|
|
button
|
|
</button>,
|
|
<div
|
|
class="ant-dropdown move-up-appear move-up-appear-prepare move-up ant-dropdown-placement-bottomLeft"
|
|
style="--arrow-x: 0px; --arrow-y: 0px; left: -1000vw; top: -1000vh; box-sizing: border-box;"
|
|
>
|
|
<div>
|
|
menu
|
|
</div>
|
|
</div>,
|
|
]
|
|
`;
|
|
|
|
exports[`Dropdown overlay is string 1`] = `
|
|
Array [
|
|
<button
|
|
class="ant-dropdown-trigger ant-dropdown-open"
|
|
type="button"
|
|
>
|
|
button
|
|
</button>,
|
|
<div
|
|
class="ant-dropdown ant-slide-up-appear ant-slide-up-appear-prepare ant-slide-up ant-dropdown-placement-bottomLeft"
|
|
style="--arrow-x: 0px; --arrow-y: 0px; left: -1000vw; top: -1000vh; box-sizing: border-box;"
|
|
>
|
|
<span>
|
|
string
|
|
</span>
|
|
</div>,
|
|
]
|
|
`;
|
|
|
|
exports[`Dropdown rtl render component should be rendered correctly in RTL direction 1`] = `
|
|
<span
|
|
class="ant-dropdown-trigger ant-dropdown-rtl"
|
|
/>
|
|
`;
|
|
|
|
exports[`Dropdown should render custom dropdown correctly 1`] = `
|
|
Array [
|
|
<button
|
|
class="ant-dropdown-trigger ant-dropdown-open"
|
|
type="button"
|
|
>
|
|
button
|
|
</button>,
|
|
<div
|
|
class="ant-dropdown ant-slide-up-appear ant-slide-up-appear-prepare ant-slide-up ant-dropdown-placement-bottomLeft"
|
|
style="--arrow-x: 0px; --arrow-y: 0px; left: -1000vw; top: -1000vh; box-sizing: border-box;"
|
|
>
|
|
<div>
|
|
<ul
|
|
class="ant-dropdown-menu ant-dropdown-menu-root ant-dropdown-menu-vertical ant-dropdown-menu-light"
|
|
data-menu-list="true"
|
|
role="menu"
|
|
tabindex="0"
|
|
>
|
|
<li
|
|
class="ant-dropdown-menu-item ant-dropdown-menu-item-only-child"
|
|
data-menu-id="rc-menu-uuid-test-1"
|
|
role="menuitem"
|
|
tabindex="-1"
|
|
>
|
|
<span
|
|
class="ant-dropdown-menu-title-content"
|
|
>
|
|
foo
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
<div
|
|
aria-hidden="true"
|
|
style="display: none;"
|
|
/>
|
|
<div
|
|
class="dropdown-custom-node"
|
|
>
|
|
CUSTOM NODE
|
|
</div>
|
|
</div>
|
|
</div>,
|
|
]
|
|
`;
|
|
|