@etsoo/react 1.6.60 → 1.6.61
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.
|
@@ -76,6 +76,11 @@ export type GridCellRendererProps<T, P = any> = GridCellFormatterProps<T> & {
|
|
|
76
76
|
* Render props
|
|
77
77
|
*/
|
|
78
78
|
renderProps?: GridColumnRenderProps;
|
|
79
|
+
/**
|
|
80
|
+
* Set items for rerenderer
|
|
81
|
+
* @param callback Callback
|
|
82
|
+
*/
|
|
83
|
+
setItems: (callback: (items: T[]) => T[] | undefined) => void;
|
|
79
84
|
};
|
|
80
85
|
/**
|
|
81
86
|
* Grid header cell renderer props
|
package/package.json
CHANGED
|
@@ -114,6 +114,12 @@ export type GridCellRendererProps<T, P = any> = GridCellFormatterProps<T> & {
|
|
|
114
114
|
* Render props
|
|
115
115
|
*/
|
|
116
116
|
renderProps?: GridColumnRenderProps;
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* Set items for rerenderer
|
|
120
|
+
* @param callback Callback
|
|
121
|
+
*/
|
|
122
|
+
setItems: (callback: (items: T[]) => T[] | undefined) => void;
|
|
117
123
|
};
|
|
118
124
|
|
|
119
125
|
/**
|