Skip to content

Commit 1621999

Browse files
authored
textTextEditor -> renderTextEditor (#3966)
1 parent 90a8fe8 commit 1621999

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/editors/renderTextEditor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function autoFocusAndSelect(input: HTMLInputElement | null) {
3838
input?.select();
3939
}
4040

41-
export default function textTextEditor<TRow, TSummaryRow>({
41+
export function renderTextEditor<TRow, TSummaryRow>({
4242
row,
4343
column,
4444
onRowChange,

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export { default as Row } from './Row';
1212
export { default as Cell } from './Cell';
1313
export * from './Columns';
1414
export * from './cellRenderers';
15-
export { default as renderTextEditor } from './editors/renderTextEditor';
15+
export { renderTextEditor } from './editors/renderTextEditor';
1616
export { default as renderHeaderCell } from './renderHeaderCell';
1717
export { renderSortIcon, renderSortPriority } from './sortStatus';
1818
export { useRowSelection, useHeaderRowSelection } from './hooks';

0 commit comments

Comments
 (0)