You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

133 lines
1.8 KiB

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`renders ./components/tooltip/demo/arrow-point-at-center.md correctly 1`] = `
<div>
<button
class="ant-btn"
type="button"
>
<span>
Align edge / 边缘对齐
</span>
</button>
<button
class="ant-btn"
type="button"
>
<span>
Arrow points to center / 箭头指向中心
</span>
</button>
</div>
`;
exports[`renders ./components/tooltip/demo/auto-adjust-overflow.md correctly 1`] = `
<div
style="overflow:hidden;position:relative;padding:24px;border:1px solid #e9e9e9;"
>
<button
class="ant-btn"
type="button"
>
<span>
Adjust automatically / 自动调整
</span>
</button>
<br />
<button
class="ant-btn"
type="button"
>
<span>
Ingore / 不处理
</span>
</button>
</div>
`;
exports[`renders ./components/tooltip/demo/basic.md correctly 1`] = `
<span>
Tooltip will show when mouse enter.
</span>
`;
exports[`renders ./components/tooltip/demo/placement.md correctly 1`] = `
<div>
<div
style="margin-left:60px;"
>
<a
href="#"
>
TL
</a>
<a
href="#"
>
Top
</a>
<a
href="#"
>
TR
</a>
</div>
<div
style="width:60px;float:left;"
>
<a
href="#"
>
LT
</a>
<a
href="#"
>
Left
</a>
<a
href="#"
>
LB
</a>
</div>
<div
style="width:60px;margin-left:270px;"
>
<a
href="#"
>
RT
</a>
<a
href="#"
>
Right
</a>
<a
href="#"
>
RB
</a>
</div>
<div
style="margin-left:60px;clear:both;"
>
<a
href="#"
>
BL
</a>
<a
href="#"
>
Bottom
</a>
<a
href="#"
>
BR
</a>
</div>
</div>
`;