ant-design/components/popover/__tests__/__snapshots__/demo.test.ts.snap

277 lines
4.6 KiB
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`renders ./components/popover/demo/arrow-point-at-center.md correctly 1`] = `
Array [
2016-11-22 14:28:05 +08:00
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
Align edge / 边缘对齐
</span>
</button>,
2016-11-22 14:28:05 +08:00
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
Arrow points to center / 箭头指向中心
</span>
</button>,
]
2016-11-22 14:28:05 +08:00
`;
exports[`renders ./components/popover/demo/basic.md correctly 1`] = `
2016-11-22 14:28:05 +08:00
<button
class="ant-btn ant-btn-primary"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
Hover me
</span>
</button>
`;
exports[`renders ./components/popover/demo/control.md correctly 1`] = `
2016-11-22 14:28:05 +08:00
<button
class="ant-btn ant-btn-primary"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
2017-01-25 21:27:14 +08:00
Click me
2016-11-22 14:28:05 +08:00
</span>
</button>
`;
exports[`renders ./components/popover/demo/hover-with-click.md correctly 1`] = `
<button
class="ant-btn ant-btn-default"
type="button"
>
<span>
Hover and click / 悬停并单击
</span>
</button>
`;
exports[`renders ./components/popover/demo/placement.md correctly 1`] = `
2016-11-22 14:28:05 +08:00
<div
class="demo"
>
2016-11-22 14:28:05 +08:00
<div
style="margin-left:70px;white-space:nowrap"
>
2016-11-22 14:28:05 +08:00
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
TL
</span>
</button>
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
Top
</span>
</button>
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
TR
</span>
</button>
</div>
<div
style="width:70px;float:left"
>
2016-11-22 14:28:05 +08:00
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
LT
</span>
</button>
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
Left
</span>
</button>
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
LB
</span>
</button>
</div>
<div
style="width:70px;margin-left:304px"
>
2016-11-22 14:28:05 +08:00
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
RT
</span>
</button>
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
Right
</span>
</button>
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
RB
</span>
</button>
</div>
<div
style="margin-left:70px;clear:both;white-space:nowrap"
>
2016-11-22 14:28:05 +08:00
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
BL
</span>
</button>
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
Bottom
</span>
</button>
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
BR
</span>
</button>
</div>
</div>
`;
exports[`renders ./components/popover/demo/render-panel.md correctly 1`] = `
Array [
<div
class="ant-popover ant-popover-pure ant-popover-placement-top"
>
<div
class="ant-popover-content"
>
<div
class="ant-popover-arrow"
/>
<div
class="ant-popover-inner"
role="tooltip"
>
<div
class="ant-popover-title"
>
Title
</div>
<div
class="ant-popover-inner-content"
>
<div>
<p>
Content
</p>
<p>
Content
</p>
</div>
</div>
</div>
</div>
</div>,
<div
class="ant-popover ant-popover-pure ant-popover-placement-bottomLeft"
2022-11-05 10:14:59 +08:00
style="width:250px"
>
<div
class="ant-popover-content"
2022-10-11 21:33:29 +08:00
style="width:250px"
>
<div
class="ant-popover-arrow"
/>
<div
class="ant-popover-inner"
role="tooltip"
>
<div
class="ant-popover-title"
>
Title
</div>
<div
class="ant-popover-inner-content"
>
<div>
<p>
Content
</p>
<p>
Content
</p>
</div>
</div>
</div>
</div>
</div>,
]
`;
exports[`renders ./components/popover/demo/triggerType.md correctly 1`] = `
2016-11-22 14:28:05 +08:00
<div>
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
Hover me
</span>
</button>
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
Focus me
</span>
</button>
<button
class="ant-btn ant-btn-default"
type="button"
>
2016-11-22 14:28:05 +08:00
<span>
Click me
</span>
</button>
</div>
`;