@carbon/charts 0.41.75 → 0.41.76

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.
Files changed (41) hide show
  1. package/CHANGELOG.md +13 -4
  2. package/build/demo/data/circle-pack.d.ts +15 -0
  3. package/build/src/components/graphs/circle-pack.d.ts +1 -1
  4. package/build/src/configuration-non-customizable.d.ts +3 -0
  5. package/bundle.js +1 -1
  6. package/components/graphs/circle-pack.d.ts +1 -1
  7. package/components/graphs/circle-pack.js +14 -4
  8. package/components/graphs/circle-pack.js.map +1 -1
  9. package/configuration-non-customizable.d.ts +3 -0
  10. package/configuration-non-customizable.js +3 -0
  11. package/configuration-non-customizable.js.map +1 -1
  12. package/demo/data/bundle.js +1 -1
  13. package/demo/data/circle-pack.d.ts +15 -0
  14. package/demo/data/circle-pack.js +15 -0
  15. package/demo/data/circle-pack.js.map +1 -1
  16. package/demo/data/index.js +5 -0
  17. package/demo/data/index.js.map +1 -1
  18. package/demo/styles.css +0 -12
  19. package/demo/styles.css.map +1 -1
  20. package/demo/styles.min.css +1 -1
  21. package/demo/styles.min.css.map +1 -1
  22. package/demo/tsconfig.tsbuildinfo +3 -3
  23. package/package.json +1 -1
  24. package/styles/graphs/_circle-pack.scss +0 -4
  25. package/styles-g10.css +0 -3
  26. package/styles-g10.css.map +1 -1
  27. package/styles-g10.min.css +1 -1
  28. package/styles-g10.min.css.map +1 -1
  29. package/styles-g100.css +0 -3
  30. package/styles-g100.css.map +1 -1
  31. package/styles-g100.min.css +1 -1
  32. package/styles-g100.min.css.map +1 -1
  33. package/styles-g90.css +0 -3
  34. package/styles-g90.css.map +1 -1
  35. package/styles-g90.min.css +1 -1
  36. package/styles-g90.min.css.map +1 -1
  37. package/styles.css +0 -3
  38. package/styles.css.map +1 -1
  39. package/styles.min.css +1 -1
  40. package/styles.min.css.map +1 -1
  41. package/tsconfig.tsbuildinfo +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,19 @@
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.76](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.75...v0.41.76) (2021-06-24)
7
+
8
+ **Note:** Version bump only for package @carbon/charts
9
+
10
+
11
+
12
+
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
  ## [0.41.75](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.74...v0.41.75) (2021-06-24)
7
20
 
8
21
  **Note:** Version bump only for package @carbon/charts
@@ -47,10 +60,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
47
60
 
48
61
  **Note:** Version bump only for package @carbon/charts
49
62
 
50
-
51
-
52
-
53
-
54
63
  # Change Log
55
64
 
56
65
  All notable changes to this project will be documented in this file. See
@@ -12,6 +12,21 @@ export declare const circlePackTwoLevelOptions: {
12
12
  enabled: boolean;
13
13
  };
14
14
  };
15
+ export declare const circlePackTwoLevelCustomColorsOptions: {
16
+ experimental: string;
17
+ title: string;
18
+ canvasZoom: {
19
+ enabled: boolean;
20
+ };
21
+ color: {
22
+ scale: {
23
+ 'Asia': string;
24
+ 'South America': string;
25
+ 'North America': string;
26
+ 'Europe': string;
27
+ };
28
+ };
29
+ };
15
30
  export declare const circlePackSingleOptions: {
16
31
  experimental: string;
17
32
  title: string;
@@ -4,7 +4,7 @@ export declare class CirclePack extends Component {
4
4
  focal: any;
5
5
  render(animate?: boolean): void;
6
6
  unhighlightChildren(childData: any): void;
7
- highlightChildren(childData: any, classname?: any): void;
7
+ highlightChildren(childData: any): void;
8
8
  getZoomClass(node: any): "focal" | "non-focal";
9
9
  addLegendListeners(): void;
10
10
  removeBackgroundListeners(): void;
@@ -27,6 +27,9 @@ export declare const canvasZoomSettings: {
27
27
  export declare const circlePack: {
28
28
  circles: {
29
29
  fillOpacity: number;
30
+ hover: {
31
+ stroke: string;
32
+ };
30
33
  };
31
34
  padding: {
32
35
  mainGroup: number;