@carbon/charts-svelte 1.16.4 → 1.16.6

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 (54) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/AlluvialChart.svelte +2 -2
  3. package/dist/AlluvialChart.svelte.d.ts +2 -2
  4. package/dist/AreaChart.svelte +2 -2
  5. package/dist/AreaChart.svelte.d.ts +2 -2
  6. package/dist/BarChartGrouped.svelte +2 -2
  7. package/dist/BarChartGrouped.svelte.d.ts +2 -2
  8. package/dist/BarChartSimple.svelte +2 -2
  9. package/dist/BarChartSimple.svelte.d.ts +2 -2
  10. package/dist/BarChartStacked.svelte +2 -2
  11. package/dist/BarChartStacked.svelte.d.ts +2 -2
  12. package/dist/BoxplotChart.svelte +2 -2
  13. package/dist/BoxplotChart.svelte.d.ts +2 -2
  14. package/dist/BubbleChart.svelte +2 -2
  15. package/dist/BubbleChart.svelte.d.ts +2 -2
  16. package/dist/BulletChart.svelte +2 -2
  17. package/dist/BulletChart.svelte.d.ts +2 -2
  18. package/dist/ChoroplethChart.svelte +2 -2
  19. package/dist/ChoroplethChart.svelte.d.ts +2 -2
  20. package/dist/CirclePackChart.svelte +2 -2
  21. package/dist/CirclePackChart.svelte.d.ts +2 -2
  22. package/dist/ComboChart.svelte +2 -2
  23. package/dist/ComboChart.svelte.d.ts +2 -2
  24. package/dist/DonutChart.svelte +2 -2
  25. package/dist/DonutChart.svelte.d.ts +2 -2
  26. package/dist/GaugeChart.svelte +2 -2
  27. package/dist/GaugeChart.svelte.d.ts +2 -2
  28. package/dist/HeatmapChart.svelte +2 -2
  29. package/dist/HeatmapChart.svelte.d.ts +2 -2
  30. package/dist/HistogramChart.svelte +2 -2
  31. package/dist/HistogramChart.svelte.d.ts +2 -2
  32. package/dist/LineChart.svelte +2 -2
  33. package/dist/LineChart.svelte.d.ts +2 -2
  34. package/dist/LollipopChart.svelte +2 -2
  35. package/dist/LollipopChart.svelte.d.ts +2 -2
  36. package/dist/MeterChart.svelte +2 -2
  37. package/dist/MeterChart.svelte.d.ts +2 -2
  38. package/dist/PieChart.svelte +2 -2
  39. package/dist/PieChart.svelte.d.ts +2 -2
  40. package/dist/RadarChart.svelte +2 -2
  41. package/dist/RadarChart.svelte.d.ts +2 -2
  42. package/dist/ScatterChart.svelte +2 -2
  43. package/dist/ScatterChart.svelte.d.ts +2 -2
  44. package/dist/StackedAreaChart.svelte +2 -2
  45. package/dist/StackedAreaChart.svelte.d.ts +2 -2
  46. package/dist/TreeChart.svelte +2 -2
  47. package/dist/TreeChart.svelte.d.ts +2 -2
  48. package/dist/TreemapChart.svelte +2 -2
  49. package/dist/TreemapChart.svelte.d.ts +2 -2
  50. package/dist/WordCloudChart.svelte +2 -2
  51. package/dist/WordCloudChart.svelte.d.ts +2 -2
  52. package/dist/index.d.ts +1 -1
  53. package/dist/index.js +2 -2
  54. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,24 @@
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.6 (2024-06-15)
7
+
8
+ **Note:** Version bump only for package @carbon/charts-svelte
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
+
15
+ ## 1.16.5 (2024-06-15)
16
+
17
+ **Note:** Version bump only for package @carbon/charts-svelte
18
+
19
+ # Change Log
20
+
21
+ All notable changes to this project will be documented in this file. See
22
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
23
+
6
24
  ## 1.16.4 (2024-06-12)
7
25
 
8
26
  ### Bug Fixes
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: AlluvialChartOptions;
7
7
  data: ChartTabularData;
8
- chart: AlluvialChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: AlluvialChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: AreaChartOptions;
7
7
  data: ChartTabularData;
8
- chart: AreaChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: AreaChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: BarChartOptions;
7
7
  data: ChartTabularData;
8
- chart: GroupedBarChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: GroupedBarChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: BarChartOptions;
7
7
  data: ChartTabularData;
8
- chart: SimpleBarChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: SimpleBarChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: BarChartOptions;
7
7
  data: ChartTabularData;
8
- chart: StackedBarChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: StackedBarChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: BoxplotChartOptions;
7
7
  data: ChartTabularData;
