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.
- package/dist/ui-mathilde-web.d.ts +2 -1
- package/dist/ui-mathilde-web.js +4491 -5878
- package/dist/ui-mathilde-web.umd.cjs +38 -49
- package/package.json +2 -6
|
@@ -178,7 +178,7 @@ declare interface TableComponentProps {
|
|
|
178
178
|
itemsPerPage?: number;
|
|
179
179
|
title?: string;
|
|
180
180
|
onToggleChange?: (rowData: {
|
|
181
|
-
|
|
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
|
|