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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -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?: string;
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: string;
238
+ title: ReactNode;
239
239
  value: keyof T | ((data: T) => React$1.ReactNode);
240
240
  width?: string;
241
241
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pillardash-ui-react",
3
- "version": "0.1.33",
3
+ "version": "0.1.35",
4
4
  "type": "module",
5
5
  "description": "Pillardash reusable react components",
6
6
  "main": "dist/index.js",