@carbon/charts-vue 0.49.1 → 0.49.2

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,14 @@
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
+ ## [0.49.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.49.1...v0.49.2) (2021-09-20)
7
+
8
+ **Note:** Version bump only for package @carbon/charts-vue
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.49.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.49.0...v0.49.1) (2021-09-17)
7
15
 
8
16
  **Note:** Version bump only for package @carbon/charts-vue
@@ -19474,12 +19474,12 @@ var legend_Legend = /** @class */ (function (_super) {
19474
19474
  }
19475
19475
  };
19476
19476
  Legend.prototype.truncateLegendText = function (addedLegendItemsText) {
19477
- var trucationOptions = tools_Tools.getProperty(this.getOptions(), 'legend', 'truncation');
19477
+ var truncationOptions = tools_Tools.getProperty(this.getOptions(), 'legend', 'truncation');
19478
19478
  // Truncation
19479
19479
  // get user provided custom values for truncation
19480
- var truncationType = tools_Tools.getProperty(trucationOptions, 'type');
19481
- var truncationThreshold = tools_Tools.getProperty(trucationOptions, 'threshold');
19482
- var truncationNumCharacter = tools_Tools.getProperty(trucationOptions, 'numCharacter');
19480
+ var truncationType = tools_Tools.getProperty(truncationOptions, 'type');
19481
+ var truncationThreshold = tools_Tools.getProperty(truncationOptions, 'threshold');
19482
+ var truncationNumCharacter = tools_Tools.getProperty(truncationOptions, 'numCharacter');
19483
19483
  // truncate the legend label if it's too long
19484
19484
  if (truncationType !== TruncationTypes.NONE) {
19485
19485
  addedLegendItemsText.html(function (d) {