@dataloop-ai/components 0.16.50 → 0.16.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/demos/DlPaginationDemo.vue +90 -16
package/package.json
CHANGED
|
@@ -1,34 +1,108 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div style="
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
2
|
+
<div style="align-items: stretch">
|
|
3
|
+
<div class="row">
|
|
4
|
+
<dl-input
|
|
5
|
+
v-model="rowsPerPage"
|
|
6
|
+
title="rowsPerPage"
|
|
7
|
+
/>
|
|
8
|
+
<dl-input
|
|
9
|
+
v-model="total"
|
|
10
|
+
title="total items"
|
|
11
|
+
/>
|
|
12
|
+
<dl-input
|
|
13
|
+
v-model="max"
|
|
14
|
+
title="max"
|
|
15
|
+
/>
|
|
16
|
+
<dl-input
|
|
17
|
+
v-model="maxPages"
|
|
18
|
+
title="maxPages"
|
|
19
|
+
/>
|
|
20
|
+
<dl-input
|
|
21
|
+
v-model="itemsName"
|
|
22
|
+
title="itemsName"
|
|
23
|
+
/>
|
|
24
|
+
</div>
|
|
25
|
+
<div class="row">
|
|
26
|
+
<dl-checkbox
|
|
27
|
+
v-model="boundaryNumbers"
|
|
28
|
+
label="boundaryNumbers"
|
|
29
|
+
/>
|
|
30
|
+
<dl-checkbox
|
|
31
|
+
v-model="boundaryLinks"
|
|
32
|
+
label="boundaryLinks"
|
|
33
|
+
/>
|
|
34
|
+
<dl-checkbox
|
|
35
|
+
v-model="directionLinks"
|
|
36
|
+
label="directionLinks"
|
|
37
|
+
/>
|
|
38
|
+
<dl-checkbox
|
|
39
|
+
v-model="disabled"
|
|
40
|
+
label="disabled"
|
|
41
|
+
/>
|
|
42
|
+
<dl-checkbox
|
|
43
|
+
v-model="withLegend"
|
|
44
|
+
label="withLegend"
|
|
45
|
+
/>
|
|
46
|
+
<dl-checkbox
|
|
47
|
+
v-model="withQuickNavigation"
|
|
48
|
+
label="withQuickNavigation"
|
|
49
|
+
/>
|
|
50
|
+
<dl-checkbox
|
|
51
|
+
v-model="withRowsPerPage"
|
|
52
|
+
label="withRowsPerPage"
|
|
53
|
+
/>
|
|
54
|
+
</div>
|
|
55
|
+
<div style="width: 700px">
|
|
56
|
+
<dl-pagination
|
|
57
|
+
v-model="page"
|
|
58
|
+
:max="max"
|
|
59
|
+
:rows-per-page="rowsPerPage"
|
|
60
|
+
:boundary-numbers="boundaryNumbers"
|
|
61
|
+
:boundary-links="boundaryLinks"
|
|
62
|
+
:direction-links="directionLinks"
|
|
63
|
+
:max-pages="maxPages"
|
|
64
|
+
:disabled="disabled"
|
|
65
|
+
:with-legend="withLegend"
|
|
66
|
+
:total-items="total"
|
|
67
|
+
:items-name="itemsName"
|
|
68
|
+
:with-quick-navigation="withQuickNavigation"
|
|
69
|
+
:with-rows-per-page="withRowsPerPage"
|
|
70
|
+
/>
|
|
71
|
+
</div>
|
|
72
|
+
<div>
|
|
73
|
+
<h4>case 1</h4>
|
|
74
|
+
<p>with exactly 30 items, 15 per row. should be exactly 2 pages</p>
|
|
75
|
+
<dl-pagination
|
|
76
|
+
v-model="page"
|
|
77
|
+
:total-items="30"
|
|
78
|
+
:rows-per-page="15"
|
|
79
|
+
/>
|
|
80
|
+
<h4>case 2</h4>
|
|
81
|
+
<p>with 31 items, 15 per row. should be exactly 3 pages</p>
|
|
82
|
+
<dl-pagination
|
|
83
|
+
v-model="page"
|
|
84
|
+
:total-items="31"
|
|
85
|
+
:rows-per-page="15"
|
|
86
|
+
/>
|
|
87
|
+
</div>
|
|
17
88
|
</div>
|
|
18
89
|
</template>
|
|
19
90
|
|
|
20
91
|
<script lang="ts">
|
|
21
92
|
import { defineComponent } from 'vue-demi'
|
|
22
93
|
import { DlPagination } from '../components'
|
|
94
|
+
import DlInput from '../components/compound/DlInput/DlInput.vue'
|
|
95
|
+
import DlCheckbox from '../components/essential/DlCheckbox/DlCheckbox.vue'
|
|
23
96
|
|
|
24
97
|
export default defineComponent({
|
|
25
98
|
name: 'DlPaginationDemo',
|
|
26
|
-
components: { DlPagination },
|
|
99
|
+
components: { DlCheckbox, DlInput, DlPagination },
|
|
27
100
|
data() {
|
|
28
101
|
return {
|
|
29
102
|
page: 18,
|
|
30
103
|
max: 119,
|
|
31
104
|
maxPages: 6,
|
|
105
|
+
rowsPerPage: 10,
|
|
32
106
|
boundaryNumbers: true,
|
|
33
107
|
boundaryLinks: true,
|
|
34
108
|
directionLinks: true,
|