@carbon/charts-vue 1.6.5 → 1.6.7
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 +16 -0
- package/charts-vue.common.js +3 -3
- package/charts-vue.common.js.map +1 -1
- package/charts-vue.umd.js +3 -3
- package/charts-vue.umd.js.map +1 -1
- package/charts-vue.umd.min.js +1 -1
- package/charts-vue.umd.min.js.map +1 -1
- package/package.json +2 -2
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.7](https://github.com/carbon-design-system/carbon-charts/compare/v1.6.6...v1.6.7) (2023-02-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts-vue
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.6.6](https://github.com/carbon-design-system/carbon-charts/compare/v1.6.5...v1.6.6) (2023-02-27)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @carbon/charts-vue
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [1.6.5](https://github.com/carbon-design-system/carbon-charts/compare/v1.6.4...v1.6.5) (2023-02-27)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @carbon/charts-vue
|
package/charts-vue.common.js
CHANGED
|
@@ -39742,8 +39742,7 @@ var toolbar_Toolbar = /** @class */ (function (_super) {
|
|
|
39742
39742
|
.append('div')
|
|
39743
39743
|
.attr('class', 'cds--overflow-menu-options cds--overflow-menu--flip cds--overflow-menu-options cds--overflow-menu--flip')
|
|
39744
39744
|
.attr('tabindex', -1)
|
|
39745
|
-
.
|
|
39746
|
-
.html("<ul></ul>");
|
|
39745
|
+
.html("<ul role='menu'></ul>");
|
|
39747
39746
|
}
|
|
39748
39747
|
// get the toolbar buttons
|
|
39749
39748
|
var _a = this.getControlConfigs(), buttonList = _a.buttonList, overflowMenuItemList = _a.overflowMenuItemList;
|
|
@@ -39820,7 +39819,8 @@ var toolbar_Toolbar = /** @class */ (function (_super) {
|
|
|
39820
39819
|
return _this.services.domUtils.generateElementIDString("control-" + d.id);
|
|
39821
39820
|
})
|
|
39822
39821
|
.attr('class', 'cds--overflow-menu-options__option cds--overflow-menu-options__option')
|
|
39823
|
-
.attr('role', 'menuitem')
|
|
39822
|
+
.attr('role', 'menuitem')
|
|
39823
|
+
.attr('tabindex', 1);
|
|
39824
39824
|
enteringOverflowMenuControls
|
|
39825
39825
|
.append('button')
|
|
39826
39826
|
.attr('class', 'cds--overflow-menu-options__btn cds--overflow-menu-options__btn');
|