@prosperitainova/mirage-ui 1.1.32 → 1.1.33
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.
|
@@ -12,7 +12,8 @@ export type TableProps = {
|
|
|
12
12
|
dataSpacer?: number;
|
|
13
13
|
disabledRows?: number[];
|
|
14
14
|
selectedRows?: number[];
|
|
15
|
-
|
|
15
|
+
haveHeader?: boolean;
|
|
16
|
+
renderHeader?: (columns: TableColumn<any>[]) => JSX.Element;
|
|
16
17
|
};
|
|
17
18
|
declare const Table: (props: TableProps) => JSX.Element;
|
|
18
19
|
export default Table;
|
package/dist/index.d.ts
CHANGED
|
@@ -292,7 +292,8 @@ type TableProps = {
|
|
|
292
292
|
dataSpacer?: number;
|
|
293
293
|
disabledRows?: number[];
|
|
294
294
|
selectedRows?: number[];
|
|
295
|
-
|
|
295
|
+
haveHeader?: boolean;
|
|
296
|
+
renderHeader?: (columns: TableColumn<any>[]) => JSX.Element;
|
|
296
297
|
};
|
|
297
298
|
declare const Table: (props: TableProps) => JSX.Element;
|
|
298
299
|
|