mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 09:21:22 +08:00
6dd39c1f89
Co-authored-by: wanghao <wanghao.wong@bytedance.com>
41 lines
943 B
Plaintext
41 lines
943 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Tooltip rtl render component should be rendered correctly in RTL direction 1`] = `<span />`;
|
|
|
|
exports[`Tooltip should hide when mouse leave antd disabled component Button 1`] = `
|
|
<span
|
|
class="ant-tooltip-disabled-compatible-wrapper"
|
|
style="display: inline-block; cursor: not-allowed;"
|
|
>
|
|
<button
|
|
class="ant-btn"
|
|
disabled=""
|
|
style="pointer-events: none;"
|
|
type="button"
|
|
/>
|
|
</span>
|
|
`;
|
|
|
|
exports[`Tooltip should hide when mouse leave antd disabled component Switch 1`] = `
|
|
<span
|
|
class="ant-tooltip-disabled-compatible-wrapper"
|
|
style="display: inline-block; cursor: not-allowed;"
|
|
>
|
|
<button
|
|
aria-checked="false"
|
|
class="ant-switch ant-switch-disabled"
|
|
disabled=""
|
|
role="switch"
|
|
style="pointer-events: none;"
|
|
type="button"
|
|
>
|
|
<div
|
|
class="ant-switch-handle"
|
|
/>
|
|
<span
|
|
class="ant-switch-inner"
|
|
/>
|
|
</button>
|
|
</span>
|
|
`;
|