@carbon/charts-svelte 1.22.21 → 1.23.1
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 +22 -0
- package/dist/AlluvialChart.svelte +2 -0
- package/dist/AlluvialChart.svelte.d.ts +1 -0
- package/dist/AreaChart.svelte +2 -0
- package/dist/AreaChart.svelte.d.ts +1 -0
- package/dist/BarChartGrouped.svelte +2 -0
- package/dist/BarChartGrouped.svelte.d.ts +1 -0
- package/dist/BarChartSimple.svelte +2 -0
- package/dist/BarChartSimple.svelte.d.ts +1 -0
- package/dist/BarChartStacked.svelte +2 -0
- package/dist/BarChartStacked.svelte.d.ts +1 -0
- package/dist/BaseChart.svelte +4 -0
- package/dist/BaseChart.svelte.d.ts +1 -0
- package/dist/BoxplotChart.svelte +2 -0
- package/dist/BoxplotChart.svelte.d.ts +1 -0
- package/dist/BubbleChart.svelte +2 -0
- package/dist/BubbleChart.svelte.d.ts +1 -0
- package/dist/BulletChart.svelte +2 -0
- package/dist/BulletChart.svelte.d.ts +1 -0
- package/dist/ChoroplethChart.svelte +2 -0
- package/dist/ChoroplethChart.svelte.d.ts +1 -0
- package/dist/CirclePackChart.svelte +2 -0
- package/dist/CirclePackChart.svelte.d.ts +1 -0
- package/dist/ComboChart.svelte +2 -0
- package/dist/ComboChart.svelte.d.ts +1 -0
- package/dist/DonutChart.svelte +2 -0
- package/dist/DonutChart.svelte.d.ts +1 -0
- package/dist/GaugeChart.svelte +2 -0
- package/dist/GaugeChart.svelte.d.ts +1 -0
- package/dist/HeatmapChart.svelte +2 -0
- package/dist/HeatmapChart.svelte.d.ts +1 -0
- package/dist/HistogramChart.svelte +2 -0
- package/dist/HistogramChart.svelte.d.ts +1 -0
- package/dist/LineChart.svelte +2 -0
- package/dist/LineChart.svelte.d.ts +1 -0
- package/dist/LollipopChart.svelte +2 -0
- package/dist/LollipopChart.svelte.d.ts +1 -0
- package/dist/MeterChart.svelte +2 -0
- package/dist/MeterChart.svelte.d.ts +1 -0
- package/dist/PieChart.svelte +2 -0
- package/dist/PieChart.svelte.d.ts +1 -0
- package/dist/RadarChart.svelte +2 -0
- package/dist/RadarChart.svelte.d.ts +1 -0
- package/dist/ScatterChart.svelte +2 -0
- package/dist/ScatterChart.svelte.d.ts +1 -0
- package/dist/StackedAreaChart.svelte +2 -0
- package/dist/StackedAreaChart.svelte.d.ts +1 -0
- package/dist/TreeChart.svelte +2 -0
- package/dist/TreeChart.svelte.d.ts +1 -0
- package/dist/TreemapChart.svelte +2 -0
- package/dist/TreemapChart.svelte.d.ts +1 -0
- package/dist/WordCloudChart.svelte +2 -0
- package/dist/WordCloudChart.svelte.d.ts +1 -0
- package/dist/styles.css +0 -198
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +0 -197
- package/dist/styles.min.css.map +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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.23.1 (2025-04-04)
|
|
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.23.0 (2025-03-05)
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
- **docs:** add analytics instrumentation doc
|
|
20
|
+
([#1966](https://github.com/carbon-design-system/carbon-charts/issues/1966))
|
|
21
|
+
([f0da6ae](https://github.com/carbon-design-system/carbon-charts/commit/f0da6aef3d6d51b49235069c863d92bbd5b9e310))
|
|
22
|
+
|
|
23
|
+
# Change Log
|
|
24
|
+
|
|
25
|
+
All notable changes to this project will be documented in this file. See
|
|
26
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
27
|
+
|
|
6
28
|
## 1.22.21 (2025-03-05)
|
|
7
29
|
|
|
8
30
|
### Bug Fixes
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AlluvialChart as AlluvialChartCore, type AlluvialChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Alluvial chart component. */
|
|
3
4
|
declare const AlluvialChart: import('svelte').Component<
|
|
4
5
|
ChartProps<AlluvialChartCore, AlluvialChartOptions>,
|
|
5
6
|
{},
|
package/dist/AreaChart.svelte
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AreaChart as AreaChartCore, type AreaChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Area chart component. */
|
|
3
4
|
declare const AreaChart: import('svelte').Component<
|
|
4
5
|
ChartProps<AreaChartCore, AreaChartOptions>,
|
|
5
6
|
{},
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { GroupedBarChart as GroupedBarChartCore, type BarChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Grouped bar chart component. */
|
|
3
4
|
declare const BarChartGrouped: import('svelte').Component<
|
|
4
5
|
ChartProps<GroupedBarChartCore, BarChartOptions>,
|
|
5
6
|
{},
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { SimpleBarChart as SimpleBarChartCore, type BarChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Bar chart component. */
|
|
3
4
|
declare const BarChartSimple: import('svelte').Component<
|
|
4
5
|
ChartProps<SimpleBarChartCore, BarChartOptions>,
|
|
5
6
|
{},
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { StackedBarChart as StackedBarChartCore, type BarChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Stacked bar chart component. */
|
|
3
4
|
declare const BarChartStacked: import('svelte').Component<
|
|
4
5
|
ChartProps<StackedBarChartCore, BarChartOptions>,
|
|
5
6
|
{},
|
package/dist/BaseChart.svelte
CHANGED
|
@@ -28,6 +28,7 @@ interface $$IsomorphicComponent {
|
|
|
28
28
|
): ReturnType<__sveltets_Render<ChartType, ChartOptionType>['exports']>
|
|
29
29
|
z_$$bindings?: ReturnType<__sveltets_Render<any, any>['bindings']>
|
|
30
30
|
}
|
|
31
|
+
/** Base chart component from which all charts are derived. */
|
|
31
32
|
declare const BaseChart: $$IsomorphicComponent
|
|
32
33
|
type BaseChart<ChartType extends Charts, ChartOptionType extends BaseChartOptions> = InstanceType<
|
|
33
34
|
typeof BaseChart<ChartType, ChartOptionType>
|
package/dist/BoxplotChart.svelte
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BoxplotChart as BoxplotChartCore } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Boxplot chart component. */
|
|
3
4
|
declare const BoxplotChart: import('svelte').Component<
|
|
4
5
|
ChartProps<BoxplotChartCore, import('@carbon/charts').AxisChartOptions>,
|
|
5
6
|
{},
|
package/dist/BubbleChart.svelte
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BubbleChart as BubbleChartCore, type BubbleChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Bubble chart component. */
|
|
3
4
|
declare const BubbleChart: import('svelte').Component<
|
|
4
5
|
ChartProps<BubbleChartCore, BubbleChartOptions>,
|
|
5
6
|
{},
|
package/dist/BulletChart.svelte
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BulletChart as BulletChartCore, type BulletChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Bullet chart component. */
|
|
3
4
|
declare const BulletChart: import('svelte').Component<
|
|
4
5
|
ChartProps<BulletChartCore, BulletChartOptions>,
|
|
5
6
|
{},
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ChoroplethChart as ChoroplethChartCore, type ChoroplethChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Choropleth / geographic chart component. */
|
|
3
4
|
declare const ChoroplethChart: import('svelte').Component<
|
|
4
5
|
ChartProps<ChoroplethChartCore, ChoroplethChartOptions>,
|
|
5
6
|
{},
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { CirclePackChart as CirclePackChartCore, type CirclePackChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Circle pack chart component. */
|
|
3
4
|
declare const CirclePackChart: import('svelte').Component<
|
|
4
5
|
ChartProps<CirclePackChartCore, CirclePackChartOptions>,
|
|
5
6
|
{},
|
package/dist/ComboChart.svelte
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ComboChart as ComboChartCore, type ComboChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Combo chart component - supports mixing types such as bar and line charts. */
|
|
3
4
|
declare const ComboChart: import('svelte').Component<
|
|
4
5
|
ChartProps<ComboChartCore, ComboChartOptions>,
|
|
5
6
|
{},
|
package/dist/DonutChart.svelte
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DonutChart as DonutChartCore, type DonutChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Donut chart component. */
|
|
3
4
|
declare const DonutChart: import('svelte').Component<
|
|
4
5
|
ChartProps<DonutChartCore, DonutChartOptions>,
|
|
5
6
|
{},
|
package/dist/GaugeChart.svelte
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { GaugeChart as GaugeChartCore, type GaugeChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Guage chart component. */
|
|
3
4
|
declare const GaugeChart: import('svelte').Component<
|
|
4
5
|
ChartProps<GaugeChartCore, GaugeChartOptions>,
|
|
5
6
|
{},
|
package/dist/HeatmapChart.svelte
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { HeatmapChart as HeatmapChartCore, type HeatmapChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Heatmap chart component. */
|
|
3
4
|
declare const HeatmapChart: import('svelte').Component<
|
|
4
5
|
ChartProps<HeatmapChartCore, HeatmapChartOptions>,
|
|
5
6
|
{},
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { HistogramChart as HistogramChartCore, type HistogramChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Histogram chart component. */
|
|
3
4
|
declare const HistogramChart: import('svelte').Component<
|
|
4
5
|
ChartProps<HistogramChartCore, HistogramChartOptions>,
|
|
5
6
|
{},
|
package/dist/LineChart.svelte
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { LineChart as LineChartCore, type LineChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Line chart component. */
|
|
3
4
|
declare const LineChart: import('svelte').Component<
|
|
4
5
|
ChartProps<LineChartCore, LineChartOptions>,
|
|
5
6
|
{},
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { LollipopChart as LollipopChartCore } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Lollipop chart component. */
|
|
3
4
|
declare const LollipopChart: import('svelte').Component<
|
|
4
5
|
ChartProps<LollipopChartCore, import('@carbon/charts').ScatterChartOptions>,
|
|
5
6
|
{},
|
package/dist/MeterChart.svelte
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { MeterChart as MeterChartCore, type MeterChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Meter chart component. */
|
|
3
4
|
declare const MeterChart: import('svelte').Component<
|
|
4
5
|
ChartProps<MeterChartCore, MeterChartOptions>,
|
|
5
6
|
{},
|
package/dist/PieChart.svelte
CHANGED
package/dist/RadarChart.svelte
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { RadarChart as RadarChartCore, type RadarChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Radar / kiviat chart component. */
|
|
3
4
|
declare const RadarChart: import('svelte').Component<
|
|
4
5
|
ChartProps<RadarChartCore, RadarChartOptions>,
|
|
5
6
|
{},
|
package/dist/ScatterChart.svelte
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ScatterChart as ScatterChartCore, type ScatterChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Scatter chart component. */
|
|
3
4
|
declare const ScatterChart: import('svelte').Component<
|
|
4
5
|
ChartProps<ScatterChartCore, ScatterChartOptions>,
|
|
5
6
|
{},
|
|
@@ -3,6 +3,7 @@ import {
|
|
|
3
3
|
type StackedAreaChartOptions
|
|
4
4
|
} from '@carbon/charts'
|
|
5
5
|
import type { ChartProps } from './interfaces'
|
|
6
|
+
/** Stacked area chart component. */
|
|
6
7
|
declare const StackedAreaChart: import('svelte').Component<
|
|
7
8
|
ChartProps<StackedAreaChartCore, StackedAreaChartOptions>,
|
|
8
9
|
{},
|
package/dist/TreeChart.svelte
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { TreeChart as TreeChartCore, type TreeChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Tree chart component. */
|
|
3
4
|
declare const TreeChart: import('svelte').Component<
|
|
4
5
|
ChartProps<TreeChartCore, TreeChartOptions>,
|
|
5
6
|
{},
|
package/dist/TreemapChart.svelte
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { TreemapChart as TreemapChartCore } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Treemap chart component. */
|
|
3
4
|
declare const TreemapChart: import('svelte').Component<
|
|
4
5
|
ChartProps<TreemapChartCore, import('@carbon/charts').BaseChartOptions>,
|
|
5
6
|
{},
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { WordCloudChart as WordCloudChartCore, type WordCloudChartOptions } from '@carbon/charts'
|
|
2
2
|
import type { ChartProps } from './interfaces'
|
|
3
|
+
/** Word cloud chart component. */
|
|
3
4
|
declare const WordCloudChart: import('svelte').Component<
|
|
4
5
|
ChartProps<WordCloudChartCore, WordCloudChartOptions>,
|
|
5
6
|
{},
|