123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`Paginations.vue renders correctly 1`] = `
- <div>
- <ccard-stub>
- <ccardheader-stub>
- <cicon-stub
- name="cil-justify-center"
- />
-
- <strong>
- Pagination
- </strong>
-
- <small>
- size
- </small>
-
- <div
- class="card-header-actions"
- >
- <a
- class="card-header-action"
- href="https://coreui.io/vue/docs/components/pagination"
- rel="noreferrer noopener"
- target="_blank"
- >
- <small
- class="text-muted"
- >
- docs
- </small>
- </a>
- </div>
- </ccardheader-stub>
-
- <ccardbody-stub>
- <h6>
- Default
- </h6>
-
- <cpagination-stub
- activepage="3"
- align="start"
- arrows="true"
- dots="true"
- doublearrows="true"
- limit="5"
- pages="10"
- />
-
- <br />
-
- <h6>
- Small
- </h6>
-
- <cpagination-stub
- activepage="3"
- align="start"
- arrows="true"
- dots="true"
- doublearrows="true"
- limit="5"
- pages="10"
- size="sm"
- />
-
- <br />
-
- <div
- class="d-md-down-none"
- >
- <h6>
- Large
- </h6>
-
- <cpagination-stub
- activepage="3"
- align="start"
- arrows="true"
- dots="true"
- doublearrows="true"
- limit="5"
- pages="10"
- size="lg"
- />
-
- <br />
- </div>
-
- <div>
- currentPage: 3
- </div>
- </ccardbody-stub>
- </ccard-stub>
-
- <ccard-stub>
- <ccardheader-stub>
- <cicon-stub
- name="cil-justify-center"
- />
-
- <strong>
- Pagination
- </strong>
-
- <small>
- alignment
- </small>
- </ccardheader-stub>
-
- <ccardbody-stub>
- <h6>
- Left alignment (default)
- </h6>
-
- <cpagination-stub
- activepage="3"
- align="start"
- arrows="true"
- dots="true"
- doublearrows="true"
- limit="5"
- pages="10"
- />
-
- <br />
-
- <h6>
- Center alignment
- </h6>
-
- <cpagination-stub
- activepage="3"
- align="center"
- arrows="true"
- dots="true"
- doublearrows="true"
- limit="5"
- pages="10"
- />
-
- <br />
-
- <h6>
- Right (end) alignment
- </h6>
-
- <cpagination-stub
- activepage="3"
- align="end"
- arrows="true"
- dots="true"
- doublearrows="true"
- limit="5"
- pages="10"
- />
-
- <br />
-
- <div>
- currentPage: 3
- </div>
- </ccardbody-stub>
- </ccard-stub>
- </div>
- `;
|