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 11{
22 "private" : false ,
33 "name" : " @attio/react-data-list" ,
4- "version" : " 1.0.5 " ,
4+ "version" : " 1.0.6 " ,
55 "author" : " Braden Marshall <braden1996@hotmail.co.uk>" ,
66 "license" : " MIT" ,
77 "bugs" : " https://github.com/attio/react-data-list/issues" ,
Original file line number Diff line number Diff line change @@ -6,14 +6,15 @@ import {
66 useDataListDescriptorDescendant ,
77} from "./data-list-descriptor-context"
88
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 > >
1112}
1213
1314/**
1415 * Connects a single item row to the list.
1516 */
16- export function DataListRows < TRenderItem > ( { descriptors} : DataListRowsProps < TRenderItem > ) {
17+ export function DataListRows ( { descriptors} : DataListRowsProps ) {
1718 const { attachDescriptors, markForIndex} = useDataListDescriptorContext ( )
1819
1920 const id = React . useId ( )
You can’t perform that action at this time.
0 commit comments