quasar-ui-sellmate-ui-kit 3.14.32 → 3.14.34
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/dist/index.common.js +2 -2
- package/dist/index.css +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.min.css +1 -1
- package/dist/index.rtl.css +1 -1
- package/dist/index.rtl.min.css +1 -1
- package/dist/index.umd.js +94 -90
- package/dist/index.umd.min.js +2 -2
- package/package.json +1 -1
- package/src/components/SDatePicker.vue +0 -1
- package/src/components/STable.vue +11 -2
package/package.json
CHANGED
|
@@ -77,7 +77,10 @@
|
|
|
77
77
|
</template>
|
|
78
78
|
</q-table>
|
|
79
79
|
<div
|
|
80
|
-
v-if="
|
|
80
|
+
v-if="
|
|
81
|
+
paginationModel.rowsPerPage !== 0 &&
|
|
82
|
+
((!hideBottom && pagesNumber > 1) || showBottom || usePerPageSelect)
|
|
83
|
+
"
|
|
81
84
|
class="bg-grey_05 s-border-radius-sm s-border-top-none s-border-grey_30 s-pagination-wrapper relative-position"
|
|
82
85
|
>
|
|
83
86
|
<s-pagination
|
|
@@ -91,7 +94,8 @@
|
|
|
91
94
|
v-model="paginationModel.rowsPerPage"
|
|
92
95
|
emit-value
|
|
93
96
|
map-options
|
|
94
|
-
class="absolute
|
|
97
|
+
class="absolute rows-per-page"
|
|
98
|
+
:class="rowsPerPageClass"
|
|
95
99
|
@update:model-value="updateRowsPerPage"
|
|
96
100
|
/>
|
|
97
101
|
</div>
|
|
@@ -191,6 +195,10 @@
|
|
|
191
195
|
{ label: '200개씩 보기', value: 200 },
|
|
192
196
|
],
|
|
193
197
|
},
|
|
198
|
+
rowsPerPageClass: {
|
|
199
|
+
type: String,
|
|
200
|
+
default: '',
|
|
201
|
+
},
|
|
194
202
|
},
|
|
195
203
|
setup(props, { emit, attrs }) {
|
|
196
204
|
const tablePagination = ref(props.pagination);
|
|
@@ -608,6 +616,7 @@
|
|
|
608
616
|
}
|
|
609
617
|
}
|
|
610
618
|
.rows-per-page {
|
|
619
|
+
width: 128px;
|
|
611
620
|
right: 20px;
|
|
612
621
|
top: 50%;
|
|
613
622
|
transform: translateY(-50%);
|