akeyless-client-commons 1.0.142 → 1.0.143
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/dist/components/index.js
CHANGED
|
@@ -5119,7 +5119,7 @@ var ExportToExcel = (0, import_react11.memo)(function() {
|
|
|
5119
5119
|
return acc + Number(row[dataKey] || 0);
|
|
5120
5120
|
}, 0).toFixed(2);
|
|
5121
5121
|
var _obj;
|
|
5122
|
-
var summaryRow = (_obj = {}, _define_property(_obj, exportToExcelKeys[0], label), _define_property(_obj,
|
|
5122
|
+
var summaryRow = (_obj = {}, _define_property(_obj, exportToExcelKeys[0], label), _define_property(_obj, exportToExcelKeys[1], sumValue), _obj);
|
|
5123
5123
|
dataWithSummary.push(summaryRow);
|
|
5124
5124
|
});
|
|
5125
5125
|
}
|
|
@@ -5131,7 +5131,7 @@ var ExportToExcel = (0, import_react11.memo)(function() {
|
|
|
5131
5131
|
headline: excelHeadline,
|
|
5132
5132
|
fileName: "".concat(excelFileName || "table_data", ".xlsx"),
|
|
5133
5133
|
cellStyle: {
|
|
5134
|
-
horizontal: "right",
|
|
5134
|
+
horizontal: direction === "ltr" ? "left" : "right",
|
|
5135
5135
|
readingOrder: direction
|
|
5136
5136
|
}
|
|
5137
5137
|
})
|
|
@@ -4906,7 +4906,7 @@ var ExportToExcel = memo(function() {
|
|
|
4906
4906
|
return acc + Number(row[dataKey] || 0);
|
|
4907
4907
|
}, 0).toFixed(2);
|
|
4908
4908
|
var _obj;
|
|
4909
|
-
var summaryRow = (_obj = {}, _define_property(_obj, exportToExcelKeys[0], label), _define_property(_obj,
|
|
4909
|
+
var summaryRow = (_obj = {}, _define_property(_obj, exportToExcelKeys[0], label), _define_property(_obj, exportToExcelKeys[1], sumValue), _obj);
|
|
4910
4910
|
dataWithSummary.push(summaryRow);
|
|
4911
4911
|
});
|
|
4912
4912
|
}
|
|
@@ -4918,7 +4918,7 @@ var ExportToExcel = memo(function() {
|
|
|
4918
4918
|
headline: excelHeadline,
|
|
4919
4919
|
fileName: "".concat(excelFileName || "table_data", ".xlsx"),
|
|
4920
4920
|
cellStyle: {
|
|
4921
|
-
horizontal: "right",
|
|
4921
|
+
horizontal: direction === "ltr" ? "left" : "right",
|
|
4922
4922
|
readingOrder: direction
|
|
4923
4923
|
}
|
|
4924
4924
|
})
|