@carbon/charts 0.41.43 → 0.41.44
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/build/src/axis-chart.d.ts +1 -1
- package/build/src/chart.d.ts +1 -1
- package/build/src/components/essentials/tooltip.d.ts +1 -1
- package/bundle.js +1 -1
- package/components/essentials/tooltip-axis.js +5 -13
- package/components/essentials/tooltip-axis.js.map +1 -1
- package/components/essentials/tooltip.d.ts +1 -1
- package/components/essentials/tooltip.js +7 -3
- package/components/essentials/tooltip.js.map +1 -1
- package/configuration.js +0 -1
- package/configuration.js.map +1 -1
- package/demo/data/bundle.js +1 -1
- package/demo/data/index.js +116 -161
- package/demo/data/index.js.map +1 -1
- package/demo/data/toolbar.js +0 -1
- package/demo/data/toolbar.js.map +1 -1
- package/demo/tsconfig.tsbuildinfo +2 -2
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +4 -4
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.41.44](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.43...v0.41.44) (2021-03-24)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.41.43](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.42...v0.41.43) (2021-03-15)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @carbon/charts
|
|
@@ -6,5 +6,5 @@ export declare class AxisChart extends Chart {
|
|
|
6
6
|
services: any;
|
|
7
7
|
model: ChartModelCartesian;
|
|
8
8
|
constructor(holder: Element, chartConfigs: ChartConfig<AxisChartOptions>);
|
|
9
|
-
protected getAxisChartComponents(graphFrameComponents: any[], configs?: object): (
|
|
9
|
+
protected getAxisChartComponents(graphFrameComponents: any[], configs?: object): (LayoutComponent | AxisChartsTooltip)[];
|
|
10
10
|
}
|
package/build/src/chart.d.ts
CHANGED
|
@@ -10,5 +10,5 @@ export declare class Chart {
|
|
|
10
10
|
getComponents(): any[];
|
|
11
11
|
update(animate?: boolean): void;
|
|
12
12
|
destroy(): void;
|
|
13
|
-
protected getChartComponents(graphFrameComponents: any[]): (
|
|
13
|
+
protected getChartComponents(graphFrameComponents: any[]): (LayoutComponent | Tooltip)[];
|
|
14
14
|
}
|
|
@@ -14,7 +14,7 @@ export declare class Tooltip extends Component {
|
|
|
14
14
|
getItems(e: CustomEvent): any;
|
|
15
15
|
formatItems(items: any): any;
|
|
16
16
|
getTooltipHTML(e: CustomEvent): any;
|
|
17
|
-
valueFormatter(value: any): any;
|
|
17
|
+
valueFormatter(value: any, label: string): any;
|
|
18
18
|
render(): void;
|
|
19
19
|
positionTooltip(e: CustomEvent): void;
|
|
20
20
|
}
|