mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-16 01:41:02 +08:00
55c85f77a1
* deps: upgrade rc-menu, and close: #2837 * test: update snapshots * Update rc-calendar * Update rc-cascader * Update rc-dialog * Update dropdown * Update rc-select@7.1.0 * Update rc-slider * Update rc-time-picker * Update rc-tooltip * Update rc-tree-select * Mock rc-trigger and Portal * Fix animation warning when inlineCollapsed changes * fix: should use SubMenu[popupClassName] * Fix typescript error * Fix lint * fix: style for menu * Mock rc-trigger for React 15 * Remvoe allow_failures
36 lines
824 B
Plaintext
36 lines
824 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Table.rowSelection render with default selection correctly 1`] = `
|
|
<div>
|
|
<div
|
|
class="ant-dropdown ant-dropdown-placement-bottomLeft ant-dropdown-hidden"
|
|
>
|
|
<ul
|
|
aria-activedescendant=""
|
|
class="ant-dropdown-menu ant-table-selection-menu ant-dropdown-menu-light ant-dropdown-menu-root ant-dropdown-menu-vertical"
|
|
role="menu"
|
|
tabindex="0"
|
|
>
|
|
<li
|
|
aria-selected="false"
|
|
class="ant-dropdown-menu-item"
|
|
role="menuitem"
|
|
>
|
|
<div>
|
|
Select current page
|
|
</div>
|
|
</li>
|
|
<li
|
|
aria-selected="false"
|
|
class="ant-dropdown-menu-item"
|
|
role="menuitem"
|
|
>
|
|
<div>
|
|
Invert current page
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
`;
|