├── .babelrc ├── .eslintrc.yaml ├── .github ├── ISSUE_TEMPLATE │ └── bug-report.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build-and-run-tests.yml │ └── deploy-gh-pages.yml ├── .gitignore ├── .prettierrc.yaml ├── CONTRIBUTING.md ├── LICENSE ├── PATENTS ├── README.md ├── docs ├── README.md ├── codebase.md ├── images │ ├── ReorderCell.png │ └── ResizeCell.png ├── public_api │ ├── api_reference.md │ ├── getting_started.md │ └── overview.md └── roadmap.md ├── examples ├── AutoScrollExample.js ├── ColumnGroupsExample.js ├── ColumnGroupsResizeReorderExample.js ├── ContextExample.js ├── DynamicRowHeightExample.js ├── ExpandedExample.js ├── FilterExample.js ├── FixedRightColumnsExample.js ├── FixedRowsExample.js ├── FlexGrowExample.js ├── FooterExample.js ├── HideColumnExample.js ├── InfiniteScrollExample.js ├── LongClickExample.js ├── MaxHeightExample.js ├── ObjectDataExample.js ├── OwnerHeightExample.js ├── PaginationExample.js ├── ReorderExample.js ├── ResizeExample.js ├── ResponsiveExample.js ├── ScrollToColumnExample.js ├── ScrollToRowExample.js ├── SortExample.js ├── StylingExample.js ├── TooltipExample.js ├── TouchScrollExample.js └── helpers │ ├── ExampleImage.js │ ├── FakeObjectDataListStore.js │ ├── HOC.js │ ├── cells.js │ └── examplePropTypes.js ├── jest.config.js ├── jest.setup.js ├── package.json ├── rollup.config.js ├── site ├── Constants.js ├── IndexPage.js ├── MiniHeader.js ├── README.md ├── SideBar.js ├── StaticHTMLBlock.js ├── apiReference.less ├── base.less ├── client.js ├── docs │ ├── DocsPage.js │ └── docsPageStyle.less ├── examples │ ├── ExampleHeader.js │ ├── ExamplesPage.js │ ├── ExamplesWrapper.js │ └── examplesPageStyle.less ├── home │ ├── Header.js │ ├── HeroTable.js │ ├── HomePage.js │ └── homePageStyle.less ├── images │ ├── arrowBullet-2x.png │ ├── arrowBullet.png │ ├── favicon.png │ ├── fdt_logo_transparent_ondark_23px-2x.png │ ├── fdt_logo_transparent_ondark_23px.png │ ├── fdt_logo_transparent_onlight_50px-2x.png │ ├── fdt_logo_transparent_onlight_50px.png │ ├── fdt_logo_transparent_onlight_80px-2x.png │ └── fdt_logo_transparent_onlight_80px.png ├── miniHeader.less ├── renderPath.js ├── variables.less ├── webpack-client.config.js └── webpack-prerender.config.js ├── src ├── FixedDataTable.js ├── FixedDataTableBufferedRows.js ├── FixedDataTableCell.js ├── FixedDataTableCellDefault.js ├── FixedDataTableCellDefaultDeprecated.js ├── FixedDataTableCellGroup.js ├── FixedDataTableColumn.js ├── FixedDataTableColumnGroup.js ├── FixedDataTableContainer.js ├── FixedDataTableContext.js ├── FixedDataTableEventHelper.js ├── FixedDataTableRow.js ├── FixedDataTableStore.js ├── FixedDataTableTranslateDOMPosition.js ├── ReactTouchHandler.js ├── actions │ └── scrollActions.js ├── api │ ├── apiData.js │ ├── apiMethods.js │ └── index.js ├── css │ ├── layout │ │ ├── ScrollbarLayout.css │ │ ├── fixedDataTableCellGroupLayout.css │ │ ├── fixedDataTableCellLayout.css │ │ ├── fixedDataTableColumnResizerLineLayout.css │ │ ├── fixedDataTableLayout.css │ │ └── fixedDataTableRowLayout.css │ └── style │ │ ├── Scrollbar.css │ │ ├── fixedDataTable.css │ │ ├── fixedDataTableCell.css │ │ ├── fixedDataTableColumnReorder.css │ │ ├── fixedDataTableColumnResizerLine.css │ │ └── fixedDataTableRow.css ├── enums │ └── CellGroup.js ├── helper │ ├── convertColumnElementsToData.js │ ├── shallowEqualSelector.js │ └── widthHelper.js ├── index.js ├── plugins │ ├── ExternalContextProvider.js │ ├── ResizeReorder │ │ ├── DragProxy.js │ │ ├── ReorderCell.js │ │ ├── ResizeCell.js │ │ ├── ResizerKnob.js │ │ └── ResizerLine.js │ ├── ScrollContainer.js │ └── Scrollbar.js ├── reducers │ ├── columnStateHelper.js │ ├── computeRenderedRows.js │ ├── index.js │ ├── scrollAnchor.js │ └── updateRowHeight.js ├── selectors │ ├── ariaAttributes.js │ ├── columnTemplates.js │ ├── columnWidths.js │ ├── roughHeights.js │ ├── scrollbarsVisible.js │ └── tableHeights.js ├── stubs │ ├── Object.assign.js │ ├── UserAgent_DEPRECATED.js │ ├── cssVar.js │ └── invariant.js └── vendor_upstream │ ├── core │ ├── ExecutionEnvironment.js │ ├── Keys.js │ ├── camelize.js │ ├── cancelAnimationFramePolyfill.js │ ├── clamp.js │ ├── debounceCore.js │ ├── emptyFunction.js │ ├── getVendorPrefixedName.js │ ├── globalThisPolyfill.js │ ├── joinClasses.js │ ├── nativeRequestAnimationFrame.js │ ├── requestAnimationFramePolyfill.js │ └── shallowEqual.js │ ├── dom │ ├── BrowserSupportCore.js │ ├── DOMMouseMoveTracker.js │ ├── ReactWheelHandler.js │ ├── normalizeWheel.js │ └── translateDOMPositionXY.js │ ├── react │ └── renderers │ │ └── dom │ │ └── client │ │ └── utils │ │ └── isEventSupported.js │ ├── struct │ ├── Heap.js │ ├── IntegerBufferSet.js │ └── PrefixIntervalTree.js │ └── stubs │ ├── EventListener.js │ └── cx.js ├── test ├── FixedDataTableRoot-test.js ├── ReactTouchHandler-test.js ├── helper │ └── convertColumnElementsToData-test.js ├── plugins │ ├── ReorderCell-test.js │ └── ResizeCell-test.js ├── reducers │ ├── columnStateHelper-test.js │ ├── computeRenderedRows-test.js │ ├── initializeRowHeightsAndOffsets-test.js │ └── scrollAnchor-test.js └── selectors │ ├── columnTemplates-test.js │ ├── columnWidths-test.js │ ├── roughHeights-test.js │ ├── scrollbarsVisible-test.js │ └── tableHeights-test.js ├── testRunner.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/.eslintrc.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build-and-run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/.github/workflows/build-and-run-tests.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/.github/workflows/deploy-gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | singleQuote: true 2 | trailingComma: 'es5' 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/LICENSE -------------------------------------------------------------------------------- /PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/PATENTS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/codebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/docs/codebase.md -------------------------------------------------------------------------------- /docs/images/ReorderCell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/docs/images/ReorderCell.png -------------------------------------------------------------------------------- /docs/images/ResizeCell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/docs/images/ResizeCell.png -------------------------------------------------------------------------------- /docs/public_api/api_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/docs/public_api/api_reference.md -------------------------------------------------------------------------------- /docs/public_api/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/docs/public_api/getting_started.md -------------------------------------------------------------------------------- /docs/public_api/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/docs/public_api/overview.md -------------------------------------------------------------------------------- /docs/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/docs/roadmap.md -------------------------------------------------------------------------------- /examples/AutoScrollExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/AutoScrollExample.js -------------------------------------------------------------------------------- /examples/ColumnGroupsExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/ColumnGroupsExample.js -------------------------------------------------------------------------------- /examples/ColumnGroupsResizeReorderExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/ColumnGroupsResizeReorderExample.js -------------------------------------------------------------------------------- /examples/ContextExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/ContextExample.js -------------------------------------------------------------------------------- /examples/DynamicRowHeightExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/DynamicRowHeightExample.js -------------------------------------------------------------------------------- /examples/ExpandedExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/ExpandedExample.js -------------------------------------------------------------------------------- /examples/FilterExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/FilterExample.js -------------------------------------------------------------------------------- /examples/FixedRightColumnsExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/FixedRightColumnsExample.js -------------------------------------------------------------------------------- /examples/FixedRowsExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/FixedRowsExample.js -------------------------------------------------------------------------------- /examples/FlexGrowExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/FlexGrowExample.js -------------------------------------------------------------------------------- /examples/FooterExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/FooterExample.js -------------------------------------------------------------------------------- /examples/HideColumnExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/HideColumnExample.js -------------------------------------------------------------------------------- /examples/InfiniteScrollExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/InfiniteScrollExample.js -------------------------------------------------------------------------------- /examples/LongClickExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/LongClickExample.js -------------------------------------------------------------------------------- /examples/MaxHeightExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/MaxHeightExample.js -------------------------------------------------------------------------------- /examples/ObjectDataExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/ObjectDataExample.js -------------------------------------------------------------------------------- /examples/OwnerHeightExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/OwnerHeightExample.js -------------------------------------------------------------------------------- /examples/PaginationExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/PaginationExample.js -------------------------------------------------------------------------------- /examples/ReorderExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/ReorderExample.js -------------------------------------------------------------------------------- /examples/ResizeExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/ResizeExample.js -------------------------------------------------------------------------------- /examples/ResponsiveExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/ResponsiveExample.js -------------------------------------------------------------------------------- /examples/ScrollToColumnExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/ScrollToColumnExample.js -------------------------------------------------------------------------------- /examples/ScrollToRowExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/ScrollToRowExample.js -------------------------------------------------------------------------------- /examples/SortExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/SortExample.js -------------------------------------------------------------------------------- /examples/StylingExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/StylingExample.js -------------------------------------------------------------------------------- /examples/TooltipExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/TooltipExample.js -------------------------------------------------------------------------------- /examples/TouchScrollExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/TouchScrollExample.js -------------------------------------------------------------------------------- /examples/helpers/ExampleImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/helpers/ExampleImage.js -------------------------------------------------------------------------------- /examples/helpers/FakeObjectDataListStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/helpers/FakeObjectDataListStore.js -------------------------------------------------------------------------------- /examples/helpers/HOC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/helpers/HOC.js -------------------------------------------------------------------------------- /examples/helpers/cells.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/helpers/cells.js -------------------------------------------------------------------------------- /examples/helpers/examplePropTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/examples/helpers/examplePropTypes.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/jest.setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/rollup.config.js -------------------------------------------------------------------------------- /site/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/Constants.js -------------------------------------------------------------------------------- /site/IndexPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/IndexPage.js -------------------------------------------------------------------------------- /site/MiniHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/MiniHeader.js -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/README.md -------------------------------------------------------------------------------- /site/SideBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/SideBar.js -------------------------------------------------------------------------------- /site/StaticHTMLBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/StaticHTMLBlock.js -------------------------------------------------------------------------------- /site/apiReference.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/apiReference.less -------------------------------------------------------------------------------- /site/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/base.less -------------------------------------------------------------------------------- /site/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/client.js -------------------------------------------------------------------------------- /site/docs/DocsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/docs/DocsPage.js -------------------------------------------------------------------------------- /site/docs/docsPageStyle.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/docs/docsPageStyle.less -------------------------------------------------------------------------------- /site/examples/ExampleHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/examples/ExampleHeader.js -------------------------------------------------------------------------------- /site/examples/ExamplesPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/examples/ExamplesPage.js -------------------------------------------------------------------------------- /site/examples/ExamplesWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/examples/ExamplesWrapper.js -------------------------------------------------------------------------------- /site/examples/examplesPageStyle.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/examples/examplesPageStyle.less -------------------------------------------------------------------------------- /site/home/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/home/Header.js -------------------------------------------------------------------------------- /site/home/HeroTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/home/HeroTable.js -------------------------------------------------------------------------------- /site/home/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/home/HomePage.js -------------------------------------------------------------------------------- /site/home/homePageStyle.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/home/homePageStyle.less -------------------------------------------------------------------------------- /site/images/arrowBullet-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/images/arrowBullet-2x.png -------------------------------------------------------------------------------- /site/images/arrowBullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/images/arrowBullet.png -------------------------------------------------------------------------------- /site/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/images/favicon.png -------------------------------------------------------------------------------- /site/images/fdt_logo_transparent_ondark_23px-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/images/fdt_logo_transparent_ondark_23px-2x.png -------------------------------------------------------------------------------- /site/images/fdt_logo_transparent_ondark_23px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/images/fdt_logo_transparent_ondark_23px.png -------------------------------------------------------------------------------- /site/images/fdt_logo_transparent_onlight_50px-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/images/fdt_logo_transparent_onlight_50px-2x.png -------------------------------------------------------------------------------- /site/images/fdt_logo_transparent_onlight_50px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/images/fdt_logo_transparent_onlight_50px.png -------------------------------------------------------------------------------- /site/images/fdt_logo_transparent_onlight_80px-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/images/fdt_logo_transparent_onlight_80px-2x.png -------------------------------------------------------------------------------- /site/images/fdt_logo_transparent_onlight_80px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/images/fdt_logo_transparent_onlight_80px.png -------------------------------------------------------------------------------- /site/miniHeader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/miniHeader.less -------------------------------------------------------------------------------- /site/renderPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/renderPath.js -------------------------------------------------------------------------------- /site/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/variables.less -------------------------------------------------------------------------------- /site/webpack-client.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/webpack-client.config.js -------------------------------------------------------------------------------- /site/webpack-prerender.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/site/webpack-prerender.config.js -------------------------------------------------------------------------------- /src/FixedDataTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/FixedDataTable.js -------------------------------------------------------------------------------- /src/FixedDataTableBufferedRows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/FixedDataTableBufferedRows.js -------------------------------------------------------------------------------- /src/FixedDataTableCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/FixedDataTableCell.js -------------------------------------------------------------------------------- /src/FixedDataTableCellDefault.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/FixedDataTableCellDefault.js -------------------------------------------------------------------------------- /src/FixedDataTableCellDefaultDeprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/FixedDataTableCellDefaultDeprecated.js -------------------------------------------------------------------------------- /src/FixedDataTableCellGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/FixedDataTableCellGroup.js -------------------------------------------------------------------------------- /src/FixedDataTableColumn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/FixedDataTableColumn.js -------------------------------------------------------------------------------- /src/FixedDataTableColumnGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/FixedDataTableColumnGroup.js -------------------------------------------------------------------------------- /src/FixedDataTableContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/FixedDataTableContainer.js -------------------------------------------------------------------------------- /src/FixedDataTableContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/FixedDataTableContext.js -------------------------------------------------------------------------------- /src/FixedDataTableEventHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/FixedDataTableEventHelper.js -------------------------------------------------------------------------------- /src/FixedDataTableRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/FixedDataTableRow.js -------------------------------------------------------------------------------- /src/FixedDataTableStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/FixedDataTableStore.js -------------------------------------------------------------------------------- /src/FixedDataTableTranslateDOMPosition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/FixedDataTableTranslateDOMPosition.js -------------------------------------------------------------------------------- /src/ReactTouchHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/ReactTouchHandler.js -------------------------------------------------------------------------------- /src/actions/scrollActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/actions/scrollActions.js -------------------------------------------------------------------------------- /src/api/apiData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/api/apiData.js -------------------------------------------------------------------------------- /src/api/apiMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/api/apiMethods.js -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/css/layout/ScrollbarLayout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/css/layout/ScrollbarLayout.css -------------------------------------------------------------------------------- /src/css/layout/fixedDataTableCellGroupLayout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/css/layout/fixedDataTableCellGroupLayout.css -------------------------------------------------------------------------------- /src/css/layout/fixedDataTableCellLayout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/css/layout/fixedDataTableCellLayout.css -------------------------------------------------------------------------------- /src/css/layout/fixedDataTableColumnResizerLineLayout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/css/layout/fixedDataTableColumnResizerLineLayout.css -------------------------------------------------------------------------------- /src/css/layout/fixedDataTableLayout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/css/layout/fixedDataTableLayout.css -------------------------------------------------------------------------------- /src/css/layout/fixedDataTableRowLayout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/css/layout/fixedDataTableRowLayout.css -------------------------------------------------------------------------------- /src/css/style/Scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/css/style/Scrollbar.css -------------------------------------------------------------------------------- /src/css/style/fixedDataTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/css/style/fixedDataTable.css -------------------------------------------------------------------------------- /src/css/style/fixedDataTableCell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/css/style/fixedDataTableCell.css -------------------------------------------------------------------------------- /src/css/style/fixedDataTableColumnReorder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/css/style/fixedDataTableColumnReorder.css -------------------------------------------------------------------------------- /src/css/style/fixedDataTableColumnResizerLine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/css/style/fixedDataTableColumnResizerLine.css -------------------------------------------------------------------------------- /src/css/style/fixedDataTableRow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/css/style/fixedDataTableRow.css -------------------------------------------------------------------------------- /src/enums/CellGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/enums/CellGroup.js -------------------------------------------------------------------------------- /src/helper/convertColumnElementsToData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/helper/convertColumnElementsToData.js -------------------------------------------------------------------------------- /src/helper/shallowEqualSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/helper/shallowEqualSelector.js -------------------------------------------------------------------------------- /src/helper/widthHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/helper/widthHelper.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/index.js -------------------------------------------------------------------------------- /src/plugins/ExternalContextProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/plugins/ExternalContextProvider.js -------------------------------------------------------------------------------- /src/plugins/ResizeReorder/DragProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/plugins/ResizeReorder/DragProxy.js -------------------------------------------------------------------------------- /src/plugins/ResizeReorder/ReorderCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/plugins/ResizeReorder/ReorderCell.js -------------------------------------------------------------------------------- /src/plugins/ResizeReorder/ResizeCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/plugins/ResizeReorder/ResizeCell.js -------------------------------------------------------------------------------- /src/plugins/ResizeReorder/ResizerKnob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/plugins/ResizeReorder/ResizerKnob.js -------------------------------------------------------------------------------- /src/plugins/ResizeReorder/ResizerLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/plugins/ResizeReorder/ResizerLine.js -------------------------------------------------------------------------------- /src/plugins/ScrollContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/plugins/ScrollContainer.js -------------------------------------------------------------------------------- /src/plugins/Scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/plugins/Scrollbar.js -------------------------------------------------------------------------------- /src/reducers/columnStateHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/reducers/columnStateHelper.js -------------------------------------------------------------------------------- /src/reducers/computeRenderedRows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/reducers/computeRenderedRows.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/scrollAnchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/reducers/scrollAnchor.js -------------------------------------------------------------------------------- /src/reducers/updateRowHeight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/reducers/updateRowHeight.js -------------------------------------------------------------------------------- /src/selectors/ariaAttributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/selectors/ariaAttributes.js -------------------------------------------------------------------------------- /src/selectors/columnTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/selectors/columnTemplates.js -------------------------------------------------------------------------------- /src/selectors/columnWidths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/selectors/columnWidths.js -------------------------------------------------------------------------------- /src/selectors/roughHeights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/selectors/roughHeights.js -------------------------------------------------------------------------------- /src/selectors/scrollbarsVisible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/selectors/scrollbarsVisible.js -------------------------------------------------------------------------------- /src/selectors/tableHeights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/selectors/tableHeights.js -------------------------------------------------------------------------------- /src/stubs/Object.assign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/stubs/Object.assign.js -------------------------------------------------------------------------------- /src/stubs/UserAgent_DEPRECATED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/stubs/UserAgent_DEPRECATED.js -------------------------------------------------------------------------------- /src/stubs/cssVar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/stubs/cssVar.js -------------------------------------------------------------------------------- /src/stubs/invariant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/stubs/invariant.js -------------------------------------------------------------------------------- /src/vendor_upstream/core/ExecutionEnvironment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/core/ExecutionEnvironment.js -------------------------------------------------------------------------------- /src/vendor_upstream/core/Keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/core/Keys.js -------------------------------------------------------------------------------- /src/vendor_upstream/core/camelize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/core/camelize.js -------------------------------------------------------------------------------- /src/vendor_upstream/core/cancelAnimationFramePolyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/core/cancelAnimationFramePolyfill.js -------------------------------------------------------------------------------- /src/vendor_upstream/core/clamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/core/clamp.js -------------------------------------------------------------------------------- /src/vendor_upstream/core/debounceCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/core/debounceCore.js -------------------------------------------------------------------------------- /src/vendor_upstream/core/emptyFunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/core/emptyFunction.js -------------------------------------------------------------------------------- /src/vendor_upstream/core/getVendorPrefixedName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/core/getVendorPrefixedName.js -------------------------------------------------------------------------------- /src/vendor_upstream/core/globalThisPolyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/core/globalThisPolyfill.js -------------------------------------------------------------------------------- /src/vendor_upstream/core/joinClasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/core/joinClasses.js -------------------------------------------------------------------------------- /src/vendor_upstream/core/nativeRequestAnimationFrame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/core/nativeRequestAnimationFrame.js -------------------------------------------------------------------------------- /src/vendor_upstream/core/requestAnimationFramePolyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/core/requestAnimationFramePolyfill.js -------------------------------------------------------------------------------- /src/vendor_upstream/core/shallowEqual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/core/shallowEqual.js -------------------------------------------------------------------------------- /src/vendor_upstream/dom/BrowserSupportCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/dom/BrowserSupportCore.js -------------------------------------------------------------------------------- /src/vendor_upstream/dom/DOMMouseMoveTracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/dom/DOMMouseMoveTracker.js -------------------------------------------------------------------------------- /src/vendor_upstream/dom/ReactWheelHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/dom/ReactWheelHandler.js -------------------------------------------------------------------------------- /src/vendor_upstream/dom/normalizeWheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/dom/normalizeWheel.js -------------------------------------------------------------------------------- /src/vendor_upstream/dom/translateDOMPositionXY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/dom/translateDOMPositionXY.js -------------------------------------------------------------------------------- /src/vendor_upstream/react/renderers/dom/client/utils/isEventSupported.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/react/renderers/dom/client/utils/isEventSupported.js -------------------------------------------------------------------------------- /src/vendor_upstream/struct/Heap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/struct/Heap.js -------------------------------------------------------------------------------- /src/vendor_upstream/struct/IntegerBufferSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/struct/IntegerBufferSet.js -------------------------------------------------------------------------------- /src/vendor_upstream/struct/PrefixIntervalTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/struct/PrefixIntervalTree.js -------------------------------------------------------------------------------- /src/vendor_upstream/stubs/EventListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/stubs/EventListener.js -------------------------------------------------------------------------------- /src/vendor_upstream/stubs/cx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/src/vendor_upstream/stubs/cx.js -------------------------------------------------------------------------------- /test/FixedDataTableRoot-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/test/FixedDataTableRoot-test.js -------------------------------------------------------------------------------- /test/ReactTouchHandler-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/test/ReactTouchHandler-test.js -------------------------------------------------------------------------------- /test/helper/convertColumnElementsToData-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/test/helper/convertColumnElementsToData-test.js -------------------------------------------------------------------------------- /test/plugins/ReorderCell-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/test/plugins/ReorderCell-test.js -------------------------------------------------------------------------------- /test/plugins/ResizeCell-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/test/plugins/ResizeCell-test.js -------------------------------------------------------------------------------- /test/reducers/columnStateHelper-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/test/reducers/columnStateHelper-test.js -------------------------------------------------------------------------------- /test/reducers/computeRenderedRows-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/test/reducers/computeRenderedRows-test.js -------------------------------------------------------------------------------- /test/reducers/initializeRowHeightsAndOffsets-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/test/reducers/initializeRowHeightsAndOffsets-test.js -------------------------------------------------------------------------------- /test/reducers/scrollAnchor-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/test/reducers/scrollAnchor-test.js -------------------------------------------------------------------------------- /test/selectors/columnTemplates-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/test/selectors/columnTemplates-test.js -------------------------------------------------------------------------------- /test/selectors/columnWidths-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/test/selectors/columnWidths-test.js -------------------------------------------------------------------------------- /test/selectors/roughHeights-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/test/selectors/roughHeights-test.js -------------------------------------------------------------------------------- /test/selectors/scrollbarsVisible-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/test/selectors/scrollbarsVisible-test.js -------------------------------------------------------------------------------- /test/selectors/tableHeights-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/test/selectors/tableHeights-test.js -------------------------------------------------------------------------------- /testRunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/testRunner.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schrodinger/fixed-data-table-2/HEAD/yarn.lock --------------------------------------------------------------------------------