@mozaic-ds/vue 0.42.0-beta.1 → 0.42.0-beta.3
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/mozaic-vue.adeo.umd.js +10 -9
- package/dist/mozaic-vue.adeo.umd.js.map +1 -1
- package/dist/mozaic-vue.common.js +10 -9
- package/dist/mozaic-vue.common.js.map +1 -1
- package/dist/mozaic-vue.umd.js +10 -9
- package/dist/mozaic-vue.umd.js.map +1 -1
- package/dist/mozaic-vue.umd.min.js +1 -1
- package/dist/mozaic-vue.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/datatable/MDataTable.vue +2 -0
package/package.json
CHANGED
|
@@ -237,6 +237,7 @@ const Pager = {
|
|
|
237
237
|
|
|
238
238
|
const Paging = {
|
|
239
239
|
defaultOptions: {
|
|
240
|
+
totalPage: null,
|
|
240
241
|
enabled: false,
|
|
241
242
|
text: 'sur',
|
|
242
243
|
index: 1,
|
|
@@ -449,6 +450,7 @@ export default {
|
|
|
449
450
|
getTotalStringCurrentCount() {
|
|
450
451
|
const { skip, take } = buildOptions(
|
|
451
452
|
this.pagingOptions.enabled,
|
|
453
|
+
this.pagingOptions.totalPage,
|
|
452
454
|
this.getPageValue,
|
|
453
455
|
this.getPagingIndex,
|
|
454
456
|
this.getPagingSize,
|