Skip to content

Commit

Permalink
chore: update v0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Seungwoo321 committed Oct 22, 2022
1 parent 97a4f4f commit 79bf615
Show file tree
Hide file tree
Showing 5 changed files with 385 additions and 301 deletions.
129 changes: 84 additions & 45 deletions dist/vue-pivottable.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -226843,6 +226843,32 @@ var aggregators = function (tpl) {
'Count as Fraction of Rows': tpl.fractionOf(tpl.count(), 'row', usFmtPct),
'Count as Fraction of Columns': tpl.fractionOf(tpl.count(), 'col', usFmtPct)
};
}(aggregatorTemplates); // fr aggregators


var frAggregators = function (tpl) {
return {
Compte: tpl.count(usFmtInt),
'Compter les valeurs uniques': tpl.countUnique(usFmtInt),
'Liste des valeurs uniques': tpl.listUnique(', '),
Somme: tpl.sum(usFmt),
'Somme de nombres entiers': tpl.sum(usFmtInt),
Moyenne: tpl.average(usFmt),
Médiane: tpl.median(usFmt),
"Variance de l'échantillon": tpl.var(1, usFmt),
"Écart-type de l'échantillon": tpl.stdev(1, usFmt),
Minimum: tpl.min(usFmt),
Maximum: tpl.max(usFmt),
Premier: tpl.first(usFmt),
Dernier: tpl.last(usFmt),
'Somme Total': tpl.sumOverSum(usFmt),
'Somme en fraction du total': tpl.fractionOf(tpl.sum(), 'total', usFmtPct),
'Somme en tant que fraction de lignes': tpl.fractionOf(tpl.sum(), 'row', usFmtPct),
'Somme en tant que fraction de colonnes': tpl.fractionOf(tpl.sum(), 'col', usFmtPct),
'Comptage en tant que fraction du total': tpl.fractionOf(tpl.count(), 'total', usFmtPct),
'Comptage en tant que fraction de lignes': tpl.fractionOf(tpl.count(), 'row', usFmtPct),
'Comptage en tant que fraction de colonnes': tpl.fractionOf(tpl.count(), 'col', usFmtPct)
};
}(aggregatorTemplates);

var locales = {
Expand All @@ -226860,6 +226886,23 @@ var locales = {
vs: 'vs',
by: 'by'
}
},
fr: {
frAggregators: frAggregators,
localeStrings: {
renderError: 'Une erreur est survenue en dessinant le tableau croisé.',
computeError: 'Une erreur est survenue en calculant le tableau croisé.',
uiRenderError: "Une erreur est survenue en dessinant l'interface du tableau croisé dynamique.",
selectAll: 'Sélectionner tout',
selectNone: 'Ne rien sélectionner',
tooMany: '(trop de valeurs à afficher)',
filterResults: 'Filtrer les valeurs',
totals: 'Totaux',
vs: 'sur',
by: 'par',
apply: 'Appliquer',
cancel: 'Annuler'
}
}
}; // dateFormat deriver l10n requires month and day names to be passed in directly

Expand Down Expand Up @@ -227808,22 +227851,6 @@ var TSVExportRenderer = {
// EXTERNAL MODULE: ./node_modules/core-js/modules/es6.array.fill.js
var es6_array_fill = __webpack_require__("6c7b");

// CONCATENATED MODULE: ./node_modules/@babel/runtime-corejs2/helpers/esm/defineProperty.js

function _defineProperty(obj, key, value) {
if (key in obj) {
define_property_default()(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}

return obj;
}
// CONCATENATED MODULE: ./src/DraggableAttribute.js


Expand Down Expand Up @@ -228112,7 +228139,7 @@ function _defineProperty(obj, key, value) {
event: 'input'
},
created: function created() {
this.$emit('input', this.values[0]);
this.$emit('input', this.value || this.values[0]);
},
methods: {
handleChange: function handleChange(e) {
Expand Down Expand Up @@ -228433,7 +228460,6 @@ var vuedraggable_umd_default = /*#__PURE__*/__webpack_require__.n(vuedraggable_u




/* harmony default export */ var PivottableUi = ({
name: 'vue-pivottable-ui',
mixins: [common],
Expand Down Expand Up @@ -228567,6 +228593,16 @@ var vuedraggable_umd_default = /*#__PURE__*/__webpack_require__.n(vuedraggable_u
this.materializeInput(nextProps.data);
},
watch: {
rowOrder: {
handler: function handler(value) {
this.propsData.rowOrder = value;
}
},
colOrder: {
handler: function handler(value) {
this.propsData.colOrder = value;
}
},
cols: {
handler: function handler(value) {
this.propsData.cols = value;
Expand Down Expand Up @@ -228756,34 +228792,37 @@ var vuedraggable_umd_default = /*#__PURE__*/__webpack_require__.n(vuedraggable_u
sort: onChange.bind(this)
}
}, [items.map(function (x) {
var _h;

return h(DraggableAttribute, (_h = {}, _defineProperty(_h, scopedSlots ? 'scopedSlots' : undefined, {
pvtAttr: function pvtAttr(props) {
return h('slot', scopedSlots(props));
}
}), _defineProperty(_h, "props", {
sortable: _this6.sortonlyFromDragDrop.includes(x) || !_this6.disabledFromDragDrop.includes(x),
draggable: !_this6.sortonlyFromDragDrop.includes(x) && !_this6.disabledFromDragDrop.includes(x),
name: x,
key: x,
attrValues: _this6.attrValues[x],
sorter: getSort(_this6.sorters, x),
menuLimit: _this6.menuLimit,
zIndex: _this6.zIndices[x] || _this6.maxZIndex,
valueFilter: _this6.propsData.valueFilter[x],
open: _this6.openStatus[x],
async: _this6.async,
unused: _this6.unusedAttrs.includes(x),
localeStrings: _this6.locales[_this6.locale].localeStrings
}), _defineProperty(_h, "domProps", {}), _defineProperty(_h, "on", {
'update:filter': _this6.updateValueFilter,
'moveToTop:filterbox': _this6.moveFilterBoxToTop,
'open:filterbox': _this6.openFilterBox,
'no:filterbox': function noFilterbox() {
return _this6.$emit('no:filterbox');
return h(DraggableAttribute, {
scopedSlots: scopedSlots ? {
pvtAttr: function pvtAttr(props) {
return h('slot', scopedSlots(props));
}
} : undefined,
props: {
sortable: _this6.sortonlyFromDragDrop.includes(x) || !_this6.disabledFromDragDrop.includes(x),
draggable: !_this6.sortonlyFromDragDrop.includes(x) && !_this6.disabledFromDragDrop.includes(x),
name: x,
key: x,
attrValues: _this6.attrValues[x],
sorter: getSort(_this6.sorters, x),
menuLimit: _this6.menuLimit,
zIndex: _this6.zIndices[x] || _this6.maxZIndex,
valueFilter: _this6.propsData.valueFilter[x],
open: _this6.openStatus[x],
async: _this6.async,
unused: _this6.unusedAttrs.includes(x),
localeStrings: _this6.locales[_this6.locale].localeStrings
},
domProps: {},
on: {
'update:filter': _this6.updateValueFilter,
'moveToTop:filterbox': _this6.moveFilterBoxToTop,
'open:filterbox': _this6.openFilterBox,
'no:filterbox': function noFilterbox() {
return _this6.$emit('no:filterbox');
}
}
}), _h));
});
})]);
},
rendererCell: function rendererCell(rendererName, h) {
Expand Down
Loading

0 comments on commit 79bf615

Please sign in to comment.