@carbon/charts-vue 1.6.3 → 1.6.5

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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.6.5](https://github.com/carbon-design-system/carbon-charts/compare/v1.6.4...v1.6.5) (2023-02-27)
7
+
8
+ **Note:** Version bump only for package @carbon/charts-vue
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.6.4](https://github.com/carbon-design-system/carbon-charts/compare/v1.6.3...v1.6.4) (2023-02-03)
15
+
16
+ **Note:** Version bump only for package @carbon/charts-vue
17
+
18
+
19
+
20
+
21
+
6
22
  ## [1.6.3](https://github.com/carbon-design-system/carbon-charts/compare/v1.6.2...v1.6.3) (2022-12-23)
7
23
 
8
24
  **Note:** Version bump only for package @carbon/charts-vue
@@ -12676,7 +12676,7 @@ var model_ChartModel = /** @class */ (function () {
12676
12676
  };
12677
12677
  ChartModel.prototype.exportToCSV = function () {
12678
12678
  var data = this.getTabularDataArray().map(function (row) {
12679
- return row.map(function (column) { return "\"" + column + "\""; });
12679
+ return row.map(function (column) { return "\"" + (column === '–' ? '–' : column) + "\""; });
12680
12680
  });
12681
12681
  var csvString = '', csvData = '';
12682
12682
  data.forEach(function (d, i) {