@archbase/components 4.0.23 → 4.0.25
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/archbase-components-4.0.25.tgz +0 -0
- package/dist/datagrid/ag-grid/archbase-data-grid-ag-types.d.ts +2 -0
- package/dist/index.js +3807 -3764
- package/package.json +4 -4
- package/src/datagrid/ag-grid/archbase-data-grid-ag-types.tsx +2 -0
- package/src/datagrid/ag-grid/archbase-data-grid-ag.tsx +123 -10
- package/src/datagrid/main/archbase-data-grid.tsx +1 -1
- package/dist/archbase-components-4.0.23.tgz +0 -0
|
Binary file
|
|
@@ -70,6 +70,8 @@ export interface ArchbaseDataGridAGColumnProps<T = any> {
|
|
|
70
70
|
maxSize?: number;
|
|
71
71
|
/** Custom cell renderer */
|
|
72
72
|
render?: (data: any) => ReactNode;
|
|
73
|
+
/** Truncate long content with ellipsis (and show a native tooltip with the full value) */
|
|
74
|
+
truncate?: boolean;
|
|
73
75
|
/** Column visibility */
|
|
74
76
|
visible: boolean;
|
|
75
77
|
/** Column width */
|