2017-03-17 18:56:30 +08:00
|
|
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
|
|
|
|
exports[`renders ./components/dropdown/demo/basic.md correctly 1`] = `
|
2017-09-15 16:42:25 +08:00
|
|
|
<a
|
|
|
|
class="ant-dropdown-link ant-dropdown-trigger"
|
|
|
|
href="#"
|
2017-03-17 18:56:30 +08:00
|
|
|
>
|
2017-09-15 16:42:25 +08:00
|
|
|
Hover me
|
|
|
|
<i
|
|
|
|
class="anticon anticon-down"
|
|
|
|
/>
|
|
|
|
</a>
|
2016-11-22 14:28:05 +08:00
|
|
|
`;
|
|
|
|
|
2017-03-17 18:56:30 +08:00
|
|
|
exports[`renders ./components/dropdown/demo/dropdown-button.md correctly 1`] = `
|
2016-11-22 14:28:05 +08:00
|
|
|
<div>
|
|
|
|
<div
|
2017-03-17 18:56:30 +08:00
|
|
|
class="ant-btn-group ant-dropdown-button"
|
|
|
|
>
|
2016-11-22 14:28:05 +08:00
|
|
|
<button
|
2017-02-04 22:35:33 +08:00
|
|
|
class="ant-btn ant-btn-default"
|
2017-03-17 18:56:30 +08:00
|
|
|
type="button"
|
|
|
|
>
|
2016-11-22 14:28:05 +08:00
|
|
|
<span>
|
|
|
|
Dropdown
|
|
|
|
</span>
|
|
|
|
</button>
|
2017-09-15 16:42:25 +08:00
|
|
|
<button
|
|
|
|
class="ant-btn ant-dropdown-trigger ant-btn-default"
|
|
|
|
type="button"
|
2017-03-17 18:56:30 +08:00
|
|
|
>
|
2017-09-15 16:42:25 +08:00
|
|
|
<i
|
|
|
|
class="anticon anticon-down"
|
|
|
|
/>
|
|
|
|
</button>
|
2016-11-22 14:28:05 +08:00
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
class="ant-btn-group ant-dropdown-button"
|
2017-03-17 18:56:30 +08:00
|
|
|
style="margin-left:8px;"
|
|
|
|
>
|
2016-11-22 14:28:05 +08:00
|
|
|
<button
|
2017-02-04 22:35:33 +08:00
|
|
|
class="ant-btn ant-btn-default"
|
2016-11-22 14:28:05 +08:00
|
|
|
disabled=""
|
2017-03-17 18:56:30 +08:00
|
|
|
type="button"
|
|
|
|
>
|
2016-11-22 14:28:05 +08:00
|
|
|
<span>
|
|
|
|
Dropdown
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
<button
|
2017-09-15 16:42:25 +08:00
|
|
|
class="ant-btn ant-dropdown-trigger ant-btn-default"
|
2017-03-17 18:56:30 +08:00
|
|
|
type="button"
|
|
|
|
>
|
2016-11-22 14:28:05 +08:00
|
|
|
<i
|
2017-03-17 18:56:30 +08:00
|
|
|
class="anticon anticon-down"
|
|
|
|
/>
|
2016-11-22 14:28:05 +08:00
|
|
|
</button>
|
|
|
|
</div>
|
2017-09-15 16:42:25 +08:00
|
|
|
<button
|
|
|
|
class="ant-btn ant-dropdown-trigger"
|
|
|
|
style="margin-left:8px;"
|
|
|
|
type="button"
|
2017-09-15 16:14:26 +08:00
|
|
|
>
|
2017-09-15 16:42:25 +08:00
|
|
|
<span>
|
|
|
|
Button
|
|
|
|
</span>
|
2017-09-15 16:14:26 +08:00
|
|
|
<i
|
|
|
|
class="anticon anticon-down"
|
|
|
|
/>
|
2017-09-15 16:42:25 +08:00
|
|
|
</button>
|
2017-09-15 16:14:26 +08:00
|
|
|
</div>
|
2016-11-22 14:28:05 +08:00
|
|
|
`;
|
|
|
|
|
2017-09-15 16:42:25 +08:00
|
|
|
exports[`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>
|
|
|
|
`;
|
|
|
|
|
2017-03-17 18:56:30 +08:00
|
|
|
exports[`renders ./components/dropdown/demo/item.md correctly 1`] = `
|
2017-09-15 16:42:25 +08:00
|
|
|
<a
|
|
|
|
class="ant-dropdown-link ant-dropdown-trigger"
|
|
|
|
href="#"
|
2017-03-17 18:56:30 +08:00
|
|
|
>
|
2017-09-15 16:42:25 +08:00
|
|
|
Hover me
|
|
|
|
<i
|
|
|
|
class="anticon anticon-down"
|
|
|
|
/>
|
|
|
|
</a>
|
2016-11-22 14:28:05 +08:00
|
|
|
`;
|
|
|
|
|
2017-03-17 18:56:30 +08:00
|
|
|
exports[`renders ./components/dropdown/demo/overlay-visible.md correctly 1`] = `
|
2017-09-15 16:42:25 +08:00
|
|
|
<a
|
|
|
|
class="ant-dropdown-link ant-dropdown-trigger"
|
|
|
|
href="#"
|
2017-03-17 18:56:30 +08:00
|
|
|
>
|
2017-09-15 16:42:25 +08:00
|
|
|
Hover me
|
|
|
|
<i
|
|
|
|
class="anticon anticon-down"
|
|
|
|
/>
|
|
|
|
</a>
|
2016-11-22 14:28:05 +08:00
|
|
|
`;
|
|
|
|
|
2017-03-17 18:56:30 +08:00
|
|
|
exports[`renders ./components/dropdown/demo/placement.md correctly 1`] = `
|
2017-02-10 20:32:55 +08:00
|
|
|
<div>
|
2017-09-15 16:42:25 +08:00
|
|
|
<button
|
|
|
|
class="ant-btn ant-dropdown-trigger"
|
|
|
|
type="button"
|
2017-03-17 18:56:30 +08:00
|
|
|
>
|
2017-09-15 16:42:25 +08:00
|
|
|
<span>
|
|
|
|
bottomLeft
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
class="ant-btn ant-dropdown-trigger"
|
|
|
|
type="button"
|
2017-03-17 18:56:30 +08:00
|
|
|
>
|
2017-09-15 16:42:25 +08:00
|
|
|
<span>
|
|
|
|
bottomCenter
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
class="ant-btn ant-dropdown-trigger"
|
|
|
|
type="button"
|
2017-03-17 18:56:30 +08:00
|
|
|
>
|
2017-09-15 16:42:25 +08:00
|
|
|
<span>
|
|
|
|
bottomRight
|
|
|
|
</span>
|
|
|
|
</button>
|
2017-02-10 20:32:55 +08:00
|
|
|
<br />
|
2017-09-15 16:42:25 +08:00
|
|
|
<button
|
|
|
|
class="ant-btn ant-dropdown-trigger"
|
|
|
|
type="button"
|
2017-03-17 18:56:30 +08:00
|
|
|
>
|
2017-09-15 16:42:25 +08:00
|
|
|
<span>
|
|
|
|
topLeft
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
class="ant-btn ant-dropdown-trigger"
|
|
|
|
type="button"
|
2017-03-17 18:56:30 +08:00
|
|
|
>
|
2017-09-15 16:42:25 +08:00
|
|
|
<span>
|
|
|
|
topCenter
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
class="ant-btn ant-dropdown-trigger"
|
|
|
|
type="button"
|
2017-03-17 18:56:30 +08:00
|
|
|
>
|
2017-09-15 16:42:25 +08:00
|
|
|
<span>
|
|
|
|
topRight
|
|
|
|
</span>
|
|
|
|
</button>
|
2017-02-10 20:32:55 +08:00
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
|
2017-03-17 18:56:30 +08:00
|
|
|
exports[`renders ./components/dropdown/demo/sub-menu.md correctly 1`] = `
|
2017-09-15 16:42:25 +08:00
|
|
|
<a
|
|
|
|
class="ant-dropdown-link ant-dropdown-trigger"
|
|
|
|
href="#"
|
2017-03-17 18:56:30 +08:00
|
|
|
>
|
2017-09-15 16:42:25 +08:00
|
|
|
Cascading menu
|
|
|
|
<i
|
|
|
|
class="anticon anticon-down"
|
|
|
|
/>
|
|
|
|
</a>
|
|
|
|
`;
|
|
|
|
|
|
|
|
exports[`renders ./components/dropdown/demo/trigger.md correctly 1`] = `
|
|
|
|
<div>
|
2016-11-22 14:28:05 +08:00
|
|
|
<a
|
2016-12-03 17:33:46 +08:00
|
|
|
class="ant-dropdown-link ant-dropdown-trigger"
|
2017-03-17 18:56:30 +08:00
|
|
|
href="#"
|
|
|
|
>
|
2017-09-15 16:42:25 +08:00
|
|
|
Click me
|
2016-11-22 14:28:05 +08:00
|
|
|
<i
|
2017-03-17 18:56:30 +08:00
|
|
|
class="anticon anticon-down"
|
|
|
|
/>
|
2016-11-22 14:28:05 +08:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
`;
|