@etsoo/react 1.6.64 → 1.6.65
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.
|
@@ -81,7 +81,7 @@ export type GridCellRendererProps<T, P = any> = GridCellFormatterProps<T> & {
|
|
|
81
81
|
* Set items for rerenderer
|
|
82
82
|
* @param callback Callback
|
|
83
83
|
*/
|
|
84
|
-
setItems: (callback: (
|
|
84
|
+
setItems: (callback: (items: T[], ref?: ScrollerGridForwardRef<T>) => T[] | undefined | void) => void;
|
|
85
85
|
};
|
|
86
86
|
/**
|
|
87
87
|
* Grid header cell renderer props
|
package/package.json
CHANGED
|
@@ -121,12 +121,10 @@ export type GridCellRendererProps<T, P = any> = GridCellFormatterProps<T> & {
|
|
|
121
121
|
* @param callback Callback
|
|
122
122
|
*/
|
|
123
123
|
setItems: (
|
|
124
|
-
callback:
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
ref: ScrollerGridForwardRef<T>
|
|
129
|
-
) => T[] | undefined | void)
|
|
124
|
+
callback: (
|
|
125
|
+
items: T[],
|
|
126
|
+
ref?: ScrollerGridForwardRef<T>
|
|
127
|
+
) => T[] | undefined | void
|
|
130
128
|
) => void;
|
|
131
129
|
};
|
|
132
130
|
|