@carbon/charts-vue 0.53.2 → 0.53.3

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.53.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.53.2...v0.53.3) (2021-12-07)
7
+
8
+ **Note:** Version bump only for package @carbon/charts-vue
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.53.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.53.1...v0.53.2) (2021-12-06)
7
15
 
8
16
  **Note:** Version bump only for package @carbon/charts-vue
@@ -38604,6 +38604,9 @@ var toolbar_Toolbar = /** @class */ (function (_super) {
38604
38604
  var isDataLoading = tools_Tools.getProperty(this.getOptions(), 'data', 'loading');
38605
38605
  if (isDataLoading) {
38606
38606
  container.html('');
38607
+ // Set overflow menu to null if data is loading
38608
+ // This will render in a new overflow menu when data is done loading
38609
+ this.overflowMenu = null;
38607
38610
  }
38608
38611
  else {
38609
38612
  if (!this.overflowMenu) {
@@ -38697,6 +38700,9 @@ var toolbar_Toolbar = /** @class */ (function (_super) {
38697
38700
  };
38698
38701
  // show/hide overflow menu
38699
38702
  Toolbar.prototype.updateOverflowMenu = function (show) {
38703
+ if (!this.overflowMenu) {
38704
+ return;
38705
+ }
38700
38706
  this.overflowMenu.classed('is-open', show);
38701
38707
  // update overflow button background
38702
38708
  if (this.overflowButton) {