@carbon/charts 1.16.6 → 1.16.8

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 (43) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/README.md +3 -4
  3. package/dist/angle-utils-BSzg7qin.mjs +1681 -0
  4. package/dist/angle-utils-BSzg7qin.mjs.map +1 -0
  5. package/dist/array-BRmw0x1E.mjs +32 -0
  6. package/dist/array-BRmw0x1E.mjs.map +1 -0
  7. package/dist/choropleth-BwaUZYh6.mjs +11722 -0
  8. package/dist/choropleth-BwaUZYh6.mjs.map +1 -0
  9. package/dist/color-scale-utils-DAbXVtf-.mjs +5722 -0
  10. package/dist/color-scale-utils-DAbXVtf-.mjs.map +1 -0
  11. package/dist/components/essentials/geo-projection.d.ts +7 -5
  12. package/dist/components/essentials/highlights.d.ts +1 -1
  13. package/dist/components/essentials/threshold.d.ts +1 -1
  14. package/dist/components/essentials/tooltip.d.ts +1 -1
  15. package/dist/components/index.mjs +3 -3
  16. package/dist/demo/index.mjs +244 -264
  17. package/dist/demo/index.mjs.map +1 -1
  18. package/dist/enums-DwsxZqjR.mjs.map +1 -1
  19. package/dist/index-DnyOi0rJ.mjs +1477 -0
  20. package/dist/index-DnyOi0rJ.mjs.map +1 -0
  21. package/dist/index.mjs +35 -35
  22. package/dist/interfaces/axis-scales.d.ts +3 -3
  23. package/dist/interfaces/charts.d.ts +5 -3
  24. package/dist/interfaces/components.d.ts +4 -3
  25. package/dist/interfaces/model.d.ts +30 -6
  26. package/dist/model/index.mjs +1321 -17
  27. package/dist/model/index.mjs.map +1 -1
  28. package/dist/services/index.mjs +16 -16
  29. package/dist/umd/bundle.umd.js +11 -11
  30. package/dist/umd/bundle.umd.js.map +1 -1
  31. package/package.json +2 -15
  32. package/dist/_baseEach-Bp7pBkX8.mjs +0 -20
  33. package/dist/_baseEach-Bp7pBkX8.mjs.map +0 -1
  34. package/dist/angle-utils-BCx3SRS2.mjs +0 -849
  35. package/dist/angle-utils-BCx3SRS2.mjs.map +0 -1
  36. package/dist/choropleth-B7eXF9sA.mjs +0 -8662
  37. package/dist/choropleth-B7eXF9sA.mjs.map +0 -1
  38. package/dist/color-scale-utils-BaTmNvWt.mjs +0 -3467
  39. package/dist/color-scale-utils-BaTmNvWt.mjs.map +0 -1
  40. package/dist/wordcloud-BsEQRUwL.mjs +0 -1169
  41. package/dist/wordcloud-BsEQRUwL.mjs.map +0 -1
  42. package/dist/zoom-E2POxw6n.mjs +0 -739
  43. package/dist/zoom-E2POxw6n.mjs.map +0 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,32 @@
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.8 (2024-06-15)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **1850:** redefined variables violated no-shadow rule
11
+ ([#1851](https://github.com/carbon-design-system/carbon-charts/issues/1851))
12
+ ([58f64bc](https://github.com/carbon-design-system/carbon-charts/commit/58f64bc950de537ca1fba82b15b1e3af65b3fafb))
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
+
19
+ ## 1.16.7 (2024-06-15)
20
+
21
+ ### Bug Fixes
22
+
23
+ - **all packages:** missing options, package.json and lint fixes
24
+ ([#1849](https://github.com/carbon-design-system/carbon-charts/issues/1849))
25
+ ([a43f0eb](https://github.com/carbon-design-system/carbon-charts/commit/a43f0eb3a9d09178ac613bc34de32816a4e0e4be))
26
+
27
+ # Change Log
28
+
29
+ All notable changes to this project will be documented in this file. See
30
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
31
+
6
32
  ## 1.16.6 (2024-06-15)
7
33
 
8
34
  **Note:** Version bump only for package @carbon/charts
package/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # Carbon Charts
2
2
 
3
- Carbon Charts is a component library for vanilla JavaScript. Chart visualizations are based on
4
- D3.js, a peer dependency.
3
+ Carbon Charts is a component library for vanilla JavaScript.
5
4
 
6
5
  The required styles should be imported from `@carbon/charts/dist/styles.css`. Additional
7
6
  documentation is provided in the Storybook demos.
@@ -11,13 +10,13 @@ documentation is provided in the Storybook demos.
11
10
  Run the following command using [npm](https://www.npmjs.com/):
12
11
 
13
12
  ```bash
14
- npm install -S @carbon/charts d3 d3-cloud d3-sankey
13
+ npm install -S @carbon/charts
15
14
  ```
16
15
 
17
16
  If you prefer [Yarn](https://yarnpkg.com/en/), use the following command instead:
18
17
 
19
18
  ```bash
20
- yarn add @carbon/charts d3 d3-cloud d3-sankey
19
+ yarn add @carbon/charts
21
20
  ```
22
21
 
23
22
  ## Step-by-step instructions