@croquiscom/pds 0.47.4 → 0.47.5
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/CHANGELOG.md +6 -0
- package/dist/components/table/TableCol.d.ts +3 -1
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { TableColumnBase, SortDirection } from './types';
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const COLUMN_MIN_WIDTH = 48;
|
|
4
|
+
export declare const COLUMN_MIN_HEIGHT = 48;
|
|
4
5
|
interface TableColProps extends TableColumnBase {
|
|
5
6
|
id: string;
|
|
6
7
|
fixedColWidth?: number;
|
|
8
|
+
groupColumn?: boolean;
|
|
7
9
|
stickyHeader?: boolean;
|
|
8
10
|
sortBy?: string;
|
|
9
11
|
sortDirection?: SortDirection;
|