From 1259e7ec3a4e17cd770bc1c592932207b51ec51c Mon Sep 17 00:00:00 2001 From: naumov Date: Wed, 23 Oct 2024 12:53:07 +0200 Subject: [PATCH] CB-3446 add d3 imports --- webapp/packages/plugin-d3js/src/index.ts | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/webapp/packages/plugin-d3js/src/index.ts b/webapp/packages/plugin-d3js/src/index.ts index 7b8de60091..808e9903ac 100644 --- a/webapp/packages/plugin-d3js/src/index.ts +++ b/webapp/packages/plugin-d3js/src/index.ts @@ -20,6 +20,7 @@ export { format, scaleBand, max, + min, scaleLinear, interpolateRound, axisBottom, @@ -27,7 +28,20 @@ export { scaleOrdinal, pie, arc, + scalePoint, schemeTableau10, sum, } from 'd3'; -export type { Selection, ZoomBehavior, Line, DragBehavior, SubjectPosition, PieArcDatum, ScaleOrdinal } from 'd3'; +export type { + Selection, + ZoomBehavior, + Line, + DragBehavior, + SubjectPosition, + PieArcDatum, + ScaleOrdinal, + Axis, + NumberValue, + ScaleLinear, + ScaleBand, +} from 'd3';