Skip to content

Commit

Permalink
release version patch
Browse files Browse the repository at this point in the history
  • Loading branch information
radubrehar committed Oct 16, 2023
1 parent 0eb4080 commit f7be200
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default test.describe
await page.waitForInfinite();

const pos = await apiModel.evaluate((api) => {
return api.cellSelectionApi.getMappedCellSelectionPositions(
return api.cellSelectionApi.mapCellSelectionPositions(
(rowInfo, colId) => {
return `/${rowInfo.id}-${colId}`;
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export type InfiniteTableCellSelectionApi<T> = {
columnIds: string[];
positions: (CellSelectionPosition | null)[][];
};
getMappedCellSelectionPositions<SELECTED_VALUE, EMPTY_VALUE>(
mapCellSelectionPositions<SELECTED_VALUE, EMPTY_VALUE>(
fn: (rowInfo: InfiniteTableRowInfo<T>, colId: string) => SELECTED_VALUE,
emptyValue: EMPTY_VALUE,
): {
Expand Down Expand Up @@ -222,7 +222,7 @@ class InfiniteTableCellSelectionApiImpl<T>
return [rowInfo.id, colId] as CellSelectionPosition;
}, null);
};
getMappedCellSelectionPositions = <SELECTED_VALUE, EMPTY_VALUE>(
mapCellSelectionPositions = <SELECTED_VALUE, EMPTY_VALUE>(
fn: (rowInfo: InfiniteTableRowInfo<T>, colId: string) => SELECTED_VALUE,
emptyValue: EMPTY_VALUE,
) => {
Expand Down

0 comments on commit f7be200

Please sign in to comment.