dtable-statistic 5.0.42-alpha.7 → 5.0.42-alpha.9
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.
|
@@ -113,6 +113,7 @@ const exportOneDimensionToTable = _ref => {
|
|
|
113
113
|
|
|
114
114
|
// count column
|
|
115
115
|
if (summaryColumn) {
|
|
116
|
+
console.log('columnData', columnData);
|
|
116
117
|
const countColumn = {
|
|
117
118
|
type: _isDateSummaryColumn ? _dtableUtils.CellType.DATE : _dtableUtils.CellType.NUMBER,
|
|
118
119
|
name: summaryColumn === null || summaryColumn === void 0 ? void 0 : summaryColumn.name,
|
|
@@ -147,6 +148,10 @@ const exportOneDimensionToTable = _ref => {
|
|
|
147
148
|
};
|
|
148
149
|
rows.push(newRow);
|
|
149
150
|
});
|
|
151
|
+
console.log(11, {
|
|
152
|
+
columns,
|
|
153
|
+
rows
|
|
154
|
+
});
|
|
150
155
|
return {
|
|
151
156
|
columns,
|
|
152
157
|
rows
|