UNPKG

@adaptabletools/adaptable

Version:

Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

10 lines (9 loc) 581 B
import { jsx as _jsx } from "react/jsx-runtime"; import { InfiniteTable as InfiniteTableComponent, } from '@infinite-table/infinite-react'; export * from '@infinite-table/infinite-react'; import { INFINITE_TABLE_LICENSE_KEY } from '../../EnvVars'; function InfiniteTableGrid(props) { return (_jsx(InfiniteTableComponent, { sortable: false, rowHeight: '--ab-grid-row-height', draggableColumns: false, keyboardNavigation: false, ...props, licenseKey: INFINITE_TABLE_LICENSE_KEY })); } InfiniteTableComponent.licenseKey = INFINITE_TABLE_LICENSE_KEY; export { InfiniteTableGrid };