@carbon/charts 1.11.2 → 1.11.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.
Files changed (59) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/dist/{_baseEach-477c04db.js → _baseEach-326db134.js} +2 -2
  3. package/dist/{_baseEach-477c04db.js.map → _baseEach-326db134.js.map} +1 -1
  4. package/dist/{_baseEach-05847c57.mjs → _baseEach-9b6a12fa.mjs} +2 -2
  5. package/dist/{_baseEach-05847c57.mjs.map → _baseEach-9b6a12fa.mjs.map} +1 -1
  6. package/dist/angle-utils-264ed176.mjs +840 -0
  7. package/dist/angle-utils-264ed176.mjs.map +1 -0
  8. package/dist/angle-utils-ccc0d890.js +3 -0
  9. package/dist/angle-utils-ccc0d890.js.map +1 -0
  10. package/dist/chart.d.ts +1 -1
  11. package/dist/{choropleth-9a359c3b.mjs → choropleth-141685a0.mjs} +280 -277
  12. package/dist/choropleth-141685a0.mjs.map +1 -0
  13. package/dist/{choropleth-2f8ec4a1.js → choropleth-b1a3729f.js} +9 -9
  14. package/dist/choropleth-b1a3729f.js.map +1 -0
  15. package/dist/color-scale-utils-2cd523be.js +2 -0
  16. package/dist/color-scale-utils-2cd523be.js.map +1 -0
  17. package/dist/color-scale-utils-b9604b2c.mjs +3335 -0
  18. package/dist/color-scale-utils-b9604b2c.mjs.map +1 -0
  19. package/dist/components/index.js +1 -1
  20. package/dist/components/index.mjs +4 -4
  21. package/dist/demo/charts/index.d.ts +9 -6
  22. package/dist/demo/index.js +197 -193
  23. package/dist/demo/index.js.map +1 -1
  24. package/dist/demo/index.mjs +2119 -1592
  25. package/dist/demo/index.mjs.map +1 -1
  26. package/dist/demo/utils/index.d.ts +1 -1
  27. package/dist/demo/utils/package-versions.d.ts +20 -0
  28. package/dist/demo/utils/stackblitz/angular.d.ts +3 -0
  29. package/dist/demo/utils/stackblitz/index.d.ts +5 -0
  30. package/dist/demo/utils/stackblitz/react.d.ts +3 -0
  31. package/dist/demo/utils/stackblitz/svelte.d.ts +3 -0
  32. package/dist/demo/utils/stackblitz/vanilla-js.d.ts +3 -0
  33. package/dist/demo/utils/stackblitz/vue.d.ts +3 -0
  34. package/dist/{index-e425a7b5.mjs → index-4b5d1e49.mjs} +3 -3
  35. package/dist/{index-e425a7b5.mjs.map → index-4b5d1e49.mjs.map} +1 -1
  36. package/dist/{index-4203ca23.js → index-eace9da9.js} +2 -2
  37. package/dist/{index-4203ca23.js.map → index-eace9da9.js.map} +1 -1
  38. package/dist/index.js +1 -1
  39. package/dist/index.js.map +1 -1
  40. package/dist/index.mjs +126 -125
  41. package/dist/index.mjs.map +1 -1
  42. package/dist/model/index.js +1 -1
  43. package/dist/model/index.js.map +1 -1
  44. package/dist/model/index.mjs +34 -34
  45. package/dist/model/index.mjs.map +1 -1
  46. package/dist/services/index.js +1 -1
  47. package/dist/services/index.mjs +10 -10
  48. package/package.json +5 -5
  49. package/dist/angle-utils-512bc5cd.js +0 -2
  50. package/dist/angle-utils-512bc5cd.js.map +0 -1
  51. package/dist/angle-utils-7255d1d9.mjs +0 -387
  52. package/dist/angle-utils-7255d1d9.mjs.map +0 -1
  53. package/dist/choropleth-2f8ec4a1.js.map +0 -1
  54. package/dist/choropleth-9a359c3b.mjs.map +0 -1
  55. package/dist/color-scale-utils-222feda6.mjs +0 -3815
  56. package/dist/color-scale-utils-222feda6.mjs.map +0 -1
  57. package/dist/color-scale-utils-79786095.js +0 -3
  58. package/dist/color-scale-utils-79786095.js.map +0 -1
  59. package/dist/demo/utils/sandbox.d.ts +0 -36
