@syook/react-tabulous 4.6.0-beta.2 → 4.6.0-beta.3
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/README.md +30 -23
- package/lib/index.d.ts +5 -1
- package/lib/index.esm.js +1 -1
- package/lib/index.js +2 -2
- package/lib/types/reactTabulous/models/columnDef/columnDef.d.ts +5 -1
- package/package.json +1 -1
|
@@ -58,9 +58,13 @@ export interface GridBaseColDef<R extends GridValidRowModel = GridValidRowModel,
|
|
|
58
58
|
*/
|
|
59
59
|
isSortable?: boolean;
|
|
60
60
|
/**
|
|
61
|
-
* The column to
|
|
61
|
+
* The column to filterable or not.
|
|
62
62
|
*/
|
|
63
63
|
isFilterable?: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* The column to formatable cells or not.
|
|
66
|
+
*/
|
|
67
|
+
isFormattable?: boolean;
|
|
64
68
|
/**
|
|
65
69
|
* The column to show options in filter.
|
|
66
70
|
*/
|