2017-03-17 18:56:30 +08:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
2022-11-09 12:28:04 +08:00
exports[`renders ./components/collapse/demo/accordion.tsx correctly 1`] = `
2016-11-22 14:28:05 +08:00
<div
2022-05-27 16:07:32 +08:00
class="ant-collapse ant-collapse-icon-position-start"
2018-05-04 18:15:28 +08:00
role="tablist"
2017-03-17 18:56:30 +08:00
>
2016-11-22 14:28:05 +08:00
<div
2017-03-17 18:56:30 +08:00
class="ant-collapse-item"
>
2016-11-22 14:28:05 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2016-11-22 14:28:05 +08:00
aria-expanded="false"
class="ant-collapse-header"
2017-03-17 18:56:30 +08:00
role="tab"
2018-05-04 18:15:28 +08:00
tabindex="0"
2017-03-17 18:56:30 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 1
</span>
2016-11-22 14:28:05 +08:00
</div>
</div>
<div
2017-03-17 18:56:30 +08:00
class="ant-collapse-item"
>
2016-11-22 14:28:05 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2016-11-22 14:28:05 +08:00
aria-expanded="false"
class="ant-collapse-header"
2017-03-17 18:56:30 +08:00
role="tab"
2018-05-04 18:15:28 +08:00
tabindex="0"
2017-03-17 18:56:30 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 2
</span>
2016-11-22 14:28:05 +08:00
</div>
</div>
<div
2017-03-17 18:56:30 +08:00
class="ant-collapse-item"
>
2016-11-22 14:28:05 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2016-11-22 14:28:05 +08:00
aria-expanded="false"
class="ant-collapse-header"
2017-03-17 18:56:30 +08:00
role="tab"
2018-05-04 18:15:28 +08:00
tabindex="0"
2017-03-17 18:56:30 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 3
</span>
2016-11-22 14:28:05 +08:00
</div>
</div>
</div>
`;
2022-11-09 12:28:04 +08:00
exports[`renders ./components/collapse/demo/basic.tsx correctly 1`] = `
2016-11-22 14:28:05 +08:00
<div
2022-05-27 16:07:32 +08:00
class="ant-collapse ant-collapse-icon-position-start"
2017-03-17 18:56:30 +08:00
>
2016-11-22 14:28:05 +08:00
<div
2017-03-17 18:56:30 +08:00
class="ant-collapse-item ant-collapse-item-active"
>
2016-11-22 14:28:05 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2016-11-22 14:28:05 +08:00
aria-expanded="true"
class="ant-collapse-header"
2018-05-04 18:15:28 +08:00
role="button"
tabindex="0"
2017-03-17 18:56:30 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
2022-10-08 16:17:20 +08:00
style="-ms-transform:rotate(90deg);transform:rotate(90deg)"
2021-10-14 17:16:38 +08:00
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 1
</span>
2016-11-22 14:28:05 +08:00
</div>
<div
class="ant-collapse-content ant-collapse-content-active"
2017-03-17 18:56:30 +08:00
>
2016-11-22 14:28:05 +08:00
<div
2017-03-17 18:56:30 +08:00
class="ant-collapse-content-box"
>
2016-11-22 14:28:05 +08:00
<p>
2017-10-09 13:32:11 +08:00
A dog is a type of domesticated animal.
Known for its loyalty and faithfulness,
it can be found as a welcome guest in many households across the world.
2016-11-22 14:28:05 +08:00
</p>
</div>
</div>
</div>
<div
2017-03-17 18:56:30 +08:00
class="ant-collapse-item"
>
2016-11-22 14:28:05 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2016-11-22 14:28:05 +08:00
aria-expanded="false"
class="ant-collapse-header"
2018-05-04 18:15:28 +08:00
role="button"
tabindex="0"
2017-03-17 18:56:30 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 2
</span>
2016-11-22 14:28:05 +08:00
</div>
</div>
<div
2020-11-30 15:20:42 +08:00
class="ant-collapse-item"
2017-03-17 18:56:30 +08:00
>
2016-11-22 14:28:05 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2016-11-22 14:28:05 +08:00
aria-expanded="false"
class="ant-collapse-header"
2018-05-04 18:15:28 +08:00
role="button"
2020-11-30 15:20:42 +08:00
tabindex="0"
2017-03-17 18:56:30 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 3
</span>
2016-11-22 14:28:05 +08:00
</div>
</div>
</div>
`;
2022-11-09 12:28:04 +08:00
exports[`renders ./components/collapse/demo/borderless.tsx correctly 1`] = `
2016-11-22 14:28:05 +08:00
<div
2022-05-27 16:07:32 +08:00
class="ant-collapse ant-collapse-icon-position-start ant-collapse-borderless"
2017-03-17 18:56:30 +08:00
>
2016-11-22 14:28:05 +08:00
<div
2017-03-17 18:56:30 +08:00
class="ant-collapse-item ant-collapse-item-active"
>
2016-11-22 14:28:05 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2016-11-22 14:28:05 +08:00
aria-expanded="true"
class="ant-collapse-header"
2018-05-04 18:15:28 +08:00
role="button"
tabindex="0"
2017-03-17 18:56:30 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
2022-10-08 16:17:20 +08:00
style="-ms-transform:rotate(90deg);transform:rotate(90deg)"
2021-10-14 17:16:38 +08:00
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 1
</span>
2016-11-22 14:28:05 +08:00
</div>
<div
class="ant-collapse-content ant-collapse-content-active"
2017-03-17 18:56:30 +08:00
>
2016-11-22 14:28:05 +08:00
<div
2017-03-17 18:56:30 +08:00
class="ant-collapse-content-box"
>
2017-11-27 14:41:17 +08:00
<p
2022-10-08 16:17:20 +08:00
style="padding-left:24px"
2017-11-27 14:41:17 +08:00
>
A dog is a type of domesticated animal. Known for its loyalty and faithfulness, it can be found as a welcome guest in many households across the world.
2016-11-22 14:28:05 +08:00
</p>
</div>
</div>
</div>
<div
2017-03-17 18:56:30 +08:00
class="ant-collapse-item"
>
2016-11-22 14:28:05 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2016-11-22 14:28:05 +08:00
aria-expanded="false"
class="ant-collapse-header"
2018-05-04 18:15:28 +08:00
role="button"
tabindex="0"
2017-03-17 18:56:30 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 2
</span>
2016-11-22 14:28:05 +08:00
</div>
</div>
<div
2017-03-17 18:56:30 +08:00
class="ant-collapse-item"
>
2016-11-22 14:28:05 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2016-11-22 14:28:05 +08:00
aria-expanded="false"
class="ant-collapse-header"
2018-05-04 18:15:28 +08:00
role="button"
tabindex="0"
2017-03-17 18:56:30 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 3
</span>
2016-11-22 14:28:05 +08:00
</div>
</div>
</div>
`;
2022-11-09 12:28:04 +08:00
exports[`renders ./components/collapse/demo/collapsible.tsx correctly 1`] = `
2020-11-30 15:20:42 +08:00
<div
class="ant-space ant-space-vertical"
>
<div
class="ant-space-item"
2022-10-08 16:17:20 +08:00
style="margin-bottom:8px"
2020-11-30 15:20:42 +08:00
>
<div
2022-05-27 16:07:32 +08:00
class="ant-collapse ant-collapse-icon-position-start"
2020-11-30 15:20:42 +08:00
>
<div
class="ant-collapse-item ant-collapse-item-active"
>
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2020-11-30 15:20:42 +08:00
aria-expanded="true"
class="ant-collapse-header ant-collapse-header-collapsible-only"
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2020-11-30 15:20:42 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
2022-10-08 16:17:20 +08:00
style="-ms-transform:rotate(90deg);transform:rotate(90deg)"
2021-10-14 17:16:38 +08:00
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2020-11-30 15:20:42 +08:00
<span
class="ant-collapse-header-text"
>
This panel can only be collapsed by clicking text
</span>
</div>
<div
class="ant-collapse-content ant-collapse-content-active"
>
<div
class="ant-collapse-content-box"
>
<p>
A dog is a type of domesticated animal.
Known for its loyalty and faithfulness,
2022-09-20 19:32:18 +08:00
it can be found as a welcome guest in many households across the world.
</p>
</div>
</div>
</div>
</div>
</div>
<div
class="ant-space-item"
2022-10-11 14:54:30 +08:00
style="margin-bottom:8px"
2022-09-20 19:32:18 +08:00
>
<div
class="ant-collapse ant-collapse-icon-position-start"
>
<div
class="ant-collapse-item ant-collapse-item-active"
>
<div
aria-disabled="false"
aria-expanded="true"
class="ant-collapse-header ant-collapse-icon-collapsible-only"
>
<div
class="ant-collapse-expand-icon"
>
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
>
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
2022-10-11 14:54:30 +08:00
style="-ms-transform:rotate(90deg);transform:rotate(90deg)"
2022-09-20 19:32:18 +08:00
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
<span
class="ant-collapse-header-text"
>
This panel can only be collapsed by clicking icon
</span>
</div>
<div
class="ant-collapse-content ant-collapse-content-active"
>
<div
class="ant-collapse-content-box"
>
<p>
A dog is a type of domesticated animal.
Known for its loyalty and faithfulness,
2020-11-30 15:20:42 +08:00
it can be found as a welcome guest in many households across the world.
</p>
</div>
</div>
</div>
</div>
</div>
<div
class="ant-space-item"
>
<div
2022-05-27 16:07:32 +08:00
class="ant-collapse ant-collapse-icon-position-start"
2020-11-30 15:20:42 +08:00
>
<div
class="ant-collapse-item ant-collapse-item-disabled"
>
<div
2022-07-01 20:00:25 +08:00
aria-disabled="true"
2020-11-30 15:20:42 +08:00
aria-expanded="false"
class="ant-collapse-header"
role="button"
tabindex="-1"
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2020-11-30 15:20:42 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This panel can't be collapsed
</span>
2020-11-30 15:20:42 +08:00
</div>
</div>
</div>
</div>
</div>
`;
2022-11-09 12:28:04 +08:00
exports[`renders ./components/collapse/demo/custom.tsx correctly 1`] = `
2017-01-09 17:19:26 +08:00
<div
2022-05-27 16:07:32 +08:00
class="ant-collapse ant-collapse-icon-position-start ant-collapse-borderless site-collapse-custom-collapse"
2017-03-17 18:56:30 +08:00
>
2017-01-09 17:19:26 +08:00
<div
2019-12-26 15:15:46 +08:00
class="ant-collapse-item ant-collapse-item-active site-collapse-custom-panel"
2017-03-17 18:56:30 +08:00
>
2017-01-09 17:19:26 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2017-01-09 17:19:26 +08:00
aria-expanded="true"
class="ant-collapse-header"
2018-05-04 18:15:28 +08:00
role="button"
tabindex="0"
2017-03-17 18:56:30 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="caret-right"
class="anticon anticon-caret-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="caret-right"
fill="currentColor"
focusable="false"
height="1em"
2022-10-08 16:17:20 +08:00
style="-ms-transform:rotate(90deg);transform:rotate(90deg)"
2021-10-14 17:16:38 +08:00
viewBox="0 0 1024 1024"
width="1em"
>
<path
d="M715.8 493.5L335 165.1c-14.2-12.2-35-1.2-35 18.5v656.8c0 19.7 20.8 30.7 35 18.5l380.8-328.4c10.9-9.4 10.9-27.6 0-37z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 1
</span>
2017-01-09 17:19:26 +08:00
</div>
<div
class="ant-collapse-content ant-collapse-content-active"
2017-03-17 18:56:30 +08:00
>
2017-01-09 17:19:26 +08:00
<div
2017-03-17 18:56:30 +08:00
class="ant-collapse-content-box"
>
2017-01-09 17:19:26 +08:00
<p>
2017-10-09 13:32:11 +08:00
A dog is a type of domesticated animal.
Known for its loyalty and faithfulness,
it can be found as a welcome guest in many households across the world.
2017-01-09 17:19:26 +08:00
</p>
</div>
</div>
</div>
<div
2019-12-26 15:15:46 +08:00
class="ant-collapse-item site-collapse-custom-panel"
2017-03-17 18:56:30 +08:00
>
2017-01-09 17:19:26 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2017-01-09 17:19:26 +08:00
aria-expanded="false"
class="ant-collapse-header"
2018-05-04 18:15:28 +08:00
role="button"
tabindex="0"
2017-03-17 18:56:30 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="caret-right"
class="anticon anticon-caret-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="caret-right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="0 0 1024 1024"
width="1em"
>
<path
d="M715.8 493.5L335 165.1c-14.2-12.2-35-1.2-35 18.5v656.8c0 19.7 20.8 30.7 35 18.5l380.8-328.4c10.9-9.4 10.9-27.6 0-37z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 2
</span>
2017-01-09 17:19:26 +08:00
</div>
</div>
<div
2019-12-26 15:15:46 +08:00
class="ant-collapse-item site-collapse-custom-panel"
2017-03-17 18:56:30 +08:00
>
2017-01-09 17:19:26 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2017-01-09 17:19:26 +08:00
aria-expanded="false"
class="ant-collapse-header"
2018-05-04 18:15:28 +08:00
role="button"
tabindex="0"
2017-03-17 18:56:30 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="caret-right"
class="anticon anticon-caret-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="caret-right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="0 0 1024 1024"
width="1em"
>
<path
d="M715.8 493.5L335 165.1c-14.2-12.2-35-1.2-35 18.5v656.8c0 19.7 20.8 30.7 35 18.5l380.8-328.4c10.9-9.4 10.9-27.6 0-37z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 3
</span>
2017-01-09 17:19:26 +08:00
</div>
</div>
</div>
`;
2022-11-09 12:28:04 +08:00
exports[`renders ./components/collapse/demo/extra.tsx correctly 1`] = `
2020-07-10 09:04:45 +08:00
Array [
2019-03-04 19:14:25 +08:00
<div
2022-05-27 16:07:32 +08:00
class="ant-collapse ant-collapse-icon-position-start"
2019-03-04 19:14:25 +08:00
>
<div
2019-05-06 12:04:39 +08:00
class="ant-collapse-item ant-collapse-item-active"
2019-03-04 19:14:25 +08:00
>
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2019-05-06 12:04:39 +08:00
aria-expanded="true"
class="ant-collapse-header"
role="button"
tabindex="0"
2019-03-04 19:14:25 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2019-03-04 19:14:25 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
2022-10-08 16:17:20 +08:00
style="-ms-transform:rotate(90deg);transform:rotate(90deg)"
2021-10-14 17:16:38 +08:00
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 1
</span>
2019-05-06 12:04:39 +08:00
<div
class="ant-collapse-extra"
>
2019-08-13 14:07:17 +08:00
<span
aria-label="setting"
2019-05-06 12:04:39 +08:00
class="anticon anticon-setting"
2019-08-13 14:07:17 +08:00
role="img"
2019-05-06 12:04:39 +08:00
tabindex="-1"
>
<svg
aria-hidden="true"
data-icon="setting"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
2019-08-13 14:07:17 +08:00
d="M924.8 625.7l-65.5-56c3.1-19 4.7-38.4 4.7-57.8s-1.6-38.8-4.7-57.8l65.5-56a32.03 32.03 0 009.3-35.2l-.9-2.6a443.74 443.74 0 00-79.7-137.9l-1.8-2.1a32.12 32.12 0 00-35.1-9.5l-81.3 28.9c-30-24.6-63.5-44-99.7-57.6l-15.7-85a32.05 32.05 0 00-25.8-25.7l-2.7-.5c-52.1-9.4-106.9-9.4-159 0l-2.7.5a32.05 32.05 0 00-25.8 25.7l-15.8 85.4a351.86 351.86 0 00-99 57.4l-81.9-29.1a32 32 0 00-35.1 9.5l-1.8 2.1a446.02 446.02 0 00-79.7 137.9l-.9 2.6c-4.5 12.5-.8 26.5 9.3 35.2l66.3 56.6c-3.1 18.8-4.6 38-4.6 57.1 0 19.2 1.5 38.4 4.6 57.1L99 625.5a32.03 32.03 0 00-9.3 35.2l.9 2.6c18.1 50.4 44.9 96.9 79.7 137.9l1.8 2.1a32.12 32.12 0 0035.1 9.5l81.9-29.1c29.8 24.5 63.1 43.9 99 57.4l15.8 85.4a32.05 32.05 0 0025.8 25.7l2.7.5a449.4 449.4 0 00159 0l2.7-.5a32.05 32.05 0 0025.8-25.7l15.7-85a350 350 0 0099.7-57.6l81.3 28.9a32 32 0 0035.1-9.5l1.8-2.1c34.8-41.1 61.6-87.5 79.7-137.9l.9-2.6c4.5-12.3.8-26.3-9.3-35zM788.3 465.9c2.5 15.1 3.8 30.6 3.8 46.1s-1.3 31-3.8 46.1l-6.6 40.1 74.7 63.9a370.03 370.03 0 01-42.6 73.6L721 702.8l-31.4 25.8c-23.9 19.6-50.5 35-79.3 45.8l-38.1 14.3-17.9 97a377.5 377.5 0 01-85 0l-17.9-97.2-37.8-14.5c-28.5-10.8-55-26.2-78.7-45.7l-31.4-25.9-93.4 33.2c-17-22.9-31.2-47.6-42.6-73.6l75.5-64.5-6.5-40c-2.4-14.9-3.7-30.3-3.7-45.5 0-15.3 1.2-30.6 3.7-45.5l6.5-40-75.5-64.5c11.3-26.1 25.6-50.7 42.6-73.6l93.4 33.2 31.4-25.9c23.7-19.5 50.2-34.9 78.7-45.7l37.9-14.3 17.9-97.2c28.1-3.2 56.8-3.2 85 0l17.9 97 38.1 14.3c28.7 10.8 55.4 26.2 79.3 45.8l31.4 25.8 92.8-32.9c17 22.9 31.2 47.6 42.6 73.6L781.8 426l6.5 39.9zM512 326c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm79.2 255.2A111.6 111.6 0 01512 614c-29.9 0-58-11.7-79.2-32.8A111.6 111.6 0 01400 502c0-29.9 11.7-58 32.8-79.2C454 401.6 482.1 390 512 390c29.9 0 58 11.6 79.2 32.8A111.6 111.6 0 01624 502c0 29.9-11.7 58-32.8 79.2z"
2019-05-06 12:04:39 +08:00
/>
</svg>
2019-08-13 14:07:17 +08:00
</span>
2019-05-06 12:04:39 +08:00
</div>
2019-03-04 19:14:25 +08:00
</div>
<div
2019-05-06 12:04:39 +08:00
class="ant-collapse-content ant-collapse-content-active"
2019-03-04 19:14:25 +08:00
>
2019-05-06 12:04:39 +08:00
<div
class="ant-collapse-content-box"
>
<div>
2019-03-04 19:14:25 +08:00
A dog is a type of domesticated animal.
Known for its loyalty and faithfulness,
it can be found as a welcome guest in many households across the world.
2019-05-06 12:04:39 +08:00
</div>
2019-03-04 19:14:25 +08:00
</div>
</div>
</div>
<div
2019-05-06 12:04:39 +08:00
class="ant-collapse-item"
2019-03-04 19:14:25 +08:00
>
2019-05-06 12:04:39 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2019-05-06 12:04:39 +08:00
aria-expanded="false"
class="ant-collapse-header"
role="button"
tabindex="0"
2019-03-04 19:14:25 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2019-05-06 12:04:39 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 2
</span>
2019-05-06 12:04:39 +08:00
<div
class="ant-collapse-extra"
>
2019-08-13 14:07:17 +08:00
<span
aria-label="setting"
2019-05-06 12:04:39 +08:00
class="anticon anticon-setting"
2019-08-13 14:07:17 +08:00
role="img"
2019-05-06 12:04:39 +08:00
tabindex="-1"
>
<svg
aria-hidden="true"
data-icon="setting"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
2019-08-13 14:07:17 +08:00
d="M924.8 625.7l-65.5-56c3.1-19 4.7-38.4 4.7-57.8s-1.6-38.8-4.7-57.8l65.5-56a32.03 32.03 0 009.3-35.2l-.9-2.6a443.74 443.74 0 00-79.7-137.9l-1.8-2.1a32.12 32.12 0 00-35.1-9.5l-81.3 28.9c-30-24.6-63.5-44-99.7-57.6l-15.7-85a32.05 32.05 0 00-25.8-25.7l-2.7-.5c-52.1-9.4-106.9-9.4-159 0l-2.7.5a32.05 32.05 0 00-25.8 25.7l-15.8 85.4a351.86 351.86 0 00-99 57.4l-81.9-29.1a32 32 0 00-35.1 9.5l-1.8 2.1a446.02 446.02 0 00-79.7 137.9l-.9 2.6c-4.5 12.5-.8 26.5 9.3 35.2l66.3 56.6c-3.1 18.8-4.6 38-4.6 57.1 0 19.2 1.5 38.4 4.6 57.1L99 625.5a32.03 32.03 0 00-9.3 35.2l.9 2.6c18.1 50.4 44.9 96.9 79.7 137.9l1.8 2.1a32.12 32.12 0 0035.1 9.5l81.9-29.1c29.8 24.5 63.1 43.9 99 57.4l15.8 85.4a32.05 32.05 0 0025.8 25.7l2.7.5a449.4 449.4 0 00159 0l2.7-.5a32.05 32.05 0 0025.8-25.7l15.7-85a350 350 0 0099.7-57.6l81.3 28.9a32 32 0 0035.1-9.5l1.8-2.1c34.8-41.1 61.6-87.5 79.7-137.9l.9-2.6c4.5-12.3.8-26.3-9.3-35zM788.3 465.9c2.5 15.1 3.8 30.6 3.8 46.1s-1.3 31-3.8 46.1l-6.6 40.1 74.7 63.9a370.03 370.03 0 01-42.6 73.6L721 702.8l-31.4 25.8c-23.9 19.6-50.5 35-79.3 45.8l-38.1 14.3-17.9 97a377.5 377.5 0 01-85 0l-17.9-97.2-37.8-14.5c-28.5-10.8-55-26.2-78.7-45.7l-31.4-25.9-93.4 33.2c-17-22.9-31.2-47.6-42.6-73.6l75.5-64.5-6.5-40c-2.4-14.9-3.7-30.3-3.7-45.5 0-15.3 1.2-30.6 3.7-45.5l6.5-40-75.5-64.5c11.3-26.1 25.6-50.7 42.6-73.6l93.4 33.2 31.4-25.9c23.7-19.5 50.2-34.9 78.7-45.7l37.9-14.3 17.9-97.2c28.1-3.2 56.8-3.2 85 0l17.9 97 38.1 14.3c28.7 10.8 55.4 26.2 79.3 45.8l31.4 25.8 92.8-32.9c17 22.9 31.2 47.6 42.6 73.6L781.8 426l6.5 39.9zM512 326c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm79.2 255.2A111.6 111.6 0 01512 614c-29.9 0-58-11.7-79.2-32.8A111.6 111.6 0 01400 502c0-29.9 11.7-58 32.8-79.2C454 401.6 482.1 390 512 390c29.9 0 58 11.6 79.2 32.8A111.6 111.6 0 01624 502c0 29.9-11.7 58-32.8 79.2z"
2019-05-06 12:04:39 +08:00
/>
</svg>
2019-08-13 14:07:17 +08:00
</span>
2019-05-06 12:04:39 +08:00
</div>
</div>
</div>
<div
class="ant-collapse-item"
>
2019-03-04 19:14:25 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2019-05-06 12:04:39 +08:00
aria-expanded="false"
class="ant-collapse-header"
role="button"
tabindex="0"
2019-03-04 19:14:25 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2019-03-04 19:14:25 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 3
</span>
2019-05-06 12:04:39 +08:00
<div
class="ant-collapse-extra"
>
2019-08-13 14:07:17 +08:00
<span
aria-label="setting"
2019-05-06 12:04:39 +08:00
class="anticon anticon-setting"
2019-08-13 14:07:17 +08:00
role="img"
2019-05-06 12:04:39 +08:00
tabindex="-1"
>
<svg
aria-hidden="true"
data-icon="setting"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
2019-08-13 14:07:17 +08:00
d="M924.8 625.7l-65.5-56c3.1-19 4.7-38.4 4.7-57.8s-1.6-38.8-4.7-57.8l65.5-56a32.03 32.03 0 009.3-35.2l-.9-2.6a443.74 443.74 0 00-79.7-137.9l-1.8-2.1a32.12 32.12 0 00-35.1-9.5l-81.3 28.9c-30-24.6-63.5-44-99.7-57.6l-15.7-85a32.05 32.05 0 00-25.8-25.7l-2.7-.5c-52.1-9.4-106.9-9.4-159 0l-2.7.5a32.05 32.05 0 00-25.8 25.7l-15.8 85.4a351.86 351.86 0 00-99 57.4l-81.9-29.1a32 32 0 00-35.1 9.5l-1.8 2.1a446.02 446.02 0 00-79.7 137.9l-.9 2.6c-4.5 12.5-.8 26.5 9.3 35.2l66.3 56.6c-3.1 18.8-4.6 38-4.6 57.1 0 19.2 1.5 38.4 4.6 57.1L99 625.5a32.03 32.03 0 00-9.3 35.2l.9 2.6c18.1 50.4 44.9 96.9 79.7 137.9l1.8 2.1a32.12 32.12 0 0035.1 9.5l81.9-29.1c29.8 24.5 63.1 43.9 99 57.4l15.8 85.4a32.05 32.05 0 0025.8 25.7l2.7.5a449.4 449.4 0 00159 0l2.7-.5a32.05 32.05 0 0025.8-25.7l15.7-85a350 350 0 0099.7-57.6l81.3 28.9a32 32 0 0035.1-9.5l1.8-2.1c34.8-41.1 61.6-87.5 79.7-137.9l.9-2.6c4.5-12.3.8-26.3-9.3-35zM788.3 465.9c2.5 15.1 3.8 30.6 3.8 46.1s-1.3 31-3.8 46.1l-6.6 40.1 74.7 63.9a370.03 370.03 0 01-42.6 73.6L721 702.8l-31.4 25.8c-23.9 19.6-50.5 35-79.3 45.8l-38.1 14.3-17.9 97a377.5 377.5 0 01-85 0l-17.9-97.2-37.8-14.5c-28.5-10.8-55-26.2-78.7-45.7l-31.4-25.9-93.4 33.2c-17-22.9-31.2-47.6-42.6-73.6l75.5-64.5-6.5-40c-2.4-14.9-3.7-30.3-3.7-45.5 0-15.3 1.2-30.6 3.7-45.5l6.5-40-75.5-64.5c11.3-26.1 25.6-50.7 42.6-73.6l93.4 33.2 31.4-25.9c23.7-19.5 50.2-34.9 78.7-45.7l37.9-14.3 17.9-97.2c28.1-3.2 56.8-3.2 85 0l17.9 97 38.1 14.3c28.7 10.8 55.4 26.2 79.3 45.8l31.4 25.8 92.8-32.9c17 22.9 31.2 47.6 42.6 73.6L781.8 426l6.5 39.9zM512 326c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm79.2 255.2A111.6 111.6 0 01512 614c-29.9 0-58-11.7-79.2-32.8A111.6 111.6 0 01400 502c0-29.9 11.7-58 32.8-79.2C454 401.6 482.1 390 512 390c29.9 0 58 11.6 79.2 32.8A111.6 111.6 0 01624 502c0 29.9-11.7 58-32.8 79.2z"
2019-05-06 12:04:39 +08:00
/>
</svg>
2019-08-13 14:07:17 +08:00
</span>
2019-05-06 12:04:39 +08:00
</div>
2019-03-04 19:14:25 +08:00
</div>
</div>
2020-07-10 09:04:45 +08:00
</div>,
<br />,
2019-10-05 17:51:06 +08:00
<span>
2022-09-28 17:29:47 +08:00
Expand Icon Position:
2020-07-10 09:04:45 +08:00
</span>,
2019-03-04 19:14:25 +08:00
<div
2019-09-12 20:15:17 +08:00
class="ant-select ant-select-single ant-select-show-arrow"
2022-10-08 16:17:20 +08:00
style="margin:0 8px"
2019-03-04 19:14:25 +08:00
>
<div
2019-09-12 20:15:17 +08:00
class="ant-select-selector"
2019-03-04 19:14:25 +08:00
>
2019-09-12 20:15:17 +08:00
<span
class="ant-select-selection-search"
2019-03-04 19:14:25 +08:00
>
2019-09-12 20:15:17 +08:00
<input
2022-10-08 16:17:20 +08:00
aria-activedescendant="undefined_list_0"
2019-09-12 20:15:17 +08:00
aria-autocomplete="list"
2022-10-08 16:17:20 +08:00
aria-controls="undefined_list"
2019-09-12 20:15:17 +08:00
aria-haspopup="listbox"
2022-10-08 16:17:20 +08:00
aria-owns="undefined_list"
2019-09-12 20:15:17 +08:00
autocomplete="off"
class="ant-select-selection-search-input"
2019-12-25 11:29:54 +08:00
readonly=""
2019-09-12 20:15:17 +08:00
role="combobox"
2022-10-08 16:17:20 +08:00
style="opacity:0"
2020-09-05 00:38:39 +08:00
type="search"
2020-05-12 14:57:05 +08:00
unselectable="on"
2019-09-12 20:15:17 +08:00
value=""
/>
</span>
2019-05-06 12:04:39 +08:00
<span
2019-09-12 20:15:17 +08:00
class="ant-select-selection-item"
2022-05-27 16:07:32 +08:00
title="start"
2019-03-04 19:14:25 +08:00
>
2022-05-27 16:07:32 +08:00
start
2019-05-06 12:04:39 +08:00
</span>
2019-03-04 19:14:25 +08:00
</div>
2019-09-12 20:15:17 +08:00
<span
aria-hidden="true"
class="ant-select-arrow"
2022-10-08 16:17:20 +08:00
style="user-select:none;-webkit-user-select:none"
2019-09-12 20:15:17 +08:00
unselectable="on"
>
<span
aria-label="down"
2020-06-24 23:28:54 +08:00
class="anticon anticon-down ant-select-suffix"
2019-09-12 20:15:17 +08:00
role="img"
>
<svg
aria-hidden="true"
data-icon="down"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M884 256h-75c-5.1 0-9.9 2.5-12.9 6.6L512 654.2 227.9 262.6c-3-4.1-7.8-6.6-12.9-6.6h-75c-6.5 0-10.3 7.4-6.5 12.7l352.6 486.1c12.8 17.6 39 17.6 51.7 0l352.6-486.1c3.9-5.3.1-12.7-6.4-12.7z"
/>
</svg>
</span>
</span>
2020-07-10 09:04:45 +08:00
</div>,
]
2019-03-04 19:14:25 +08:00
`;
2022-11-09 12:28:04 +08:00
exports[`renders ./components/collapse/demo/ghost.tsx correctly 1`] = `
2020-06-28 22:41:59 +08:00
<div
2022-05-27 16:07:32 +08:00
class="ant-collapse ant-collapse-icon-position-start ant-collapse-ghost"
2020-06-28 22:41:59 +08:00
>
<div
class="ant-collapse-item ant-collapse-item-active"
>
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2020-06-28 22:41:59 +08:00
aria-expanded="true"
class="ant-collapse-header"
role="button"
tabindex="0"
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2020-06-28 22:41:59 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
2022-10-08 16:17:20 +08:00
style="-ms-transform:rotate(90deg);transform:rotate(90deg)"
2021-10-14 17:16:38 +08:00
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 1
</span>
2020-06-28 22:41:59 +08:00
</div>
<div
class="ant-collapse-content ant-collapse-content-active"
>
<div
class="ant-collapse-content-box"
>
<p>
A dog is a type of domesticated animal.
Known for its loyalty and faithfulness,
it can be found as a welcome guest in many households across the world.
</p>
</div>
</div>
</div>
<div
class="ant-collapse-item"
>
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2020-06-28 22:41:59 +08:00
aria-expanded="false"
class="ant-collapse-header"
role="button"
tabindex="0"
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2020-06-28 22:41:59 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 2
</span>
2020-06-28 22:41:59 +08:00
</div>
</div>
<div
class="ant-collapse-item"
>
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2020-06-28 22:41:59 +08:00
aria-expanded="false"
class="ant-collapse-header"
role="button"
tabindex="0"
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2020-06-28 22:41:59 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 3
</span>
2020-06-28 22:41:59 +08:00
</div>
</div>
</div>
`;
2022-11-09 12:28:04 +08:00
exports[`renders ./components/collapse/demo/mix.tsx correctly 1`] = `
2016-11-22 14:28:05 +08:00
<div
2022-05-27 16:07:32 +08:00
class="ant-collapse ant-collapse-icon-position-start"
2017-03-17 18:56:30 +08:00
>
2016-11-22 14:28:05 +08:00
<div
2017-03-17 18:56:30 +08:00
class="ant-collapse-item"
>
2016-11-22 14:28:05 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2016-11-22 14:28:05 +08:00
aria-expanded="false"
class="ant-collapse-header"
2018-05-04 18:15:28 +08:00
role="button"
tabindex="0"
2017-03-17 18:56:30 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 1
</span>
2016-11-22 14:28:05 +08:00
</div>
</div>
<div
2017-03-17 18:56:30 +08:00
class="ant-collapse-item"
>
2016-11-22 14:28:05 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2016-11-22 14:28:05 +08:00
aria-expanded="false"
class="ant-collapse-header"
2018-05-04 18:15:28 +08:00
role="button"
tabindex="0"
2017-03-17 18:56:30 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 2
</span>
2016-11-22 14:28:05 +08:00
</div>
</div>
<div
2017-03-17 18:56:30 +08:00
class="ant-collapse-item"
>
2016-11-22 14:28:05 +08:00
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2016-11-22 14:28:05 +08:00
aria-expanded="false"
class="ant-collapse-header"
2018-05-04 18:15:28 +08:00
role="button"
tabindex="0"
2017-03-17 18:56:30 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header 3
</span>
2016-11-22 14:28:05 +08:00
</div>
</div>
</div>
`;
2017-12-13 23:23:38 +08:00
2022-11-09 12:28:04 +08:00
exports[`renders ./components/collapse/demo/noarrow.tsx correctly 1`] = `
2017-12-13 23:23:38 +08:00
<div
2022-05-27 16:07:32 +08:00
class="ant-collapse ant-collapse-icon-position-start"
2017-12-13 23:23:38 +08:00
>
<div
class="ant-collapse-item ant-collapse-item-active"
>
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2017-12-13 23:23:38 +08:00
aria-expanded="true"
class="ant-collapse-header"
2018-05-04 18:15:28 +08:00
role="button"
tabindex="0"
2017-12-13 23:23:38 +08:00
>
2022-05-27 23:18:36 +08:00
<div
class="ant-collapse-expand-icon"
>
2021-10-14 17:16:38 +08:00
<span
aria-label="right"
class="anticon anticon-right ant-collapse-arrow"
role="img"
2018-09-02 19:53:29 +08:00
>
2021-10-14 17:16:38 +08:00
<svg
aria-hidden="true"
data-icon="right"
fill="currentColor"
focusable="false"
height="1em"
2022-10-08 16:17:20 +08:00
style="-ms-transform:rotate(90deg);transform:rotate(90deg)"
2021-10-14 17:16:38 +08:00
viewBox="64 64 896 896"
width="1em"
>
<path
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"
/>
</svg>
</span>
</div>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header with arrow icon
</span>
2017-12-13 23:23:38 +08:00
</div>
<div
class="ant-collapse-content ant-collapse-content-active"
>
<div
class="ant-collapse-content-box"
>
<p>
A dog is a type of domesticated animal.
Known for its loyalty and faithfulness,
it can be found as a welcome guest in many households across the world.
</p>
</div>
</div>
</div>
<div
class="ant-collapse-item ant-collapse-no-arrow"
>
<div
2022-07-01 20:00:25 +08:00
aria-disabled="false"
2017-12-13 23:23:38 +08:00
aria-expanded="false"
class="ant-collapse-header"
2018-05-04 18:15:28 +08:00
role="button"
tabindex="0"
2017-12-13 23:23:38 +08:00
>
2022-05-27 23:18:36 +08:00
<span
class="ant-collapse-header-text"
>
This is panel header with no arrow icon
</span>
2017-12-13 23:23:38 +08:00
</div>
</div>
</div>
`;