File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ ## 1.2.7
4+
5+ _ 2025-03-31_
6+
7+ ### Bugix
8+
9+ - isHorizontalScroll is always false for now
10+
11+ ## 1.2.6
12+
13+ _ 2025-03-31_
14+
15+ ### Bugix
16+
17+ - move heuristic
18+
319## 1.2.5
420
521_ 2025-03-31_
Original file line number Diff line number Diff line change 11{
22 "name" : " react-fluid-table" ,
3- "version" : " 1.2.6 " ,
3+ "version" : " 1.2.7 " ,
44 "description" : " A React table inspired by @tanstack/react-virtual" ,
55 "author" : " Mckervin Ceme <mckervinc@live.com>" ,
66 "license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ function BaseList<T>(
5656) {
5757 // hooks
5858 const parentRef = useRef < HTMLDivElement | null > ( null ) ;
59- const { ref : innerRef , width : innerWidth = 0 } = useResizeDetector < HTMLDivElement > ( ) ;
59+ const { ref : innerRef , width : _innerWidth = 0 } = useResizeDetector < HTMLDivElement > ( ) ;
6060 const [ widthConstants , setWidthConstants ] = useState ( findColumnWidthConstants ( columns ) ) ;
6161 const [ pixelWidths , setPixelWidths ] = useState < number [ ] > ( ( ) => {
6262 const { fixedWidth, remainingCols } = widthConstants ;
@@ -75,7 +75,7 @@ function BaseList<T>(
7575 } ) ;
7676
7777 // constants
78- const isScrollHorizontal = ( innerRef . current ?. scrollWidth || 0 ) > innerWidth + 16 ;
78+ const isScrollHorizontal = false ;
7979 const items = virtualizer . getVirtualItems ( ) ;
8080 const { fixedWidth, remainingCols } = widthConstants ;
8181
You can’t perform that action at this time.
0 commit comments