Skip to content

Commit

Permalink
built files
Browse files Browse the repository at this point in the history
  • Loading branch information
xaksis committed May 18, 2020
1 parent 3eda70e commit 32ec3b5
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 22 deletions.
2 changes: 1 addition & 1 deletion dist/vue-good-table.cjs.css

Large diffs are not rendered by default.

18 changes: 13 additions & 5 deletions dist/vue-good-table.cjs.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* vue-good-table v2.19.2
* vue-good-table v2.19.3
* (c) 2018-present xaksis <[email protected]>
* https://github.com/xaksis/vue-good-table
* Released under the MIT License.
Expand Down Expand Up @@ -7682,6 +7682,13 @@ var script$1 = {
},
customRowsPerPageDropdown: function customRowsPerPageDropdown() {
this.handlePerPage();
},
total: {
handler: function handler(newValue, oldValue) {
if (this.rowsPerPageOptions.indexOf(this.currentPerPage) === -1) {
this.currentPerPage = newValue;
}
}
}
},
computed: {
Expand Down Expand Up @@ -13928,16 +13935,17 @@ var script$6 = {

if (this.mode === 'remote') {
return this.processedRows;
} // for every group, extract the child rows
// to cater to paging
//* flatten the rows for paging.
} //* flatten the rows for paging.


var paginatedRows = [];
lodash_foreach(this.processedRows, function (childRows) {
var _paginatedRows;

paginatedRows.push(childRows);
//* only add headers when group options are enabled.
if (_this2.groupOptions.enabled) {
paginatedRows.push(childRows);
}

(_paginatedRows = paginatedRows).push.apply(_paginatedRows, _toConsumableArray(childRows.children));
});
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-good-table.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vue-good-table.esm.css

Large diffs are not rendered by default.

18 changes: 13 additions & 5 deletions dist/vue-good-table.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* vue-good-table v2.19.2
* vue-good-table v2.19.3
* (c) 2018-present xaksis <[email protected]>
* https://github.com/xaksis/vue-good-table
* Released under the MIT License.
Expand Down Expand Up @@ -7678,6 +7678,13 @@ var script$1 = {
},
customRowsPerPageDropdown: function customRowsPerPageDropdown() {
this.handlePerPage();
},
total: {
handler: function handler(newValue, oldValue) {
if (this.rowsPerPageOptions.indexOf(this.currentPerPage) === -1) {
this.currentPerPage = newValue;
}
}
}
},
computed: {
Expand Down Expand Up @@ -13924,16 +13931,17 @@ var script$6 = {

if (this.mode === 'remote') {
return this.processedRows;
} // for every group, extract the child rows
// to cater to paging
//* flatten the rows for paging.
} //* flatten the rows for paging.


var paginatedRows = [];
lodash_foreach(this.processedRows, function (childRows) {
var _paginatedRows;

paginatedRows.push(childRows);
//* only add headers when group options are enabled.
if (_this2.groupOptions.enabled) {
paginatedRows.push(childRows);
}

(_paginatedRows = paginatedRows).push.apply(_paginatedRows, _toConsumableArray(childRows.children));
});
Expand Down
18 changes: 13 additions & 5 deletions dist/vue-good-table.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* vue-good-table v2.19.2
* vue-good-table v2.19.3
* (c) 2018-present xaksis <[email protected]>
* https://github.com/xaksis/vue-good-table
* Released under the MIT License.
Expand Down Expand Up @@ -7684,6 +7684,13 @@
},
customRowsPerPageDropdown: function customRowsPerPageDropdown() {
this.handlePerPage();
},
total: {
handler: function handler(newValue, oldValue) {
if (this.rowsPerPageOptions.indexOf(this.currentPerPage) === -1) {
this.currentPerPage = newValue;
}
}
}
},
computed: {
Expand Down Expand Up @@ -13930,16 +13937,17 @@

if (this.mode === 'remote') {
return this.processedRows;
} // for every group, extract the child rows
// to cater to paging
//* flatten the rows for paging.
} //* flatten the rows for paging.


var paginatedRows = [];
lodash_foreach(this.processedRows, function (childRows) {
var _paginatedRows;

paginatedRows.push(childRows);
//* only add headers when group options are enabled.
if (_this2.groupOptions.enabled) {
paginatedRows.push(childRows);
}

(_paginatedRows = paginatedRows).push.apply(_paginatedRows, _toConsumableArray(childRows.children));
});
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-good-table.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/vue-good-table.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vue-good-table.min.js.map

Large diffs are not rendered by default.

0 comments on commit 32ec3b5

Please sign in to comment.