@carbon/charts-svelte 1.9.0-next.0 → 1.9.0-next.2
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/README.md +2 -2
- package/dist/AlluvialChart.svelte.d.ts +25 -25
- package/dist/AreaChart.svelte.d.ts +25 -25
- package/dist/BarChartGrouped.svelte.d.ts +25 -25
- package/dist/BarChartSimple.svelte.d.ts +25 -25
- package/dist/BarChartStacked.svelte.d.ts +25 -25
- package/dist/BaseChart.svelte.d.ts +29 -29
- package/dist/BoxplotChart.svelte.d.ts +25 -25
- package/dist/BubbleChart.svelte.d.ts +25 -25
- package/dist/BulletChart.svelte.d.ts +25 -25
- package/dist/ChoroplethChart.svelte.d.ts +25 -25
- package/dist/CirclePackChart.svelte.d.ts +25 -25
- package/dist/ComboChart.svelte.d.ts +25 -25
- package/dist/DonutChart.svelte.d.ts +25 -25
- package/dist/GaugeChart.svelte.d.ts +25 -25
- package/dist/HeatmapChart.svelte.d.ts +25 -25
- package/dist/HistogramChart.svelte.d.ts +25 -25
- package/dist/LineChart.svelte.d.ts +25 -25
- package/dist/LollipopChart.svelte.d.ts +25 -25
- package/dist/MeterChart.svelte.d.ts +25 -25
- package/dist/PieChart.svelte.d.ts +25 -25
- package/dist/RadarChart.svelte.d.ts +25 -25
- package/dist/ScatterChart.svelte.d.ts +25 -25
- package/dist/StackedAreaChart.svelte.d.ts +25 -25
- package/dist/TreeChart.svelte.d.ts +25 -25
- package/dist/TreemapChart.svelte.d.ts +25 -25
- package/dist/WordCloudChart.svelte.d.ts +25 -25
- package/dist/index.d.ts +26 -26
- package/dist/styles.css +0 -22118
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +1 -1
- package/dist/styles.min.css.map +1 -1
- package/package.json +24 -21
package/README.md
CHANGED
|
@@ -17,13 +17,13 @@ Please direct all questions regarding support, bug fixes, and feature requests t
|
|
|
17
17
|
Run the following command using [npm](https://www.npmjs.com/):
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npm install -D @carbon/charts-svelte @carbon/styles d3
|
|
20
|
+
npm install -D @carbon/charts-svelte @carbon/styles d3 d3-cloud d3-sankey
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
If you prefer [Yarn](https://yarnpkg.com/en/), use the following command instead:
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
yarn add -D @carbon/charts-svelte @carbon/styles d3
|
|
26
|
+
yarn add -D @carbon/charts-svelte @carbon/styles d3 d3-cloud d3-sankey
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
## Setup
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { SvelteComponentTyped } from "svelte";
|
|
2
|
-
import { AlluvialChart as AlluvialChartCore, AlluvialChartOptions, ChartTabularData } from '@carbon/charts';
|
|
3
|
-
declare const __propDef: {
|
|
4
|
-
props: {
|
|
5
|
-
[x: string]: any;
|
|
6
|
-
chart: AlluvialChartCore;
|
|
7
|
-
options: AlluvialChartOptions;
|
|
8
|
-
data: ChartTabularData;
|
|
9
|
-
ref: HTMLDivElement;
|
|
10
|
-
};
|
|
11
|
-
events: {
|
|
12
|
-
load: CustomEvent<any>;
|
|
13
|
-
update: CustomEvent<any>;
|
|
14
|
-
destroy: CustomEvent<any>;
|
|
15
|
-
} & {
|
|
16
|
-
[evt: string]: CustomEvent<any>;
|
|
17
|
-
};
|
|
18
|
-
slots: {};
|
|
19
|
-
};
|
|
20
|
-
export type AlluvialChartProps = typeof __propDef.props;
|
|
21
|
-
export type AlluvialChartEvents = typeof __propDef.events;
|
|
22
|
-
export type AlluvialChartSlots = typeof __propDef.slots;
|
|
23
|
-
export default class AlluvialChart extends SvelteComponentTyped<AlluvialChartProps, AlluvialChartEvents, AlluvialChartSlots> {
|
|
24
|
-
}
|
|
25
|
-
export {};
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import { AlluvialChart as AlluvialChartCore, type AlluvialChartOptions, type ChartTabularData } from '@carbon/charts';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
chart: AlluvialChartCore;
|
|
7
|
+
options: AlluvialChartOptions;
|
|
8
|
+
data: ChartTabularData;
|
|
9
|
+
ref: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
events: {
|
|
12
|
+
load: CustomEvent<any>;
|
|
13
|
+
update: CustomEvent<any>;
|
|
14
|
+
destroy: CustomEvent<any>;
|
|
15
|
+
} & {
|
|
16
|
+
[evt: string]: CustomEvent<any>;
|
|
17
|
+
};
|
|
18
|
+
slots: {};
|
|
19
|
+
};
|
|
20
|
+
export type AlluvialChartProps = typeof __propDef.props;
|
|
21
|
+
export type AlluvialChartEvents = typeof __propDef.events;
|
|
22
|
+
export type AlluvialChartSlots = typeof __propDef.slots;
|
|
23
|
+
export default class AlluvialChart extends SvelteComponentTyped<AlluvialChartProps, AlluvialChartEvents, AlluvialChartSlots> {
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { SvelteComponentTyped } from "svelte";
|
|
2
|
-
import { AreaChart as AreaChartCore, AreaChartOptions, ChartTabularData } from '@carbon/charts';
|
|
3
|
-
declare const __propDef: {
|
|
4
|
-
props: {
|
|
5
|
-
[x: string]: any;
|
|
6
|
-
chart: AreaChartCore;
|
|
7
|
-
options: AreaChartOptions;
|
|
8
|
-
data: ChartTabularData;
|
|
9
|
-
ref: HTMLDivElement;
|
|
10
|
-
};
|
|
11
|
-
events: {
|
|
12
|
-
load: CustomEvent<any>;
|
|
13
|
-
update: CustomEvent<any>;
|
|
14
|
-
destroy: CustomEvent<any>;
|
|
15
|
-
} & {
|
|
16
|
-
[evt: string]: CustomEvent<any>;
|
|
17
|
-
};
|
|
18
|
-
slots: {};
|
|
19
|
-
};
|
|
20
|
-
export type AreaChartProps = typeof __propDef.props;
|
|
21
|
-
export type AreaChartEvents = typeof __propDef.events;
|
|
22
|
-
export type AreaChartSlots = typeof __propDef.slots;
|
|
23
|
-
export default class AreaChart extends SvelteComponentTyped<AreaChartProps, AreaChartEvents, AreaChartSlots> {
|
|
24
|
-
}
|
|
25
|
-
export {};
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import { AreaChart as AreaChartCore, type AreaChartOptions, type ChartTabularData } from '@carbon/charts';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
chart: AreaChartCore;
|
|
7
|
+
options: AreaChartOptions;
|
|
8
|
+
data: ChartTabularData;
|
|
9
|
+
ref: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
events: {
|
|
12
|
+
load: CustomEvent<any>;
|
|
13
|
+
update: CustomEvent<any>;
|
|
14
|
+
destroy: CustomEvent<any>;
|
|
15
|
+
} & {
|
|
16
|
+
[evt: string]: CustomEvent<any>;
|
|
17
|
+
};
|
|
18
|
+
slots: {};
|
|
19
|
+
};
|
|
20
|
+
export type AreaChartProps = typeof __propDef.props;
|
|
21
|
+
export type AreaChartEvents = typeof __propDef.events;
|
|
22
|
+
export type AreaChartSlots = typeof __propDef.slots;
|
|
23
|
+
export default class AreaChart extends SvelteComponentTyped<AreaChartProps, AreaChartEvents, AreaChartSlots> {
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { SvelteComponentTyped } from "svelte";
|
|
2
|
-
import { GroupedBarChart as GroupedBarChartCore, BarChartOptions, ChartTabularData } from '@carbon/charts';
|
|
3
|
-
declare const __propDef: {
|
|
4
|
-
props: {
|
|
5
|
-
[x: string]: any;
|
|
6
|
-
chart: GroupedBarChartCore;
|
|
7
|
-
options: BarChartOptions;
|
|
8
|
-
data: ChartTabularData;
|
|
9
|
-
ref: HTMLDivElement;
|
|
10
|
-
};
|
|
11
|
-
events: {
|
|
12
|
-
load: CustomEvent<any>;
|
|
13
|
-
update: CustomEvent<any>;
|
|
14
|
-
destroy: CustomEvent<any>;
|
|
15
|
-
} & {
|
|
16
|
-
[evt: string]: CustomEvent<any>;
|
|
17
|
-
};
|
|
18
|
-
slots: {};
|
|
19
|
-
};
|
|
20
|
-
export type BarChartGroupedProps = typeof __propDef.props;
|
|
21
|
-
export type BarChartGroupedEvents = typeof __propDef.events;
|
|
22
|
-
export type BarChartGroupedSlots = typeof __propDef.slots;
|
|
23
|
-
export default class BarChartGrouped extends SvelteComponentTyped<BarChartGroupedProps, BarChartGroupedEvents, BarChartGroupedSlots> {
|
|
24
|
-
}
|
|
25
|
-
export {};
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import { GroupedBarChart as GroupedBarChartCore, type BarChartOptions, type ChartTabularData } from '@carbon/charts';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
chart: GroupedBarChartCore;
|
|
7
|
+
options: BarChartOptions;
|
|
8
|
+
data: ChartTabularData;
|
|
9
|
+
ref: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
events: {
|
|
12
|
+
load: CustomEvent<any>;
|
|
13
|
+
update: CustomEvent<any>;
|
|
14
|
+
destroy: CustomEvent<any>;
|
|
15
|
+
} & {
|
|
16
|
+
[evt: string]: CustomEvent<any>;
|
|
17
|
+
};
|
|
18
|
+
slots: {};
|
|
19
|
+
};
|
|
20
|
+
export type BarChartGroupedProps = typeof __propDef.props;
|
|
21
|
+
export type BarChartGroupedEvents = typeof __propDef.events;
|
|
22
|
+
export type BarChartGroupedSlots = typeof __propDef.slots;
|
|
23
|
+
export default class BarChartGrouped extends SvelteComponentTyped<BarChartGroupedProps, BarChartGroupedEvents, BarChartGroupedSlots> {
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { SvelteComponentTyped } from "svelte";
|
|
2
|
-
import { SimpleBarChart as SimpleBarChartCore, BarChartOptions, ChartTabularData } from '@carbon/charts';
|
|
3
|
-
declare const __propDef: {
|
|
4
|
-
props: {
|
|
5
|
-
[x: string]: any;
|
|
6
|
-
chart: SimpleBarChartCore;
|
|
7
|
-
options: BarChartOptions;
|
|
8
|
-
data: ChartTabularData;
|
|
9
|
-
ref: HTMLDivElement;
|
|
10
|
-
};
|
|
11
|
-
events: {
|
|
12
|
-
load: CustomEvent<any>;
|
|
13
|
-
update: CustomEvent<any>;
|
|
14
|
-
destroy: CustomEvent<any>;
|
|
15
|
-
} & {
|
|
16
|
-
[evt: string]: CustomEvent<any>;
|
|
17
|
-
};
|
|
18
|
-
slots: {};
|
|
19
|
-
};
|
|
20
|
-
export type BarChartSimpleProps = typeof __propDef.props;
|
|
21
|
-
export type BarChartSimpleEvents = typeof __propDef.events;
|
|
22
|
-
export type BarChartSimpleSlots = typeof __propDef.slots;
|
|
23
|
-
export default class BarChartSimple extends SvelteComponentTyped<BarChartSimpleProps, BarChartSimpleEvents, BarChartSimpleSlots> {
|
|
24
|
-
}
|
|
25
|
-
export {};
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import { SimpleBarChart as SimpleBarChartCore, type BarChartOptions, type ChartTabularData } from '@carbon/charts';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
chart: SimpleBarChartCore;
|
|
7
|
+
options: BarChartOptions;
|
|
8
|
+
data: ChartTabularData;
|
|
9
|
+
ref: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
events: {
|
|
12
|
+
load: CustomEvent<any>;
|
|
13
|
+
update: CustomEvent<any>;
|
|
14
|
+
destroy: CustomEvent<any>;
|
|
15
|
+
} & {
|
|
16
|
+
[evt: string]: CustomEvent<any>;
|
|
17
|
+
};
|
|
18
|
+
slots: {};
|
|
19
|
+
};
|
|
20
|
+
export type BarChartSimpleProps = typeof __propDef.props;
|
|
21
|
+
export type BarChartSimpleEvents = typeof __propDef.events;
|
|
22
|
+
export type BarChartSimpleSlots = typeof __propDef.slots;
|
|
23
|
+
export default class BarChartSimple extends SvelteComponentTyped<BarChartSimpleProps, BarChartSimpleEvents, BarChartSimpleSlots> {
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { SvelteComponentTyped } from "svelte";
|
|
2
|
-
import { StackedBarChart as StackedBarChartCore, BarChartOptions, ChartTabularData } from '@carbon/charts';
|
|
3
|
-
declare const __propDef: {
|
|
4
|
-
props: {
|
|
5
|
-
[x: string]: any;
|
|
6
|
-
chart: StackedBarChartCore;
|
|
7
|
-
options: BarChartOptions;
|
|
8
|
-
data: ChartTabularData;
|
|
9
|
-
ref: HTMLDivElement;
|
|
10
|
-
};
|
|
11
|
-
events: {
|
|
12
|
-
load: CustomEvent<any>;
|
|
13
|
-
update: CustomEvent<any>;
|
|
14
|
-
destroy: CustomEvent<any>;
|
|
15
|
-
} & {
|
|
16
|
-
[evt: string]: CustomEvent<any>;
|
|
17
|
-
};
|
|
18
|
-
slots: {};
|
|
19
|
-
};
|
|
20
|
-
export type BarChartStackedProps = typeof __propDef.props;
|
|
21
|
-
export type BarChartStackedEvents = typeof __propDef.events;
|
|
22
|
-
export type BarChartStackedSlots = typeof __propDef.slots;
|
|
23
|
-
export default class BarChartStacked extends SvelteComponentTyped<BarChartStackedProps, BarChartStackedEvents, BarChartStackedSlots> {
|
|
24
|
-
}
|
|
25
|
-
export {};
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import { StackedBarChart as StackedBarChartCore, type BarChartOptions, type ChartTabularData } from '@carbon/charts';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
chart: StackedBarChartCore;
|
|
7
|
+
options: BarChartOptions;
|
|
8
|
+
data: ChartTabularData;
|
|
9
|
+
ref: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
events: {
|
|
12
|
+
load: CustomEvent<any>;
|
|
13
|
+
update: CustomEvent<any>;
|
|
14
|
+
destroy: CustomEvent<any>;
|
|
15
|
+
} & {
|
|
16
|
+
[evt: string]: CustomEvent<any>;
|
|
17
|
+
};
|
|
18
|
+
slots: {};
|
|
19
|
+
};
|
|
20
|
+
export type BarChartStackedProps = typeof __propDef.props;
|
|
21
|
+
export type BarChartStackedEvents = typeof __propDef.events;
|
|
22
|
+
export type BarChartStackedSlots = typeof __propDef.slots;
|
|
23
|
+
export default class BarChartStacked extends SvelteComponentTyped<BarChartStackedProps, BarChartStackedEvents, BarChartStackedSlots> {
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import { SvelteComponentTyped } from "svelte";
|
|
2
|
-
import { Charts, ChartOptions, ChartTabularData } from '@carbon/charts';
|
|
3
|
-
declare const __propDef: {
|
|
4
|
-
props: {
|
|
5
|
-
[x: string]: any;
|
|
6
|
-
data?: ChartTabularData;
|
|
7
|
-
options: ChartOptions;
|
|
8
|
-
Chart: new (ref: HTMLDivElement, { options, data }: {
|
|
9
|
-
options: ChartOptions;
|
|
10
|
-
data: ChartTabularData;
|
|
11
|
-
}) => Charts;
|
|
12
|
-
chart: Charts;
|
|
13
|
-
ref: HTMLDivElement;
|
|
14
|
-
};
|
|
15
|
-
events: {
|
|
16
|
-
load: CustomEvent<any>;
|
|
17
|
-
update: CustomEvent<any>;
|
|
18
|
-
destroy: CustomEvent<any>;
|
|
19
|
-
} & {
|
|
20
|
-
[evt: string]: CustomEvent<any>;
|
|
21
|
-
};
|
|
22
|
-
slots: {};
|
|
23
|
-
};
|
|
24
|
-
export type BaseChartProps = typeof __propDef.props;
|
|
25
|
-
export type BaseChartEvents = typeof __propDef.events;
|
|
26
|
-
export type BaseChartSlots = typeof __propDef.slots;
|
|
27
|
-
export default class BaseChart extends SvelteComponentTyped<BaseChartProps, BaseChartEvents, BaseChartSlots> {
|
|
28
|
-
}
|
|
29
|
-
export {};
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import type { Charts, ChartOptions, ChartTabularData } from '@carbon/charts';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
data?: ChartTabularData;
|
|
7
|
+
options: ChartOptions;
|
|
8
|
+
Chart: new (ref: HTMLDivElement, { options, data }: {
|
|
9
|
+
options: ChartOptions;
|
|
10
|
+
data: ChartTabularData;
|
|
11
|
+
}) => Charts;
|
|
12
|
+
chart: Charts;
|
|
13
|
+
ref: HTMLDivElement;
|
|
14
|
+
};
|
|
15
|
+
events: {
|
|
16
|
+
load: CustomEvent<any>;
|
|
17
|
+
update: CustomEvent<any>;
|
|
18
|
+
destroy: CustomEvent<any>;
|
|
19
|
+
} & {
|
|
20
|
+
[evt: string]: CustomEvent<any>;
|
|
21
|
+
};
|
|
22
|
+
slots: {};
|
|
23
|
+
};
|
|
24
|
+
export type BaseChartProps = typeof __propDef.props;
|
|
25
|
+
export type BaseChartEvents = typeof __propDef.events;
|
|
26
|
+
export type BaseChartSlots = typeof __propDef.slots;
|
|
27
|
+
export default class BaseChart extends SvelteComponentTyped<BaseChartProps, BaseChartEvents, BaseChartSlots> {
|
|
28
|
+
}
|
|
29
|
+
export {};
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { SvelteComponentTyped } from "svelte";
|
|
2
|
-
import { BoxplotChart as BoxplotChartCore, BoxplotChartOptions, ChartTabularData } from '@carbon/charts';
|
|
3
|
-
declare const __propDef: {
|
|
4
|
-
props: {
|
|
5
|
-
[x: string]: any;
|
|
6
|
-
chart: BoxplotChartCore;
|
|
7
|
-
options: BoxplotChartOptions;
|
|
8
|
-
data: ChartTabularData;
|
|
9
|
-
ref: HTMLDivElement;
|
|
10
|
-
};
|
|
11
|
-
events: {
|
|
12
|
-
load: CustomEvent<any>;
|
|
13
|
-
update: CustomEvent<any>;
|
|
14
|
-
destroy: CustomEvent<any>;
|
|
15
|
-
} & {
|
|
16
|
-
[evt: string]: CustomEvent<any>;
|
|
17
|
-
};
|
|
18
|
-
slots: {};
|
|
19
|
-
};
|
|
20
|
-
export type BoxplotChartProps = typeof __propDef.props;
|
|
21
|
-
export type BoxplotChartEvents = typeof __propDef.events;
|
|
22
|
-
export type BoxplotChartSlots = typeof __propDef.slots;
|
|
23
|
-
export default class BoxplotChart extends SvelteComponentTyped<BoxplotChartProps, BoxplotChartEvents, BoxplotChartSlots> {
|
|
24
|
-
}
|
|
25
|
-
export {};
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import { BoxplotChart as BoxplotChartCore, type BoxplotChartOptions, type ChartTabularData } from '@carbon/charts';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
chart: BoxplotChartCore;
|
|
7
|
+
options: BoxplotChartOptions;
|
|
8
|
+
data: ChartTabularData;
|
|
9
|
+
ref: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
events: {
|
|
12
|
+
load: CustomEvent<any>;
|
|
13
|
+
update: CustomEvent<any>;
|
|
14
|
+
destroy: CustomEvent<any>;
|
|
15
|
+
} & {
|
|
16
|
+
[evt: string]: CustomEvent<any>;
|
|
17
|
+
};
|
|
18
|
+
slots: {};
|
|
19
|
+
};
|
|
20
|
+
export type BoxplotChartProps = typeof __propDef.props;
|
|
21
|
+
export type BoxplotChartEvents = typeof __propDef.events;
|
|
22
|
+
export type BoxplotChartSlots = typeof __propDef.slots;
|
|
23
|
+
export default class BoxplotChart extends SvelteComponentTyped<BoxplotChartProps, BoxplotChartEvents, BoxplotChartSlots> {
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { SvelteComponentTyped } from "svelte";
|
|
2
|
-
import { BubbleChart as BubbleChartCore, BubbleChartOptions, ChartTabularData } from '@carbon/charts';
|
|
3
|
-
declare const __propDef: {
|
|
4
|
-
props: {
|
|
5
|
-
[x: string]: any;
|
|
6
|
-
chart: BubbleChartCore;
|
|
7
|
-
options: BubbleChartOptions;
|
|
8
|
-
data: ChartTabularData;
|
|
9
|
-
ref: HTMLDivElement;
|
|
10
|
-
};
|
|
11
|
-
events: {
|
|
12
|
-
load: CustomEvent<any>;
|
|
13
|
-
update: CustomEvent<any>;
|
|
14
|
-
destroy: CustomEvent<any>;
|
|
15
|
-
} & {
|
|
16
|
-
[evt: string]: CustomEvent<any>;
|
|
17
|
-
};
|
|
18
|
-
slots: {};
|
|
19
|
-
};
|
|
20
|
-
export type BubbleChartProps = typeof __propDef.props;
|
|
21
|
-
export type BubbleChartEvents = typeof __propDef.events;
|
|
22
|
-
export type BubbleChartSlots = typeof __propDef.slots;
|
|
23
|
-
export default class BubbleChart extends SvelteComponentTyped<BubbleChartProps, BubbleChartEvents, BubbleChartSlots> {
|
|
24
|
-
}
|
|
25
|
-
export {};
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import { BubbleChart as BubbleChartCore, type BubbleChartOptions, type ChartTabularData } from '@carbon/charts';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
chart: BubbleChartCore;
|
|
7
|
+
options: BubbleChartOptions;
|
|
8
|
+
data: ChartTabularData;
|
|
9
|
+
ref: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
events: {
|
|
12
|
+
load: CustomEvent<any>;
|
|
13
|
+
update: CustomEvent<any>;
|
|
14
|
+
destroy: CustomEvent<any>;
|
|
15
|
+
} & {
|
|
16
|
+
[evt: string]: CustomEvent<any>;
|
|
17
|
+
};
|
|
18
|
+
slots: {};
|
|
19
|
+
};
|
|
20
|
+
export type BubbleChartProps = typeof __propDef.props;
|
|
21
|
+
export type BubbleChartEvents = typeof __propDef.events;
|
|
22
|
+
export type BubbleChartSlots = typeof __propDef.slots;
|
|
23
|
+
export default class BubbleChart extends SvelteComponentTyped<BubbleChartProps, BubbleChartEvents, BubbleChartSlots> {
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { SvelteComponentTyped } from "svelte";
|
|
2
|
-
import { BulletChart as BulletChartCore, BulletChartOptions, ChartTabularData } from '@carbon/charts';
|
|
3
|
-
declare const __propDef: {
|
|
4
|
-
props: {
|
|
5
|
-
[x: string]: any;
|
|
6
|
-
chart: BulletChartCore;
|
|
7
|
-
options: BulletChartOptions;
|
|
8
|
-
data: ChartTabularData;
|
|
9
|
-
ref: HTMLDivElement;
|
|
10
|
-
};
|
|
11
|
-
events: {
|
|
12
|
-
load: CustomEvent<any>;
|
|
13
|
-
update: CustomEvent<any>;
|
|
14
|
-
destroy: CustomEvent<any>;
|
|
15
|
-
} & {
|
|
16
|
-
[evt: string]: CustomEvent<any>;
|
|
17
|
-
};
|
|
18
|
-
slots: {};
|
|
19
|
-
};
|
|
20
|
-
export type BulletChartProps = typeof __propDef.props;
|
|
21
|
-
export type BulletChartEvents = typeof __propDef.events;
|
|
22
|
-
export type BulletChartSlots = typeof __propDef.slots;
|
|
23
|
-
export default class BulletChart extends SvelteComponentTyped<BulletChartProps, BulletChartEvents, BulletChartSlots> {
|
|
24
|
-
}
|
|
25
|
-
export {};
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import { BulletChart as BulletChartCore, type BulletChartOptions, type ChartTabularData } from '@carbon/charts';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
chart: BulletChartCore;
|
|
7
|
+
options: BulletChartOptions;
|
|
8
|
+
data: ChartTabularData;
|
|
9
|
+
ref: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
events: {
|
|
12
|
+
load: CustomEvent<any>;
|
|
13
|
+
update: CustomEvent<any>;
|
|
14
|
+
destroy: CustomEvent<any>;
|
|
15
|
+
} & {
|
|
16
|
+
[evt: string]: CustomEvent<any>;
|
|
17
|
+
};
|
|
18
|
+
slots: {};
|
|
19
|
+
};
|
|
20
|
+
export type BulletChartProps = typeof __propDef.props;
|
|
21
|
+
export type BulletChartEvents = typeof __propDef.events;
|
|
22
|
+
export type BulletChartSlots = typeof __propDef.slots;
|
|
23
|
+
export default class BulletChart extends SvelteComponentTyped<BulletChartProps, BulletChartEvents, BulletChartSlots> {
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { SvelteComponentTyped } from "svelte";
|
|
2
|
-
import { ExperimentalChoroplethChart as ChoroplethChartCore, ChoroplethChartOptions, ChartTabularData } from '@carbon/charts';
|
|
3
|
-
declare const __propDef: {
|
|
4
|
-
props: {
|
|
5
|
-
[x: string]: any;
|
|
6
|
-
chart: ChoroplethChartCore;
|
|
7
|
-
options: ChoroplethChartOptions;
|
|
8
|
-
data: ChartTabularData;
|
|
9
|
-
ref: HTMLDivElement;
|
|
10
|
-
};
|
|
11
|
-
events: {
|
|
12
|
-
load: CustomEvent<any>;
|
|
13
|
-
update: CustomEvent<any>;
|
|
14
|
-
destroy: CustomEvent<any>;
|
|
15
|
-
} & {
|
|
16
|
-
[evt: string]: CustomEvent<any>;
|
|
17
|
-
};
|
|
18
|
-
slots: {};
|
|
19
|
-
};
|
|
20
|
-
export type ChoroplethChartProps = typeof __propDef.props;
|
|
21
|
-
export type ChoroplethChartEvents = typeof __propDef.events;
|
|
22
|
-
export type ChoroplethChartSlots = typeof __propDef.slots;
|
|
23
|
-
export default class ChoroplethChart extends SvelteComponentTyped<ChoroplethChartProps, ChoroplethChartEvents, ChoroplethChartSlots> {
|
|
24
|
-
}
|
|
25
|
-
export {};
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import { ExperimentalChoroplethChart as ChoroplethChartCore, type ChoroplethChartOptions, type ChartTabularData } from '@carbon/charts';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
chart: ChoroplethChartCore;
|
|
7
|
+
options: ChoroplethChartOptions;
|
|
8
|
+
data: ChartTabularData;
|
|
9
|
+
ref: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
events: {
|
|
12
|
+
load: CustomEvent<any>;
|
|
13
|
+
update: CustomEvent<any>;
|
|
14
|
+
destroy: CustomEvent<any>;
|
|
15
|
+
} & {
|
|
16
|
+
[evt: string]: CustomEvent<any>;
|
|
17
|
+
};
|
|
18
|
+
slots: {};
|
|
19
|
+
};
|
|
20
|
+
export type ChoroplethChartProps = typeof __propDef.props;
|
|
21
|
+
export type ChoroplethChartEvents = typeof __propDef.events;
|
|
22
|
+
export type ChoroplethChartSlots = typeof __propDef.slots;
|
|
23
|
+
export default class ChoroplethChart extends SvelteComponentTyped<ChoroplethChartProps, ChoroplethChartEvents, ChoroplethChartSlots> {
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { SvelteComponentTyped } from "svelte";
|
|
2
|
-
import { CirclePackChart as CirclePackChartCore, CirclePackChartOptions, ChartTabularData } from '@carbon/charts';
|
|
3
|
-
declare const __propDef: {
|
|
4
|
-
props: {
|
|
5
|
-
[x: string]: any;
|
|
6
|
-
chart: CirclePackChartCore;
|
|
7
|
-
options: CirclePackChartOptions;
|
|
8
|
-
data: ChartTabularData;
|
|
9
|
-
ref: HTMLDivElement;
|
|
10
|
-
};
|
|
11
|
-
events: {
|
|
12
|
-
load: CustomEvent<any>;
|
|
13
|
-
update: CustomEvent<any>;
|
|
14
|
-
destroy: CustomEvent<any>;
|
|
15
|
-
} & {
|
|
16
|
-
[evt: string]: CustomEvent<any>;
|
|
17
|
-
};
|
|
18
|
-
slots: {};
|
|
19
|
-
};
|
|
20
|
-
export type CirclePackChartProps = typeof __propDef.props;
|
|
21
|
-
export type CirclePackChartEvents = typeof __propDef.events;
|
|
22
|
-
export type CirclePackChartSlots = typeof __propDef.slots;
|
|
23
|
-
export default class CirclePackChart extends SvelteComponentTyped<CirclePackChartProps, CirclePackChartEvents, CirclePackChartSlots> {
|
|
24
|
-
}
|
|
25
|
-
export {};
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import { CirclePackChart as CirclePackChartCore, type CirclePackChartOptions, type ChartTabularData } from '@carbon/charts';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
chart: CirclePackChartCore;
|
|
7
|
+
options: CirclePackChartOptions;
|
|
8
|
+
data: ChartTabularData;
|
|
9
|
+
ref: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
events: {
|
|
12
|
+
load: CustomEvent<any>;
|
|
13
|
+
update: CustomEvent<any>;
|
|
14
|
+
destroy: CustomEvent<any>;
|
|
15
|
+
} & {
|
|
16
|
+
[evt: string]: CustomEvent<any>;
|
|
17
|
+
};
|
|
18
|
+
slots: {};
|
|
19
|
+
};
|
|
20
|
+
export type CirclePackChartProps = typeof __propDef.props;
|
|
21
|
+
export type CirclePackChartEvents = typeof __propDef.events;
|
|
22
|
+
export type CirclePackChartSlots = typeof __propDef.slots;
|
|
23
|
+
export default class CirclePackChart extends SvelteComponentTyped<CirclePackChartProps, CirclePackChartEvents, CirclePackChartSlots> {
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { SvelteComponentTyped } from "svelte";
|
|
2
|
-
import { ComboChart as ComboChartCore, ComboChartOptions, ChartTabularData } from '@carbon/charts';
|
|
3
|
-
declare const __propDef: {
|
|
4
|
-
props: {
|
|
5
|
-
[x: string]: any;
|
|
6
|
-
chart: ComboChartCore;
|
|
7
|
-
options: ComboChartOptions;
|
|
8
|
-
data: ChartTabularData;
|
|
9
|
-
ref: HTMLDivElement;
|
|
10
|
-
};
|
|
11
|
-
events: {
|
|
12
|
-
load: CustomEvent<any>;
|
|
13
|
-
update: CustomEvent<any>;
|
|
14
|
-
destroy: CustomEvent<any>;
|
|
15
|
-
} & {
|
|
16
|
-
[evt: string]: CustomEvent<any>;
|
|
17
|
-
};
|
|
18
|
-
slots: {};
|
|
19
|
-
};
|
|
20
|
-
export type ComboChartProps = typeof __propDef.props;
|
|
21
|
-
export type ComboChartEvents = typeof __propDef.events;
|
|
22
|
-
export type ComboChartSlots = typeof __propDef.slots;
|
|
23
|
-
export default class ComboChart extends SvelteComponentTyped<ComboChartProps, ComboChartEvents, ComboChartSlots> {
|
|
24
|
-
}
|
|
25
|
-
export {};
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
import { ComboChart as ComboChartCore, type ComboChartOptions, type ChartTabularData } from '@carbon/charts';
|
|
3
|
+
declare const __propDef: {
|
|
4
|
+
props: {
|
|
5
|
+
[x: string]: any;
|
|
6
|
+
chart: ComboChartCore;
|
|
7
|
+
options: ComboChartOptions;
|
|
8
|
+
data: ChartTabularData;
|
|
9
|
+
ref: HTMLDivElement;
|
|
10
|
+
};
|
|
11
|
+
events: {
|
|
12
|
+
load: CustomEvent<any>;
|
|
13
|
+
update: CustomEvent<any>;
|
|
14
|
+
destroy: CustomEvent<any>;
|
|
15
|
+
} & {
|
|
16
|
+
[evt: string]: CustomEvent<any>;
|
|
17
|
+
};
|
|
18
|
+
slots: {};
|
|
19
|
+
};
|
|
20
|
+
export type ComboChartProps = typeof __propDef.props;
|
|
21
|
+
export type ComboChartEvents = typeof __propDef.events;
|
|
22
|
+
export type ComboChartSlots = typeof __propDef.slots;
|
|
23
|
+
export default class ComboChart extends SvelteComponentTyped<ComboChartProps, ComboChartEvents, ComboChartSlots> {
|
|
24
|
+
}
|
|
25
|
+
export {};
|