mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 09:21:22 +08:00
c5b154294e
* add attribute `compact` for InputGroup * improve
191 lines
3.8 KiB
Plaintext
191 lines
3.8 KiB
Plaintext
exports[`test renders ./components/spin/demo/basic.md correctly 1`] = `
|
||
<div
|
||
class="ant-spin ant-spin-spinning">
|
||
<span
|
||
class="ant-spin-dot">
|
||
<i />
|
||
<i />
|
||
<i />
|
||
<i />
|
||
</span>
|
||
</div>
|
||
`;
|
||
|
||
exports[`test renders ./components/spin/demo/delayAndDebounce.md correctly 1`] = `
|
||
<div>
|
||
<div
|
||
class="ant-spin-nested-loading">
|
||
<div
|
||
class="ant-spin-container">
|
||
<div
|
||
class="ant-alert ant-alert-info ant-alert-with-description ant-alert-no-icon"
|
||
data-show="true">
|
||
<span
|
||
class="ant-alert-message">
|
||
Alert message title
|
||
</span>
|
||
<span
|
||
class="ant-alert-description">
|
||
Further details about the context of this alert.
|
||
</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
Loading state:
|
||
<span
|
||
class="ant-switch"
|
||
tabindex="0">
|
||
<span
|
||
class="ant-switch-inner" />
|
||
</span>
|
||
</div>
|
||
`;
|
||
|
||
exports[`test renders ./components/spin/demo/delayAndDebounce.md correctly 1`] = `
|
||
<div>
|
||
<div
|
||
class="ant-spin-nested-loading">
|
||
<div
|
||
class="ant-spin-container">
|
||
<div
|
||
class="ant-alert ant-alert-info ant-alert-with-description ant-alert-no-icon"
|
||
data-show="true">
|
||
<span
|
||
class="ant-alert-message">
|
||
Alert message title
|
||
</span>
|
||
<span
|
||
class="ant-alert-description">
|
||
Further details about the context of this alert.
|
||
</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
Loading state:
|
||
<span
|
||
class="ant-switch"
|
||
tabindex="0">
|
||
<span
|
||
class="ant-switch-inner" />
|
||
</span>
|
||
</div>
|
||
`;
|
||
|
||
exports[`test renders ./components/spin/demo/inside.md correctly 1`] = `
|
||
<div
|
||
class="example">
|
||
<div
|
||
class="ant-spin ant-spin-spinning">
|
||
<span
|
||
class="ant-spin-dot">
|
||
<i />
|
||
<i />
|
||
<i />
|
||
<i />
|
||
</span>
|
||
</div>
|
||
</div>
|
||
`;
|
||
|
||
exports[`test renders ./components/spin/demo/nested.md correctly 1`] = `
|
||
<div>
|
||
<div
|
||
class="ant-spin-nested-loading">
|
||
<div
|
||
class="ant-spin-container">
|
||
<div
|
||
class="ant-alert ant-alert-info ant-alert-with-description ant-alert-no-icon"
|
||
data-show="true">
|
||
<span
|
||
class="ant-alert-message">
|
||
Alert message title
|
||
</span>
|
||
<span
|
||
class="ant-alert-description">
|
||
Further details about the context of this alert.
|
||
</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
Loading state:
|
||
<span
|
||
class="ant-switch"
|
||
tabindex="0">
|
||
<span
|
||
class="ant-switch-inner" />
|
||
</span>
|
||
</div>
|
||
`;
|
||
|
||
exports[`test renders ./components/spin/demo/size.md correctly 1`] = `
|
||
<div>
|
||
<div
|
||
class="ant-spin ant-spin-sm ant-spin-spinning">
|
||
<span
|
||
class="ant-spin-dot">
|
||
<i />
|
||
<i />
|
||
<i />
|
||
<i />
|
||
</span>
|
||
</div>
|
||
<div
|
||
class="ant-spin ant-spin-spinning">
|
||
<span
|
||
class="ant-spin-dot">
|
||
<i />
|
||
<i />
|
||
<i />
|
||
<i />
|
||
</span>
|
||
</div>
|
||
<div
|
||
class="ant-spin ant-spin-lg ant-spin-spinning">
|
||
<span
|
||
class="ant-spin-dot">
|
||
<i />
|
||
<i />
|
||
<i />
|
||
<i />
|
||
</span>
|
||
</div>
|
||
</div>
|
||
`;
|
||
|
||
exports[`test renders ./components/spin/demo/tip.md correctly 1`] = `
|
||
<div
|
||
class="ant-spin-nested-loading">
|
||
<div>
|
||
<div
|
||
class="ant-spin ant-spin-spinning ant-spin-show-text">
|
||
<span
|
||
class="ant-spin-dot">
|
||
<i />
|
||
<i />
|
||
<i />
|
||
<i />
|
||
</span>
|
||
<div
|
||
class="ant-spin-text">
|
||
Loading...
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div
|
||
class="ant-spin-container ant-spin-blur">
|
||
<div
|
||
class="ant-alert ant-alert-info ant-alert-with-description ant-alert-no-icon"
|
||
data-show="true">
|
||
<span
|
||
class="ant-alert-message">
|
||
Alert message title
|
||
</span>
|
||
<span
|
||
class="ant-alert-description">
|
||
Further details about the context of this alert.
|
||
</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
`;
|