8
- chart: BoxplotChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: BoxplotChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: BubbleChartOptions;
7
7
  data: ChartTabularData;
8
- chart: BubbleChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: BubbleChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: BulletChartOptions;
7
7
  data: ChartTabularData;
8
- chart: BulletChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: BulletChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: ChoroplethChartOptions;
7
7
  data: ChartTabularData;
8
- chart: ChoroplethChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: ChoroplethChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: CirclePackChartOptions;
7
7
  data: ChartTabularData;
8
- chart: CirclePackChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: CirclePackChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: ComboChartOptions;
7
7
  data: ChartTabularData;
8
- chart: ComboChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: ComboChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: DonutChartOptions;
7
7
  data: ChartTabularData;
8
- chart: DonutChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: DonutChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: GaugeChartOptions;
7
7
  data: ChartTabularData;
8
- chart: GaugeChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: GaugeChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: HeatmapChartOptions;
7
7
  data: ChartTabularData;
8
- chart: HeatmapChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: HeatmapChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: HistogramChartOptions;
7
7
  data: ChartTabularData;
8
- chart: HistogramChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: HistogramChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: LineChartOptions;
7
7
  data: ChartTabularData;
8
- chart: LineChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: LineChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: LollipopChartOptions;
7
7
  data: ChartTabularData;
8
- chart: LollipopChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: LollipopChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: MeterChartOptions;
7
7
  data: ChartTabularData;
8
- chart: MeterChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: MeterChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: PieChartOptions;
7
7
  data: ChartTabularData;
8
- chart: PieChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: PieChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: RadarChartOptions;
7
7
  data: ChartTabularData;
8
- chart: RadarChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: RadarChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: ScatterChartOptions;
7
7
  data: ChartTabularData;
8
- chart: ScatterChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: ScatterChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: StackedAreaChartOptions;
7
7
  data: ChartTabularData;
8
- chart: StackedAreaChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: StackedAreaChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: TreeChartOptions;
7
7
  data: ChartTabularData;
8
- chart: TreeChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: TreeChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: TreemapChartOptions;
7
7
  data: ChartTabularData;
8
- chart: TreemapChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: TreemapChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
@@ -4,8 +4,8 @@
4
4
  import BaseChart from "./BaseChart.svelte";
5
5
  export let options;
6
6
  export let data;
7
- export let chart;
8
- export let ref;
7
+ export let chart = void 0;
8
+ export let ref = void 0;
9
9
  </script>
10
10
 
11
11
  <BaseChart
@@ -5,8 +5,8 @@ declare const __propDef: {
5
5
  [x: string]: any;
6
6
  options: WordCloudChartOptions | WorldCloudChartOptions;
7
7
  data: ChartTabularData;
8
- chart: WordCloudChartCore;
9
- ref: HTMLDivElement;
8
+ chart?: WordCloudChartCore | undefined;
9
+ ref?: HTMLDivElement | undefined;
10
10
  };
