Skip to content

Commit

Permalink
Remove unused Columns Editor (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
asimonok authored Jul 30, 2024
1 parent 5fb78d0 commit bbd080e
Show file tree
Hide file tree
Showing 14 changed files with 28 additions and 550 deletions.
64 changes: 0 additions & 64 deletions src/components/ColumnEditor/ColumnEditor.tsx

This file was deleted.

1 change: 0 additions & 1 deletion src/components/ColumnEditor/index.ts

This file was deleted.

54 changes: 0 additions & 54 deletions src/components/ColumnsEditor/ColumnsEditor.tsx

This file was deleted.

1 change: 0 additions & 1 deletion src/components/ColumnsEditor/index.ts

This file was deleted.

116 changes: 0 additions & 116 deletions src/components/FieldPicker/FieldPicker.tsx

This file was deleted.

1 change: 0 additions & 1 deletion src/components/FieldPicker/index.ts

This file was deleted.

4 changes: 2 additions & 2 deletions src/components/TablePanel/TablePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ interface Props extends PanelProps<PanelOptions> {}
/**
* Panel
*/
export const TablePanel: React.FC<Props> = ({ data, width, height, options }) => {
export const TablePanel: React.FC<Props> = ({ data, width, height }) => {
/**
* Styles
*/
Expand All @@ -26,7 +26,7 @@ export const TablePanel: React.FC<Props> = ({ data, width, height, options }) =>
/**
* Table
*/
const { tableData, columns } = useTable({ data, options });
const { tableData, columns } = useTable({ data });

/**
* Return
Expand Down
1 change: 0 additions & 1 deletion src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
export * from './CellOptionsEditor';
export * from './CellRenderer';
export * from './ColumnsEditor';
export * from './TablePanel';
Loading

0 comments on commit bbd080e

Please sign in to comment.