@carbon/charts 1.11.9 → 1.11.10
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 +9 -0
- package/dist/axis-chart.d.ts +1 -1
- package/dist/chart.d.ts +1 -1
- package/dist/charts/choropleth.d.ts +1 -1
- package/dist/charts/heatmap.d.ts +1 -1
- package/dist/components/axes/grid.d.ts +1 -1
- package/dist/components/component.d.ts +1 -1
- package/dist/demo/index.js +11 -15
- package/dist/demo/index.js.map +1 -1
- package/dist/demo/index.mjs +226 -228
- package/dist/demo/index.mjs.map +1 -1
- package/dist/demo/styles.css +8648 -8900
- package/dist/demo/styles.css.map +1 -1
- package/package.json +21 -21
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.11.10](https://github.com/carbon-design-system/carbon-charts/compare/v1.11.9...v1.11.10) (2023-07-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts
|
|
9
|
+
|
|
10
|
+
# Change Log
|
|
11
|
+
|
|
12
|
+
All notable changes to this project will be documented in this file. See
|
|
13
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
14
|
+
|
|
6
15
|
## [1.11.9](https://github.com/carbon-design-system/carbon-charts/compare/v1.11.8...v1.11.9) (2023-07-13)
|
|
7
16
|
|
|
8
17
|
**Note:** Version bump only for package @carbon/charts
|
package/dist/axis-chart.d.ts
CHANGED
|
@@ -9,5 +9,5 @@ export declare class AxisChart extends Chart {
|
|
|
9
9
|
services: any;
|
|
10
10
|
model: ChartModelCartesian;
|
|
11
11
|
constructor(holder: HTMLDivElement, chartConfigs: ChartConfig<AxisChartOptions>);
|
|
12
|
-
protected getAxisChartComponents(graphFrameComponents: any[], configs?: any): (
|
|
12
|
+
protected getAxisChartComponents(graphFrameComponents: any[], configs?: any): (AxisChartsTooltip | Modal | LayoutComponent)[];
|
|
13
13
|
}
|
package/dist/chart.d.ts
CHANGED
|
@@ -14,5 +14,5 @@ export declare class Chart {
|
|
|
14
14
|
getComponents(): Component[];
|
|
15
15
|
update(animate?: boolean): void;
|
|
16
16
|
destroy(): void;
|
|
17
|
-
protected getChartComponents(graphFrameComponents: any[], configs?: object): (
|
|
17
|
+
protected getChartComponents(graphFrameComponents: any[], configs?: object): (Tooltip | Modal | LayoutComponent)[];
|
|
18
18
|
}
|
|
@@ -9,6 +9,6 @@ import { Tooltip } from '../components/essentials/tooltip';
|
|
|
9
9
|
export declare class ExperimentalChoroplethChart extends Chart {
|
|
10
10
|
model: ChoroplethModel;
|
|
11
11
|
constructor(holder: HTMLDivElement, chartConfigs: ChartConfig<ChoroplethChartOptions>);
|
|
12
|
-
protected getChartComponents(graphFrameComponents: any[], configs?: any): (
|
|
12
|
+
protected getChartComponents(graphFrameComponents: any[], configs?: any): (Tooltip | Modal | LayoutComponent)[];
|
|
13
13
|
getComponents(): Component[];
|
|
14
14
|
}
|
package/dist/charts/heatmap.d.ts
CHANGED
|
@@ -9,6 +9,6 @@ import { AxisChartsTooltip } from '../components/essentials/tooltip-axis';
|
|
|
9
9
|
export declare class HeatmapChart extends AxisChart {
|
|
10
10
|
model: HeatmapModel;
|
|
11
11
|
constructor(holder: HTMLDivElement, chartConfigs: ChartConfig<HeatmapChartOptions>);
|
|
12
|
-
protected getAxisChartComponents(graphFrameComponents: any[], configs?: any): (
|
|
12
|
+
protected getAxisChartComponents(graphFrameComponents: any[], configs?: any): (AxisChartsTooltip | Modal | LayoutComponent)[];
|
|
13
13
|
getComponents(): Component[];
|
|
14
14
|
}
|
|
@@ -16,7 +16,7 @@ export declare class Grid extends Component {
|
|
|
16
16
|
* Returns the active gridlines based on the gridline threshold and mouse position.
|
|
17
17
|
* @param position mouse positon
|
|
18
18
|
*/
|
|
19
|
-
getActiveGridline(position: any): import("d3-selection").Selection<import("d3-selection").BaseType, unknown,
|
|
19
|
+
getActiveGridline(position: any): import("d3-selection").Selection<import("d3-selection").BaseType, unknown, SVGGraphicsElement | HTMLDivElement, any>;
|
|
20
20
|
drawBackdrop(isXGridEnabled: boolean, isYGridEnabled: boolean): void;
|
|
21
21
|
cleanGrid(g: any): void;
|
|
22
22
|
}
|
|
@@ -17,7 +17,7 @@ export declare class Component {
|
|
|
17
17
|
setModel(newObj: any): void;
|
|
18
18
|
setServices(newObj: any): void;
|
|
19
19
|
setParent(parent: any): void;
|
|
20
|
-
getParent(): D3Selection<
|
|
20
|
+
getParent(): D3Selection<SVGGraphicsElement | HTMLDivElement, any, HTMLElement, any>;
|
|
21
21
|
getComponentContainer(configs?: {
|
|
22
22
|
withinChartClip: boolean;
|
|
23
23
|
}): D3Selection<any, any, Element, any>;
|