@carbon/charts-vue 1.5.1 → 1.5.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 +8 -0
- package/charts-vue.common.js +5 -0
- package/charts-vue.common.js.map +1 -1
- package/charts-vue.umd.js +5 -0
- 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,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
|
+
## [1.5.2](https://github.com/carbon-design-system/carbon-charts/compare/v1.5.1...v1.5.2) (2022-08-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts-vue
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [1.5.1](https://github.com/carbon-design-system/carbon-charts/compare/v1.5.0...v1.5.1) (2022-08-08)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @carbon/charts-vue
|
package/charts-vue.common.js
CHANGED
|
@@ -39933,6 +39933,11 @@ var toolbar_Toolbar = /** @class */ (function (_super) {
|
|
|
39933
39933
|
};
|
|
39934
39934
|
// Calls passed function && dispatches event
|
|
39935
39935
|
Toolbar.prototype.triggerFunctionAndEvent = function (control, event, element) {
|
|
39936
|
+
// Check if trigger is disabled
|
|
39937
|
+
if (typeof control.shouldBeDisabled === 'function' &&
|
|
39938
|
+
control.shouldBeDisabled()) {
|
|
39939
|
+
return;
|
|
39940
|
+
}
|
|
39936
39941
|
// Call custom function only if it exists
|
|
39937
39942
|
if (typeof control.clickFunction === 'function') {
|
|
39938
39943
|
control.clickFunction(event);
|