@@ -1,2 +1,2 @@
1
- export { createVanillaChartApp, createAngularChartApp, createReactChartApp, createSvelteChartApp, createVueChartApp } from './sandbox';
1
+ export { buildVanillaJsExample, buildAngularExample, buildReactExample, buildSvelteExample, buildVueExample } from './stackblitz';
2
2
  export { addControls, addOtherVersions, addRadioButtonEventListeners } from './story-widgets';
@@ -0,0 +1,20 @@
1
+ export declare const version: {
2
+ carbonCharts: string;
3
+ carbonStyles: string;
4
+ d3: string;
5
+ d3Cloud: string;
6
+ d3Sankey: string;
7
+ angular: any;
8
+ react: any;
9
+ rxjs: any;
10
+ sass: string;
11
+ svelteVite: string;
12
+ svelteTsConfig: string;
13
+ svelte: string;
14
+ svelteCheck: string;
15
+ tslib: string;
16
+ typescript: any;
17
+ vite: string;
18
+ vue: string;
19
+ zoneJs: any;
20
+ };
@@ -0,0 +1,3 @@
1
+ import { Project } from '@stackblitz/sdk';
2
+ import { Demo } from '../../../demo';
3
+ export declare function buildAngularExample(demo: Demo): Project;
@@ -0,0 +1,5 @@
1
+ export { buildVanillaJsExample } from './vanilla-js';
2
+ export { buildAngularExample } from './angular';
3
+ export { buildReactExample } from './react';
4
+ export { buildSvelteExample } from './svelte';
5
+ export { buildVueExample } from './vue';
@@ -0,0 +1,3 @@
1
+ import { Project } from '@stackblitz/sdk';
2
+ import { Demo } from '../../../demo';
3
+ export declare function buildReactExample(demo: Demo): Project;
@@ -0,0 +1,3 @@
1
+ import { Project } from '@stackblitz/sdk';
2
+ import { Demo } from '../../../demo';
3
+ export declare function buildSvelteExample(demo: Demo): Project;
@@ -0,0 +1,3 @@
1
+ import { Project } from '@stackblitz/sdk';
2
+ import { Demo } from '../../../demo';
3
+ export declare function buildVanillaJsExample(demo: Demo): Project;
@@ -0,0 +1,3 @@
1
+ import { Project } from '@stackblitz/sdk';
2
+ import { Demo } from '../../../demo';
3
+ export declare function buildVueExample(demo: Demo): Project;
@@ -1,5 +1,5 @@
1
- import { af as g, ag as f, ah as x, ai as b, aj as H, X as se, u as z, g as l, J as Y, p as X, ab as ie, L as oe } from "./color-scale-utils-222feda6.mjs";
2
- import { S as O, D as ae } from "./angle-utils-7255d1d9.mjs";
1
+ import { ad as g, ae as f, af as x, ag as b, ah as H, W as se, s as z, g as l, I as Y, n as X, a9 as ie, K as oe } from "./color-scale-utils-b9604b2c.mjs";
2
+ import { S as O, D as ae } from "./angle-utils-264ed176.mjs";
3
3
  import { _ as B, e as u, i as k, S as d } from "./enums-a96ef472.mjs";
4
4
  import { select as re, max as le, extent as q, scaleTime as ue, scaleLog as ce, scaleBand as me, scaleLinear as de, curveLinear as ge, curveLinearClosed as he, curveBasis as fe, curveBasisClosed as pe, curveBasisOpen as ve, curveBundle as De, curveCardinal as xe, curveCardinalClosed as ye, curveCardinalOpen as Oe, curveCatmullRom as Ae, curveCatmullRomClosed as Te, curveCatmullRomOpen as Me, curveMonotoneX as Se, curveMonotoneY as Pe, curveNatural as Re, curveStep as Be, curveStepAfter as Le, curveStepBefore as Ee } from "d3";
5
5
  function J(i, e) {
@@ -746,4 +746,4 @@ export {
746
746
  ut as b,
747
747
  qe as f
748
748
  };
749
- //# sourceMappingURL=index-e425a7b5.mjs.map
749
+ //# sourceMappingURL=index-4b5d1e49.mjs.map