plugin-ui-for-kzt 0.0.49 → 0.0.50
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/components/BaseCalendar/BaseCalendar.vue.d.ts +1 -1
- package/dist/components/BaseCheckbox/BaseCheckbox.vue.d.ts +2 -2
- package/dist/components/BaseDropdown/BaseDropdown.vue.d.ts +1 -1
- package/dist/components/BaseInput/BaseInput.vue.d.ts +2 -2
- package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +4 -4
- package/dist/components/BaseInputCurrency/BaseInputCurrency.vue.d.ts +3 -3
- package/dist/components/BaseInputEmail/BaseInputEmail.vue.d.ts +2 -2
- package/dist/components/BaseInputPhone/BaseInputPhone.vue.d.ts +2 -2
- package/dist/components/BaseRadio/BaseRadio.vue.d.ts +2 -2
- package/dist/components/BaseSelect/BaseSelect.vue.d.ts +1 -1
- package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +2 -2
- package/dist/components/BaseToggle/BaseToggle.vue.d.ts +2 -2
- package/dist/components/BaseTooltip/BaseTooltip.vue.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/components/BaseTable/BaseTable.vue +4 -0
package/package.json
CHANGED
|
@@ -305,6 +305,10 @@ const paginatedData = computed(() => {
|
|
|
305
305
|
if (!props.pagination) {
|
|
306
306
|
return props.data
|
|
307
307
|
}
|
|
308
|
+
|
|
309
|
+
if (props.pagination.totalItems === 'number') {
|
|
310
|
+
return props.data
|
|
311
|
+
}
|
|
308
312
|
|
|
309
313
|
const perPageValue = Number(perPage.value) || 10
|
|
310
314
|
const start = (currentPage.value - 1) * perPageValue
|