ant-design/components/table/__tests__/__snapshots__/Table.pagination.test.js.snap

161 lines
4.2 KiB
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
2016-12-07 20:59:20 +08:00
exports[`Table.pagination renders pagination correctly 1`] = `
<div
class="ant-table-wrapper"
>
2016-12-07 20:59:20 +08:00
<div
class="ant-spin-nested-loading"
>
2016-12-07 20:59:20 +08:00
<div
class="ant-spin-container"
>
2016-12-07 20:59:20 +08:00
<div
2018-06-27 18:57:04 +08:00
class="ant-table ant-table-default ant-table-scroll-position-left"
>
<div
class="ant-table-content"
>
2016-12-07 20:59:20 +08:00
<div
class="ant-table-body"
>
<table
class=""
>
<colgroup>
2017-10-10 16:06:49 +08:00
<col />
</colgroup>
<thead
class="ant-table-thead"
>
<tr>
<th
class=""
>
2018-10-10 15:12:06 +08:00
<div>
Name
2018-09-17 19:08:01 +08:00
</div>
</th>
</tr>
</thead>
<tbody
class="ant-table-tbody"
>
<tr
class="ant-table-row ant-table-row-level-0"
2018-08-13 14:46:55 +08:00
data-row-key="0"
>
<td
class=""
>
<span
class="ant-table-row-indent indent-level-0"
2017-09-20 16:26:18 +08:00
style="padding-left:0px"
2017-10-10 16:06:49 +08:00
/>
Jack
</td>
</tr>
<tr
class="ant-table-row ant-table-row-level-0"
2018-08-13 14:46:55 +08:00
data-row-key="1"
>
<td
class=""
>
<span
class="ant-table-row-indent indent-level-0"
2017-09-20 16:26:18 +08:00
style="padding-left:0px"
2017-10-10 16:06:49 +08:00
/>
Lucy
</td>
</tr>
</tbody>
</table>
2016-12-07 20:59:20 +08:00
</div>
</div>
2016-12-07 20:59:20 +08:00
</div>
<ul
class="ant-pagination my-page ant-table-pagination"
unselectable="unselectable"
>
<li
2017-05-17 11:11:01 +08:00
aria-disabled="true"
class="ant-pagination-disabled ant-pagination-prev"
title="Previous Page"
>
2017-08-30 14:24:47 +08:00
<a
class="ant-pagination-item-link"
2018-08-21 17:14:35 +08:00
>
<i
2019-01-10 18:46:57 +08:00
aria-label="icon: left"
2018-08-21 17:14:35 +08:00
class="anticon anticon-left"
2018-09-02 19:53:29 +08:00
>
<svg
aria-hidden="true"
class=""
data-icon="left"
fill="currentColor"
height="1em"
2018-09-06 20:55:23 +08:00
viewBox="64 64 896 896"
2018-09-02 19:53:29 +08:00
width="1em"
>
<path
2018-09-06 20:55:23 +08:00
d="M724 218.3V141c0-6.7-7.7-10.4-12.9-6.3L260.3 486.8a31.86 31.86 0 0 0 0 50.3l450.8 352.1c5.3 4.1 12.9.4 12.9-6.3v-77.3c0-4.9-2.3-9.6-6.1-12.6l-360-281 360-281.1c3.8-3 6.1-7.7 6.1-12.6z"
2018-09-02 19:53:29 +08:00
/>
</svg>
</i>
2018-08-21 17:14:35 +08:00
</a>
</li>
<li
class="ant-pagination-item ant-pagination-item-1 ant-pagination-item-active"
2017-06-01 10:44:00 +08:00
tabindex="0"
title="1"
>
<a>
1
</a>
</li>
<li
class="ant-pagination-item ant-pagination-item-2"
2017-06-01 10:44:00 +08:00
tabindex="0"
title="2"
>
<a>
2
</a>
</li>
<li
2017-05-17 11:11:01 +08:00
aria-disabled="false"
class=" ant-pagination-next"
2017-06-01 10:44:00 +08:00
tabindex="0"
title="Next Page"
>
2017-08-30 14:24:47 +08:00
<a
class="ant-pagination-item-link"
2018-08-21 17:14:35 +08:00
>
<i
2019-01-10 18:46:57 +08:00
aria-label="icon: right"
2018-08-21 17:14:35 +08:00
class="anticon anticon-right"
2018-09-02 19:53:29 +08:00
>
<svg
aria-hidden="true"
class=""
data-icon="right"
fill="currentColor"
height="1em"
2018-09-06 20:55:23 +08:00
viewBox="64 64 896 896"
2018-09-02 19:53:29 +08:00
width="1em"
>
<path
2018-09-06 20:55:23 +08:00
d="M765.7 486.8L314.9 134.7A7.97 7.97 0 0 0 302 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 0 0 0-50.4z"
2018-09-02 19:53:29 +08:00
/>
</svg>
</i>
2018-08-21 17:14:35 +08:00
</a>
</li>
</ul>
2016-12-07 20:59:20 +08:00
</div>
</div>
</div>
`;