Skip to content

Commit

Permalink
feat: update and configure table component
Browse files Browse the repository at this point in the history
- add action items on table header
- add summary and description text
  • Loading branch information
babboe1 committed Jul 17, 2024
1 parent 549a96c commit 0c777de
Show file tree
Hide file tree
Showing 5 changed files with 33,793 additions and 30,742 deletions.
5 changes: 4 additions & 1 deletion package-dist/AiMessageTable.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@

export interface AiMessageTableProps {
title: string;
sequelQuery?: string;
description?: string;
segmentSize: number | null;
summary: string;
rowData: Record<string, any>[];
columnDefs: {
field: string;
}[];
}
export default function AiMessageTable({ title, summary, rowData, columnDefs, }: AiMessageTableProps): import("react/jsx-runtime").JSX.Element;
export default function AiMessageTable({ title, summary, segmentSize, description, sequelQuery, rowData, columnDefs, }: AiMessageTableProps): import("react/jsx-runtime").JSX.Element;
Loading

0 comments on commit 0c777de

Please sign in to comment.