11
11
  events: {
12
12
  load: CustomEvent<null>;
package/dist/index.d.ts CHANGED
@@ -28,9 +28,9 @@ export type { ChartTabularData, ChartOptions, AlluvialChartOptions, AreaChartOpt
28
28
  * @deprecated Use `WordCloudChartOptions` instead.
29
29
  */
30
30
  WorldCloudChartOptions } from '@carbon/charts';
31
- export { Alignments, ChartTheme, ScaleTypes } from '@carbon/charts';
32
31
  export { AlluvialChart, AreaChart, BarChartGrouped, BarChartSimple, BarChartStacked, BoxplotChart, BubbleChart, BulletChart, ChoroplethChart,
33
32
  /**
34
33
  * @deprecated Use `ChoroplethChart` instead.
35
34
  */
36
35
  ChoroplethChart as ExperimentalChoroplethChart, CirclePackChart, ComboChart, DonutChart, GaugeChart, HeatmapChart, HistogramChart, LineChart, LollipopChart, MeterChart, PieChart, RadarChart, ScatterChart, StackedAreaChart, TreeChart, TreemapChart, WordCloudChart };
36
+ export { Alignments, AreaEvent, ArrowDirections, AxisEvent, AxisFlavor, AxisPositions, AxisTitleOrientations, BarEvent, BoxplotEvent, CalloutDirections, CanvasZoomEvent, CartesianOrientations, ChartEvent, ChartTheme, ChartTypes, ColorClassNameTypes, ColorLegendType, DividerStatus, DominantBaseline, GaugeEvent, GaugeTypes, LayoutAlignItems, LayoutDirection, LayoutGrowth, LegendItemType, LegendOrientations, LegendPositions, LineEvent, ModalEvent, ModelEvent, PieEvent, Projection, RadarEvent, RenderTypes, ScaleTypes, ScatterEvent, Skeletons, Statuses, TextAnchor, ThresholdEvent, TickRotations, ToolbarControlTypes, TooltipEvent, TruncationTypes, TreeEvent, TreemapEvent, TreeTypes, WordCloudEvent, ZoombarEvent, ZoomDomainEvent, ZoomBarTypes } from '@carbon/charts';
package/dist/index.js CHANGED
@@ -23,10 +23,10 @@ import StackedAreaChart from './StackedAreaChart.svelte';
23
23
  import TreeChart from './TreeChart.svelte';
24
24
  import TreemapChart from './TreemapChart.svelte';
25
25
  import WordCloudChart from './WordCloudChart.svelte';
26
- // Commonly-used enums
27
- export { Alignments, ChartTheme, ScaleTypes } from '@carbon/charts';
28
26
  export { AlluvialChart, AreaChart, BarChartGrouped, BarChartSimple, BarChartStacked, BoxplotChart, BubbleChart, BulletChart, ChoroplethChart,
29
27
  /**
30
28
  * @deprecated Use `ChoroplethChart` instead.
31
29
  */
32
30
  ChoroplethChart as ExperimentalChoroplethChart, CirclePackChart, ComboChart, DonutChart, GaugeChart, HeatmapChart, HistogramChart, LineChart, LollipopChart, MeterChart, PieChart, RadarChart, ScatterChart, StackedAreaChart, TreeChart, TreemapChart, WordCloudChart };
31
+ // All enums
32
+ export { Alignments, AreaEvent, ArrowDirections, AxisEvent, AxisFlavor, AxisPositions, AxisTitleOrientations, BarEvent, BoxplotEvent, CalloutDirections, CanvasZoomEvent, CartesianOrientations, ChartEvent, ChartTheme, ChartTypes, ColorClassNameTypes, ColorLegendType, DividerStatus, DominantBaseline, GaugeEvent, GaugeTypes, LayoutAlignItems, LayoutDirection, LayoutGrowth, LegendItemType, LegendOrientations, LegendPositions, LineEvent, ModalEvent, ModelEvent, PieEvent, Projection, RadarEvent, RenderTypes, ScaleTypes, ScatterEvent, Skeletons, Statuses, TextAnchor, ThresholdEvent, TickRotations, ToolbarControlTypes, TooltipEvent, TruncationTypes, TreeEvent, TreemapEvent, TreeTypes, WordCloudEvent, ZoombarEvent, ZoomDomainEvent, ZoomBarTypes } from '@carbon/charts';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carbon/charts-svelte",
3
- "version": "1.16.4",
3
+ "version": "1.16.6",
4
4
  "description": "Carbon Charts component library for Svelte",
5
5
  "scripts": {
6
6
  "postinstall": "ibmtelemetry --config=telemetry.yml",
@@ -43,17 +43,17 @@
43
43
  "svelte": "^3.31.0 || ^4.0.0"
44
44
  },
45
45
  "dependencies": {
46
- "@carbon/charts": "1.16.4",
46
+ "@carbon/charts": "1.16.6",
47
47
  "@ibm/telemetry-js": "^1.5.2"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@stackblitz/sdk": "^1.10.0",
51
- "@sveltejs/adapter-auto": "^3.2.1",
52
- "@sveltejs/kit": "^2.5.10",
53
- "@sveltejs/package": "^2.3.1",
51
+ "@sveltejs/adapter-auto": "^3.2.2",
52
+ "@sveltejs/kit": "^2.5.15",
53
+ "@sveltejs/package": "^2.3.2",
54
54
  "@sveltejs/vite-plugin-svelte": "^3.1.1",
55
55
  "concurrently": "^8.2.2",
56
- "eslint": "^9.4.0",
56
+ "eslint": "^9.5.0",
57
57
  "prettier": "^3.3.2",
58
58
  "publint": "^0.2.8",
59
59
  "storybook": "^7.6.19",
@@ -61,7 +61,7 @@
61
61
  "svelte-check": "^3.8.0",
62
62
  "tslib": "^2.6.3",
63
63
  "typescript": "^5.4.5",
64
- "vite": "^5.2.13"
64
+ "vite": "^5.3.1"
65
65
  },
66
66
  "publishConfig": {
67
67
  "access": "public"
@@ -118,5 +118,5 @@
118
118
  "data",
119
119
  "typescript"
120
120
  ],
121
- "gitHead": "90b76c87d3aa0042e050e9862ed2ebad630e580c"
121
+ "gitHead": "1bdbc11f311e54dc15ce1f200f950197a536b44c"
122
122
  }