@carbon/charts 1.6.3 → 1.6.5
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 +19 -0
- package/build/src/interfaces/components.d.ts +4 -0
- package/bundle.js +1 -1
- package/interfaces/components.d.ts +4 -0
- package/interfaces/components.js.map +1 -1
- package/model/model.js +2 -2
- package/model/model.js.map +1 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.5](https://github.com/carbon-design-system/carbon-charts/compare/v1.6.4...v1.6.5) (2023-02-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.6.4](https://github.com/carbon-design-system/carbon-charts/compare/v1.6.3...v1.6.4) (2023-02-03)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **csv-export:** fix en-dash html code showing up ([#1492](https://github.com/carbon-design-system/carbon-charts/issues/1492)) ([adaa209](https://github.com/carbon-design-system/carbon-charts/commit/adaa209b14bca0080c87f24a5eaf8108ee632468))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [1.6.3](https://github.com/carbon-design-system/carbon-charts/compare/v1.6.2...v1.6.3) (2022-12-23)
|
|
7
26
|
|
|
8
27
|
|
|
@@ -148,6 +148,10 @@ export interface ToolbarControl {
|
|
|
148
148
|
* the toolbar control type
|
|
149
149
|
*/
|
|
150
150
|
type: ToolbarControlTypes;
|
|
151
|
+
/**
|
|
152
|
+
* used as aria-label for toolbar control
|
|
153
|
+
*/
|
|
154
|
+
title?: string;
|
|
151
155
|
/**
|
|
152
156
|
* the text to display (if this control is displayed in overflow menu)
|
|
153
157
|
* type value will be displayed if text is not available
|