From 60deab7a9ed0533bf6539c8402f6b106651c23ae Mon Sep 17 00:00:00 2001 From: RiyaJethwa <76566868+RiyaJethwa@users.noreply.github.com> Date: Mon, 15 Jan 2024 08:50:10 -0800 Subject: [PATCH] fix(types): export TabularRepCustomizationOptions (#1726) * feat(modal):customizability of chart modal * misspell error rectified * property name change and formatTable function parameter count changed to one * modal property name changed to tabularRepModal * Update pie.ts * Update cartesian-charts.ts * tableCellFormatter receiving entire cell data and removal of tableFormatter * addition of TabularRepCustomizationOptions interface * exporting TabularRepCustomizationOptions from index.ts --------- Co-authored-by: Eliad Moosavi --- packages/core/src/index.ts | 1 + packages/core/src/interfaces/index.ts | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index 164d5f2bb7..67a28ac49d 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -100,6 +100,7 @@ export type { WordCloudChartTooltipOptions, ZoomBarOptions, ZoomBarsOptions, + TabularRepCustomizationOptions, // Formats TickFormats, TimeIntervalFormats, diff --git a/packages/core/src/interfaces/index.ts b/packages/core/src/interfaces/index.ts index f81fc7b2a7..bac323f3a6 100644 --- a/packages/core/src/interfaces/index.ts +++ b/packages/core/src/interfaces/index.ts @@ -59,7 +59,8 @@ export type { ToolbarControl, ToolbarOptions, ZoomBarOptions, - ZoomBarsOptions + ZoomBarsOptions, + TabularRepCustomizationOptions } from './components' export type { Coordinates, LayoutConfigs } from './layout'