mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 17:31:25 +08:00
1306c4656d
- rc-pagination -> ~1.7.0 - fix site bug
160 lines
3.1 KiB
Plaintext
160 lines
3.1 KiB
Plaintext
exports[`test renders ./components/dropdown/demo/basic.md correctly 1`] = `
|
|
<a
|
|
class="ant-dropdown-link ant-dropdown-trigger"
|
|
href="#">
|
|
Hover me
|
|
<i
|
|
class="anticon anticon-down" />
|
|
</a>
|
|
`;
|
|
|
|
exports[`test renders ./components/dropdown/demo/dropdown-button.md correctly 1`] = `
|
|
<div>
|
|
<div
|
|
class="ant-btn-group ant-dropdown-button">
|
|
<button
|
|
class="ant-btn ant-btn-default"
|
|
type="button">
|
|
<span>
|
|
Dropdown
|
|
</span>
|
|
</button>
|
|
<button
|
|
class="ant-btn ant-btn-default ant-dropdown-trigger"
|
|
type="button">
|
|
<i
|
|
class="anticon anticon-down" />
|
|
</button>
|
|
</div>
|
|
<div
|
|
class="ant-btn-group ant-dropdown-button"
|
|
style="margin-left:8px;">
|
|
<button
|
|
class="ant-btn ant-btn-default"
|
|
disabled=""
|
|
type="button">
|
|
<span>
|
|
Dropdown
|
|
</span>
|
|
</button>
|
|
<button
|
|
class="ant-btn ant-btn-default ant-dropdown-trigger"
|
|
disabled=""
|
|
type="button">
|
|
<i
|
|
class="anticon anticon-down" />
|
|
</button>
|
|
</div>
|
|
<button
|
|
class="ant-btn ant-dropdown-trigger"
|
|
style="margin-left:8px;"
|
|
type="button">
|
|
<span>
|
|
Button
|
|
</span>
|
|
<i
|
|
class="anticon anticon-down" />
|
|
</button>
|
|
</div>
|
|
`;
|
|
|
|
exports[`test renders ./components/dropdown/demo/event.md correctly 1`] = `
|
|
<a
|
|
class="ant-dropdown-link ant-dropdown-trigger"
|
|
href="#">
|
|
Hover me, Click menu item
|
|
<i
|
|
class="anticon anticon-down" />
|
|
</a>
|
|
`;
|
|
|
|
exports[`test renders ./components/dropdown/demo/item.md correctly 1`] = `
|
|
<a
|
|
class="ant-dropdown-link ant-dropdown-trigger"
|
|
href="#">
|
|
Hover me
|
|
<i
|
|
class="anticon anticon-down" />
|
|
</a>
|
|
`;
|
|
|
|
exports[`test renders ./components/dropdown/demo/overlay-visible.md correctly 1`] = `
|
|
<a
|
|
class="ant-dropdown-link ant-dropdown-trigger"
|
|
href="#">
|
|
Hover me
|
|
<i
|
|
class="anticon anticon-down" />
|
|
</a>
|
|
`;
|
|
|
|
exports[`test renders ./components/dropdown/demo/placement.md correctly 1`] = `
|
|
<div>
|
|
<button
|
|
class="ant-btn ant-dropdown-trigger"
|
|
type="button">
|
|
<span>
|
|
bottomLeft
|
|
</span>
|
|
</button>
|
|
<button
|
|
class="ant-btn ant-dropdown-trigger"
|
|
type="button">
|
|
<span>
|
|
bottomCenter
|
|
</span>
|
|
</button>
|
|
<button
|
|
class="ant-btn ant-dropdown-trigger"
|
|
type="button">
|
|
<span>
|
|
bottomRight
|
|
</span>
|
|
</button>
|
|
<br />
|
|
<button
|
|
class="ant-btn ant-dropdown-trigger"
|
|
type="button">
|
|
<span>
|
|
topLeft
|
|
</span>
|
|
</button>
|
|
<button
|
|
class="ant-btn ant-dropdown-trigger"
|
|
type="button">
|
|
<span>
|
|
topCenter
|
|
</span>
|
|
</button>
|
|
<button
|
|
class="ant-btn ant-dropdown-trigger"
|
|
type="button">
|
|
<span>
|
|
topRight
|
|
</span>
|
|
</button>
|
|
</div>
|
|
`;
|
|
|
|
exports[`test renders ./components/dropdown/demo/sub-menu.md correctly 1`] = `
|
|
<a
|
|
class="ant-dropdown-link ant-dropdown-trigger"
|
|
href="#">
|
|
Cascading menu
|
|
<i
|
|
class="anticon anticon-down" />
|
|
</a>
|
|
`;
|
|
|
|
exports[`test renders ./components/dropdown/demo/trigger.md correctly 1`] = `
|
|
<div>
|
|
<a
|
|
class="ant-dropdown-link ant-dropdown-trigger"
|
|
href="#">
|
|
Click me
|
|
<i
|
|
class="anticon anticon-down" />
|
|
</a>
|
|
</div>
|
|
`;
|