@carbon/charts-vue 1.6.5 → 1.6.6

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/charts-vue.umd.js CHANGED
@@ -39751,8 +39751,7 @@ var toolbar_Toolbar = /** @class */ (function (_super) {
39751
39751
  .append('div')
39752
39752
  .attr('class', 'cds--overflow-menu-options cds--overflow-menu--flip cds--overflow-menu-options cds--overflow-menu--flip')
39753
39753
  .attr('tabindex', -1)
39754
- .attr('role', 'menu')
39755
- .html("<ul></ul>");
39754
+ .html("<ul role='menu'></ul>");
39756
39755
  }
39757
39756
  // get the toolbar buttons
39758
39757
  var _a = this.getControlConfigs(), buttonList = _a.buttonList, overflowMenuItemList = _a.overflowMenuItemList;
@@ -39829,7 +39828,8 @@ var toolbar_Toolbar = /** @class */ (function (_super) {
39829
39828
  return _this.services.domUtils.generateElementIDString("control-" + d.id);
39830
39829
  })
39831
39830
  .attr('class', 'cds--overflow-menu-options__option cds--overflow-menu-options__option')
39832
- .attr('role', 'menuitem');
39831
+ .attr('role', 'menuitem')
39832
+ .attr('tabindex', 1);
39833
39833
  enteringOverflowMenuControls
39834
39834
  .append('button')
39835
39835
  .attr('class', 'cds--overflow-menu-options__btn cds--overflow-menu-options__btn');