From cd5ff80c0000bb64969662664c2cf0361cbd061e Mon Sep 17 00:00:00 2001 From: Adi Dahiya Date: Thu, 3 Mar 2022 16:57:07 +0000 Subject: [PATCH] [v4] [table] feat: export CellCoordinates, FocusedCellCoordinates --- packages/table/src/common/index.ts | 1 + packages/table/src/index.ts | 11 ++++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/table/src/common/index.ts b/packages/table/src/common/index.ts index e75db2b2d12..b34b7f49a28 100644 --- a/packages/table/src/common/index.ts +++ b/packages/table/src/common/index.ts @@ -14,6 +14,7 @@ * limitations under the License. */ +export type { CellCoordinates, FocusedCellCoordinates } from "./cellTypes"; export { Clipboard } from "./clipboard"; export { Grid } from "./grid"; export { Rect, AnyRect } from "./rect"; diff --git a/packages/table/src/index.ts b/packages/table/src/index.ts index dbd5b89f2bc..6a67baf85d4 100644 --- a/packages/table/src/index.ts +++ b/packages/table/src/index.ts @@ -33,7 +33,16 @@ export { export { Column, ColumnProps, IColumnProps } from "./column"; -export { AnyRect, Clipboard, Grid, Rect, RenderMode, Utils } from "./common/index"; +export { + AnyRect, + CellCoordinates, + Clipboard, + FocusedCellCoordinates, + Grid, + Rect, + RenderMode, + Utils, +} from "./common/index"; export { IDraggableProps, Draggable } from "./interactions/draggable";