@orfium/ictinus 5.0.0 → 5.1.0

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/index.d.ts CHANGED
@@ -2909,7 +2909,7 @@ type Sort = {
2909
2909
 
2910
2910
  type ContentComponent<T> = (data: Cell<T>) => React__default.ReactNode;
2911
2911
  type Cell<T> = {
2912
- /** the content of the cell to be displayed */
2912
+ /** the content of the cell to be displayed. You can pass also custom component. `ContentComponent: (data: Cell<T>) => React.ReactNode`. The type defines that will be a function that returns cell to use cell data. */
2913
2913
  content: number | string | ContentComponent<T>;
2914
2914
  /** the truncated tooltip content, you can override it or it will take the content @default content */
2915
2915
  tooltipContent?: string;