@candidstartup/react-virtual-scroll 0.10.0 → 0.12.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 +2 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -654,4 +654,5 @@ declare function useFixedSizeItemOffsetMapping(itemSize: number): ItemOffsetMapp
|
|
|
654
654
|
*/
|
|
655
655
|
declare function useVariableSizeItemOffsetMapping(defaultItemSize: number, sizes?: number[]): ItemOffsetMapping;
|
|
656
656
|
|
|
657
|
-
export { AutoSizer,
|
|
657
|
+
export { AutoSizer, DisplayGrid, DisplayList, VirtualContainer, VirtualGrid, VirtualList, VirtualScroll, getOffsetToScrollRange, getRangeToScroll, useFixedSizeItemOffsetMapping, useVariableSizeItemOffsetMapping, virtualGridScrollToItem, virtualListScrollToItem };
|
|
658
|
+
export type { AutoSizerProps, AutoSizerRender, AutoSizerRenderProps, ComponentProps, DisplayBaseItemProps, DisplayBaseProps, DisplayGridItem, DisplayGridItemProps, DisplayGridProps, DisplayListItem, DisplayListItemProps, DisplayListProps, GridItemKey, ListItemKey, ScrollDirection, ScrollEvent, ScrollLayout, ScrollRange, ScrollState, ScrollToOption, VirtualBaseProps, VirtualContainerComponentProps, VirtualContainerRender, VirtualContainerRenderProps, VirtualContentProps, VirtualContentRender, VirtualGridProps, VirtualGridProxy, VirtualGridScrollHandler, VirtualListProps, VirtualListProxy, VirtualListScrollHandler, VirtualScrollHandler, VirtualScrollProps, VirtualScrollProxy, VirtualScrollableProps };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@candidstartup/react-virtual-scroll",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.12.0",
|
|
5
5
|
"description": "Modern React components for lists and grids that scale to trillions of rows and columns",
|
|
6
6
|
"author": "Tim Wiegand <tim.wiegand@thecandidstartup.org>",
|
|
7
7
|
"license": "BSD-3-Clause",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"react": "18 - 19"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@candidstartup/infinisheet-types": "^0.
|
|
65
|
+
"@candidstartup/infinisheet-types": "^0.12.0"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "03b639807d367f0c167dc5b6653b3935412cbde8"
|
|
68
68
|
}
|