Skip to content

Commit

Permalink
chore: add new build
Browse files Browse the repository at this point in the history
  • Loading branch information
Seungwoo321 committed Jan 3, 2022
1 parent da87fa7 commit 090dd85
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
12 changes: 7 additions & 5 deletions dist/vue-pivottable.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -227351,7 +227351,9 @@ utils_PivotData.defaultProps = {
},
locales: {
type: Object,
default: locales
default: function _default() {
return locales;
}
},
rowTotal: {
type: Boolean,
Expand Down Expand Up @@ -227709,14 +227711,14 @@ function makeRenderer() {
attrs: {
key: "pvtVal".concat(i, "-").concat(j)
},
on: getClickHandler ? {
on: _this.tableOptions.clickCallback ? {
click: getClickHandler(aggregator.value(), rowKey, colKey)
} : {}
}, aggregator.format(aggregator.value()));
}), _this.rowTotal ? h('td', {
staticClass: ['pvtTotal'],
style: colTotalColors(totalAggregator.value()),
on: getClickHandler ? {
on: _this.tableOptions.clickCallback ? {
click: getClickHandler(totalAggregator.value(), rowKey, [])
} : {}
}, totalAggregator.format(totalAggregator.value())) : undefined]);
Expand All @@ -227733,13 +227735,13 @@ function makeRenderer() {
attrs: {
key: "total".concat(i)
},
on: getClickHandler ? {
on: _this.tableOptions.clickCallback ? {
click: getClickHandler(totalAggregator.value(), [], colKey)
} : {}
}, totalAggregator.format(totalAggregator.value()));
}) : undefined, this.colTotal && this.rowTotal ? h('td', {
staticClass: ['pvtGrandTotal'],
on: getClickHandler ? {
on: this.tableOptions.clickCallback ? {
click: getClickHandler(grandTotalAggregator.value(), [], [])
} : {}
}, grandTotalAggregator.format(grandTotalAggregator.value())) : undefined])])]);
Expand Down
12 changes: 7 additions & 5 deletions dist/vue-pivottable.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -227360,7 +227360,9 @@ utils_PivotData.defaultProps = {
},
locales: {
type: Object,
default: locales
default: function _default() {
return locales;
}
},
rowTotal: {
type: Boolean,
Expand Down Expand Up @@ -227718,14 +227720,14 @@ function makeRenderer() {
attrs: {
key: "pvtVal".concat(i, "-").concat(j)
},
on: getClickHandler ? {
on: _this.tableOptions.clickCallback ? {
click: getClickHandler(aggregator.value(), rowKey, colKey)
} : {}
}, aggregator.format(aggregator.value()));
}), _this.rowTotal ? h('td', {
staticClass: ['pvtTotal'],
style: colTotalColors(totalAggregator.value()),
on: getClickHandler ? {
on: _this.tableOptions.clickCallback ? {
click: getClickHandler(totalAggregator.value(), rowKey, [])
} : {}
}, totalAggregator.format(totalAggregator.value())) : undefined]);
Expand All @@ -227742,13 +227744,13 @@ function makeRenderer() {
attrs: {
key: "total".concat(i)
},
on: getClickHandler ? {
on: _this.tableOptions.clickCallback ? {
click: getClickHandler(totalAggregator.value(), [], colKey)
} : {}
}, totalAggregator.format(totalAggregator.value()));
}) : undefined, this.colTotal && this.rowTotal ? h('td', {
staticClass: ['pvtGrandTotal'],
on: getClickHandler ? {
on: this.tableOptions.clickCallback ? {
click: getClickHandler(grandTotalAggregator.value(), [], [])
} : {}
}, grandTotalAggregator.format(grandTotalAggregator.value())) : undefined])])]);
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-pivottable.umd.min.js

Large diffs are not rendered by default.

0 comments on commit 090dd85

Please sign in to comment.