File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"private" : false ,
3
3
"name" : " @attio/react-data-list" ,
4
- "version" : " 1.0.5 " ,
4
+ "version" : " 1.0.6 " ,
5
5
"author" :
" Braden Marshall <[email protected] >" ,
6
6
"license" : " MIT" ,
7
7
"bugs" : " https://github.com/attio/react-data-list/issues" ,
Original file line number Diff line number Diff line change @@ -6,14 +6,15 @@ import {
6
6
useDataListDescriptorDescendant ,
7
7
} from "./data-list-descriptor-context"
8
8
9
- interface DataListRowsProps < TRenderItem > {
10
- descriptors : Array < DataListDescriptor < TRenderItem > >
9
+ interface DataListRowsProps {
10
+ // biome-ignore lint/suspicious/noExplicitAny: allow any to avoid union issues
11
+ descriptors : Array < DataListDescriptor < any > >
11
12
}
12
13
13
14
/**
14
15
* Connects a single item row to the list.
15
16
*/
16
- export function DataListRows < TRenderItem > ( { descriptors} : DataListRowsProps < TRenderItem > ) {
17
+ export function DataListRows ( { descriptors} : DataListRowsProps ) {
17
18
const { attachDescriptors, markForIndex} = useDataListDescriptorContext ( )
18
19
19
20
const id = React . useId ( )
You can’t perform that action at this time.
0 commit comments