@carbon/charts 1.16.3 → 1.16.4

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 CHANGED
@@ -3,6 +3,19 @@
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.16.4 (2024-06-12)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **wordcloud,choropleth:** provide corrected names, deprecate old names
11
+ ([#1832](https://github.com/carbon-design-system/carbon-charts/issues/1832))
12
+ ([230ce7c](https://github.com/carbon-design-system/carbon-charts/commit/230ce7c3bdce8e03e70b8188e06a1d65ee90b2be))
13
+
14
+ # Change Log
15
+
16
+ All notable changes to this project will be documented in this file. See
17
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
18
+
6
19
  ## 1.16.3 (2024-06-03)
7
20
 
8
21
  **Note:** Version bump only for package @carbon/charts
@@ -6,7 +6,7 @@ import { Component } from '../components/component';
6
6
  import { Modal } from '../components/essentials/modal';
7
7
  import { LayoutComponent } from '../components/layout/layout';
8
8
  import { Tooltip } from '../components/essentials/tooltip';
9
- export declare class ExperimentalChoroplethChart extends Chart {
9
+ export declare class ChoroplethChart extends Chart {
10
10
  model: ChoroplethModel;
11
11
  constructor(holder: HTMLDivElement, chartConfigs: ChartConfig<ChoroplethChartOptions>);
12
12
  protected getChartComponents(graphFrameComponents: any[], configs?: any): (Tooltip | Modal | LayoutComponent)[];
@@ -3,7 +3,7 @@ import { AreaChart } from './area';
3
3
  import { BoxplotChart } from './boxplot';
4
4
  import { BubbleChart } from './bubble';
5
5
  import { BulletChart } from './bullet';
6
- import { ExperimentalChoroplethChart } from './choropleth';
6
+ import { ChoroplethChart } from './choropleth';
7
7
  import { CirclePackChart } from './circle-pack';
8
8
  import { ComboChart } from './combo';
9
9
  import { DonutChart } from './donut';
@@ -23,5 +23,5 @@ import { SimpleBarChart } from './bar-simple';
23
23
  import { StackedAreaChart } from './area-stacked';
24
24
  import { StackedBarChart } from './bar-stacked';
25
25
  import { WordCloudChart } from './wordcloud';
26
- export { AlluvialChart, AreaChart, BoxplotChart, BubbleChart, BulletChart, ExperimentalChoroplethChart, CirclePackChart, ComboChart, DonutChart, GaugeChart, GroupedBarChart, HeatmapChart, HistogramChart, LineChart, LollipopChart, MeterChart, PieChart, RadarChart, ScatterChart, SimpleBarChart, StackedAreaChart, StackedBarChart, TreeChart, TreemapChart, WordCloudChart };
27
- export type Charts = AlluvialChart | AreaChart | BoxplotChart | BubbleChart | BulletChart | ExperimentalChoroplethChart | CirclePackChart | ComboChart | DonutChart | GaugeChart | GroupedBarChart | HeatmapChart | HistogramChart | LineChart | LollipopChart | MeterChart | PieChart | RadarChart | ScatterChart | SimpleBarChart | StackedAreaChart | StackedBarChart | TreeChart | TreemapChart | WordCloudChart;
26
+ export { AlluvialChart, AreaChart, BoxplotChart, BubbleChart, BulletChart, ChoroplethChart, CirclePackChart, ComboChart, DonutChart, GaugeChart, GroupedBarChart, HeatmapChart, HistogramChart, LineChart, LollipopChart, MeterChart, PieChart, RadarChart, ScatterChart, SimpleBarChart, StackedAreaChart, StackedBarChart, TreeChart, TreemapChart, WordCloudChart };
27
+ export type Charts = AlluvialChart | AreaChart | BoxplotChart | BubbleChart | BulletChart | ChoroplethChart | CirclePackChart | ComboChart | DonutChart | GaugeChart | GroupedBarChart | HeatmapChart | HistogramChart | LineChart | LollipopChart | MeterChart | PieChart | RadarChart | ScatterChart | SimpleBarChart | StackedAreaChart | StackedBarChart | TreeChart | TreemapChart | WordCloudChart;
@@ -1,10 +1,11 @@
1
1
  import { Chart } from '../chart';
2
2
  import { WordCloudModel } from '../model/wordcloud';
3
3
  import { ChartConfig } from '../interfaces/model';
4
- import { WorldCloudChartOptions } from '../interfaces/charts';
4
+ import { WordCloudChartOptions } from '../interfaces/charts';
5
+ import { WorldCloudChartOptions } from '../interfaces';
5
6
  import { Component } from '../components/component';
6
7
  export declare class WordCloudChart extends Chart {
7
8
  model: WordCloudModel;
8
- constructor(holder: HTMLDivElement, chartConfigs: ChartConfig<WorldCloudChartOptions>);
9
+ constructor(holder: HTMLDivElement, chartConfigs: ChartConfig<WordCloudChartOptions | WorldCloudChartOptions>);
9
10
  getComponents(): Component[];
10
11
  }