mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 17:31:25 +08:00
112 lines
2.3 KiB
Plaintext
112 lines
2.3 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/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>
|
|
`;
|