@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mozaic-ds/vue",
3
- "version": "0.42.0-beta.1",
3
+ "version": "0.42.0-beta.3",
4
4
  "description": "Vue.js implementation of Mozaic Design System",
5
5
  "author": "Adeo - Mozaic Design System",
6
6
  "scripts": {
@@ -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,