@reside-ic/skadi-chart 1.1.14 → 1.1.15
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/dist/skadi-chart.d.ts +2 -0
- package/dist/skadi-chart.js +1712 -1712
- package/dist/skadi-chart.umd.cjs +4 -4
- package/package.json +2 -1
package/dist/skadi-chart.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ declare module "d3" {
|
|
|
6
6
|
export { create, type BaseType, type Selection, type ClientPointEvent, pointer } from "d3-selection";
|
|
7
7
|
export { brush, type D3BrushEvent } from "d3-brush";
|
|
8
8
|
export { scaleBand, scaleLinear, scaleLog, type NumberValue, type ScaleBand, type ScaleContinuousNumeric } from "d3-scale";
|
|
9
|
+
export { format } from "d3-format";
|
|
9
10
|
}
|
|
10
11
|
declare module "types" {
|
|
11
12
|
import { ChartOptions } from "Chart";
|
|
@@ -300,6 +301,7 @@ declare module "Chart" {
|
|
|
300
301
|
categorical?: Partial<XY<Partial<TickConfig<string>>>>;
|
|
301
302
|
};
|
|
302
303
|
};
|
|
304
|
+
export const defaultFormatter: (val: number) => string;
|
|
303
305
|
export class Chart<Metadata = any> {
|
|
304
306
|
id: string;
|
|
305
307
|
optionalLayers: AllOptionalLayers[];
|