pillardash-ui-react 0.1.33 → 0.1.35
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/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -222,7 +222,7 @@ declare const ModalExample: React$1.FC;
|
|
|
222
222
|
interface TableProps<T> {
|
|
223
223
|
data: T[];
|
|
224
224
|
columns: Column<T>[];
|
|
225
|
-
title?:
|
|
225
|
+
title?: ReactNode;
|
|
226
226
|
subtitle?: string;
|
|
227
227
|
itemsPerPage?: number;
|
|
228
228
|
currentView?: string;
|
|
@@ -235,7 +235,7 @@ interface TableProps<T> {
|
|
|
235
235
|
onRowClick?: (item: T) => void;
|
|
236
236
|
}
|
|
237
237
|
interface Column<T> {
|
|
238
|
-
title:
|
|
238
|
+
title: ReactNode;
|
|
239
239
|
value: keyof T | ((data: T) => React$1.ReactNode);
|
|
240
240
|
width?: string;
|
|
241
241
|
}
|