ui-mathilde-web 0.1.7 → 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -178,7 +178,7 @@ declare interface TableComponentProps {
178
178
  itemsPerPage?: number;
179
179
  title?: string;
180
180
  onToggleChange?: (rowData: {
181
- rowIndex: number;
181
+ rowId: string | number;
182
182
  checked: boolean;
183
183
  row: TableData;
184
184
  columnKey: string;
@@ -186,6 +186,7 @@ declare interface TableComponentProps {
186
186
  }
187
187
 
188
188
  declare interface TableData extends Record<string, unknown> {
189
+ id: string | number;
189
190
  [key: string]: unknown;
190
191
  }
191
192