@infinite-table/infinite-react 8.0.0 → 8.0.2

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/index.d.ts CHANGED
@@ -998,6 +998,25 @@ type PointCoords = {
998
998
  top: number;
999
999
  left: number;
1000
1000
  };
1001
+ declare class Point {
1002
+ top: PointCoords['top'];
1003
+ left: PointCoords['left'];
1004
+ static clone(point: PointCoords): Point;
1005
+ static from(point: PointCoords): Point;
1006
+ constructor(point: PointCoords);
1007
+ shift(shiftOptions: {
1008
+ top: number;
1009
+ } | {
1010
+ top: number;
1011
+ left: number;
1012
+ } | {
1013
+ left: number;
1014
+ }): this;
1015
+ getDistanceToPoint(point: PointCoords): {
1016
+ top: number;
1017
+ left: number;
1018
+ };
1019
+ }
1001
1020
 
1002
1021
  interface RowDetailCacheStorage<_K, T> {
1003
1022
  add(key: any, value: T): void;
@@ -6861,6 +6880,24 @@ type InfiniteCheckBoxProps = {
6861
6880
  };
6862
6881
  declare function InfiniteCheckBox(props: InfiniteCheckBoxProps): React$1.JSX.Element;
6863
6882
 
6883
+ type ArrayWithAtLeast3<T> = [T, T, T, ...T[]];
6884
+
6885
+ declare abstract class PolyWithPoints {
6886
+ abstract getPoints(): ArrayWithAtLeast3<PointCoords>;
6887
+ abstract shift(shiftOptions: {
6888
+ top: number;
6889
+ } | {
6890
+ top: number;
6891
+ left: number;
6892
+ } | {
6893
+ left: number;
6894
+ }): PolyWithPoints;
6895
+ containsPoint(point: PointCoords): boolean;
6896
+ contains(poly: PolyWithPoints): boolean;
6897
+ intersects(r: PolyWithPoints): boolean;
6898
+ privateIntersects(r: PolyWithPoints, skipOtherCheck: boolean): boolean;
6899
+ }
6900
+
6864
6901
  type CoordsWithSize = {
6865
6902
  width: number;
6866
6903
  height: number;
@@ -6874,6 +6911,49 @@ type CoordsNoSize = {
6874
6911
  top: number;
6875
6912
  };
6876
6913
  type RectangleCoords = CoordsWithSize | CoordsNoSize;
6914
+ declare class Rectangle extends PolyWithPoints {
6915
+ top: number;
6916
+ left: number;
6917
+ width: number;
6918
+ height: number;
6919
+ static fromDOMRect(rect: DOMRect): Rectangle;
6920
+ static clone(rect: DOMRect | Rectangle | RectangleCoords): Rectangle;
6921
+ static from(rect: DOMRect | Rectangle | RectangleCoords): Rectangle;
6922
+ static fromPoint(point: PointCoords): Rectangle;
6923
+ constructor(coordsAndSize: RectangleCoords);
6924
+ getMinimumBoundingRectangle(...otherRectangles: Rectangle[]): Rectangle;
6925
+ toDOMRect(): DOMRectReadOnly;
6926
+ containsPoint(p: PointCoords): boolean;
6927
+ getTopLeft(): {
6928
+ left: number;
6929
+ top: number;
6930
+ };
6931
+ getTopRight(): {
6932
+ left: number;
6933
+ top: number;
6934
+ };
6935
+ getBottomLeft(): {
6936
+ left: number;
6937
+ top: number;
6938
+ };
6939
+ getBottomRight(): {
6940
+ left: number;
6941
+ top: number;
6942
+ };
6943
+ getCenter(): {
6944
+ left: number;
6945
+ top: number;
6946
+ };
6947
+ getPoints(): [Point, Point, Point, Point];
6948
+ shift(shiftOptions: {
6949
+ top: number;
6950
+ } | {
6951
+ top: number;
6952
+ left: number;
6953
+ } | {
6954
+ left: number;
6955
+ }): this;
6956
+ }
6877
6957
 
6878
6958
  type Alignable = RectangleCoords | HTMLElement | DOMRect;
6879
6959
  type AlignPositionEnum = 'TopLeft' | 'TopCenter' | 'TopRight' | 'CenterRight' | 'BottomRight' | 'BottomCenter' | 'BottomLeft' | 'CenterLeft' | 'Center';
@@ -7708,6 +7788,301 @@ declare namespace Menu {
7708
7788
  var __is_infinite_menu_component: boolean;
7709
7789
  }
7710
7790
 
7791
+ type DragDropSourceAndTarget = {
7792
+ dragSourceListId: string | null;
7793
+ dropTargetListId: string | null;
7794
+ dragItemId: string;
7795
+ status: 'accepted' | 'rejected';
7796
+ };
7797
+ type DragDropProviderContextValue = DragDropSourceAndTarget & {
7798
+ updateDragOperationSourceAndTarget: (params: DragDropSourceAndTarget) => void;
7799
+ getCurrentDragSourceAndTarget: () => DragDropSourceAndTarget;
7800
+ };
7801
+ declare const useDragDropProvider: () => DragDropProviderContextValue;
7802
+ declare const DragDropProvider: (props: {
7803
+ children: React$1.ReactNode | ((context: DragDropProviderContextValue) => React$1.ReactNode);
7804
+ }) => React$1.JSX.Element;
7805
+
7806
+ type EventHandler<T extends (...args: any[]) => void> = T;
7807
+ declare class EventEmitter<Events extends Record<string, (...args: any[]) => void>> {
7808
+ private listeners;
7809
+ constructor(listeners?: {
7810
+ [K in keyof Events]?: EventHandler<Events[K]>;
7811
+ });
7812
+ on<K extends keyof Events>(event: K, handler: EventHandler<Events[K]>): () => void;
7813
+ once<K extends keyof Events>(event: K, handler: EventHandler<Events[K]>): () => void;
7814
+ off<K extends keyof Events>(event: K, handler: EventHandler<Events[K]>): void;
7815
+ emit<K extends keyof Events>(event: K, ...payload: Parameters<Events[K]>): void;
7816
+ clear<K extends keyof Events>(event: K): void;
7817
+ clearAll(): void;
7818
+ }
7819
+
7820
+ type DragInteractionTargetOrientation = 'horizontal' | 'vertical';
7821
+ type DragInteractionTargetData = {
7822
+ orientation: DragInteractionTargetOrientation;
7823
+ draggableItems: DraggableItem[];
7824
+ listRectangle: Rectangle;
7825
+ listId: string;
7826
+ acceptDropsFrom?: string[];
7827
+ shouldAcceptDrop?: (event: DragInteractionTargetMoveEvent) => boolean;
7828
+ initial: boolean;
7829
+ preserveDragSpace?: boolean;
7830
+ };
7831
+ type DraggableItem = {
7832
+ id: string;
7833
+ rect: DOMRectReadOnly;
7834
+ };
7835
+ type DragInteractionTargetStartEvent = {
7836
+ dragIndex: number;
7837
+ dragItem: DraggableItem;
7838
+ dragSourceListId: string;
7839
+ dropTargetListId: string | null;
7840
+ };
7841
+ type DragInteractionTargetDropEvent = {
7842
+ dragIndex: number;
7843
+ dragItem: DraggableItem;
7844
+ items: DraggableItem[];
7845
+ outside: boolean;
7846
+ dropIndex: number;
7847
+ dragSourceListId: string;
7848
+ dropTargetListId: string | null;
7849
+ sortedIndexes: number[];
7850
+ status: 'accepted' | 'rejected';
7851
+ };
7852
+ type DragInteractionTargetMoveEvent = {
7853
+ offset: PointCoords;
7854
+ dropIndex: number;
7855
+ dragIndex: number;
7856
+ dragItem: DraggableItem;
7857
+ items: DraggableItem[];
7858
+ outside: boolean;
7859
+ dragSourceListId: string;
7860
+ dropTargetListId: string | null;
7861
+ dragRect: DOMRectReadOnly;
7862
+ offsetsForItems: PointCoords[];
7863
+ status: 'accepted' | 'rejected';
7864
+ };
7865
+ type DragInteractionTargetEvents = {
7866
+ move: (params: DragInteractionTargetMoveEvent) => void;
7867
+ drop: (params: DragInteractionTargetDropEvent) => void;
7868
+ 'accept-feedback': (params: DragInteractionTargetMoveEvent) => void;
7869
+ 'reject-feedback': (params: DragInteractionTargetMoveEvent) => void;
7870
+ start: (params: DragInteractionTargetStartEvent) => void;
7871
+ unregister: (self: DragInteractionTarget) => void;
7872
+ };
7873
+ declare class DragInteractionTarget extends EventEmitter<DragInteractionTargetEvents> {
7874
+ private data;
7875
+ /**
7876
+ * When the active drag source is outside the drag interaction target,
7877
+ * the drag index will be set to -1.
7878
+ *
7879
+ * Otherwise, when this drag interaction target contains
7880
+ * the active drag source, the drag index will be set to the index of the draggable item
7881
+ * that is being dragged.
7882
+ */
7883
+ protected dragIndex: number;
7884
+ breakpoints: number[];
7885
+ constructor(data: DragInteractionTargetData);
7886
+ get listId(): string;
7887
+ activeDragSourcePosition: 'inside' | 'outside';
7888
+ setData(data: DragInteractionTargetData): boolean;
7889
+ getData(): DragInteractionTargetData;
7890
+ isEqual(model: DragInteractionTarget): boolean;
7891
+ acceptsSelfDrops(): boolean;
7892
+ private previousAcceptsDropResult;
7893
+ acceptsDrop(event: DragInteractionTargetMoveEvent): boolean;
7894
+ /**
7895
+ * Adjusts breakpoints and listRectangle to compensate for container scroll.
7896
+ * When the container scrolls by `scrollDelta`, items shift in the viewport
7897
+ * but the pointer (in the source-adjusted coordinate space) doesn't change.
7898
+ * Shifting breakpoints keeps the drop index calculation correct.
7899
+ */
7900
+ adjustForScroll(scrollDelta: number): void;
7901
+ move(params: DragInteractionTargetMoveEvent): void;
7902
+ unregister(): void;
7903
+ start(params: DragInteractionTargetStartEvent): void;
7904
+ drop(params: DragInteractionTargetMoveEvent): void;
7905
+ }
7906
+
7907
+ type DragListContextValue = {
7908
+ dragItemId: string | number | null;
7909
+ onDragItemPointerDown: (e: React$1.PointerEvent) => void;
7910
+ draggingInProgress: boolean;
7911
+ dragListId: string;
7912
+ dragSourceListId: string | null;
7913
+ dropTargetListId: string | null;
7914
+ status: 'accepted' | 'rejected';
7915
+ };
7916
+ declare const useDragListContext: () => DragListContextValue;
7917
+ type DragProxySetupParams = {
7918
+ dragItemNode: HTMLElement;
7919
+ dragItemId: string;
7920
+ initialRect: DOMRect;
7921
+ initialCoords: {
7922
+ left: number;
7923
+ top: number;
7924
+ };
7925
+ /**
7926
+ * Lazy getter. On first access it creates the default proxy: clones the
7927
+ * drag item node, applies fixed-position styles, and appends it to
7928
+ * document.body. Subsequent accesses return the same element.
7929
+ */
7930
+ readonly proxyElement: HTMLElement;
7931
+ };
7932
+ type DragProxySetupResult = {
7933
+ /** If omitted, the default proxy (from params.proxyElement) is used. */
7934
+ proxyElement?: HTMLElement;
7935
+ /** Called on drop/cancel with a reference to the proxy element. */
7936
+ cleanup?: (params: {
7937
+ proxyElement: HTMLElement;
7938
+ }) => void;
7939
+ };
7940
+ type DragProxyMoveParams = {
7941
+ proxyElement: HTMLElement;
7942
+ dx: number;
7943
+ dy: number;
7944
+ };
7945
+ type DragProxyRenderParams = {
7946
+ /**
7947
+ * The id of the item being dragged. `null` on the final cleanup call
7948
+ * (drop/cancel) — return null to unmount the proxy.
7949
+ */
7950
+ dragItemId: string | null;
7951
+ initialRect: DOMRect;
7952
+ dx: number;
7953
+ dy: number;
7954
+ /** Must be passed to the root element of the rendered proxy. */
7955
+ ref: React$1.RefCallback<HTMLElement>;
7956
+ };
7957
+ type DragListProps = {
7958
+ dragListId: string;
7959
+ children: (domProps: React$1.HTMLProps<HTMLDivElement>, context: DragListContextValue) => React$1.ReactNode;
7960
+ orientation: 'horizontal' | 'vertical';
7961
+ acceptDropsFrom?: string[];
7962
+ removeOnDropOutside?: boolean;
7963
+ shouldAcceptDrop?: (event: DragInteractionTargetMoveEvent) => boolean;
7964
+ onRemove?: (sortedIndexes: number[], options: {
7965
+ dragIndex: number;
7966
+ dragItemId: string;
7967
+ }) => void;
7968
+ onAcceptDrop?: (options: {
7969
+ dragItemId: string;
7970
+ dragSourceListId: string;
7971
+ dropTargetListId: string;
7972
+ dragIndex: number;
7973
+ dropIndex: number;
7974
+ dropItemId?: string;
7975
+ }) => void;
7976
+ onDrop: (sortedIndexes: number[], options: {
7977
+ dragIndex: number;
7978
+ dropIndex: number;
7979
+ dragItemId: string;
7980
+ dropItemId?: string;
7981
+ }) => void;
7982
+ updatePosition?: (options: {
7983
+ id: string;
7984
+ node: HTMLElement;
7985
+ offset: null | {
7986
+ left: number;
7987
+ top: number;
7988
+ };
7989
+ }) => void;
7990
+ /**
7991
+ * Controls how the dragged item is rendered during a drag operation.
7992
+ *
7993
+ * - `'inline'`: the item stays in the DOM flow and moves via CSS transforms.
7994
+ * - `'proxy'`: (default) a fixed-position clone is created outside scroll containers so it is
7995
+ * never clipped by overflow. The original item is visually hidden during the drag.
7996
+ */
7997
+ dragStrategy?: 'inline' | 'proxy';
7998
+ /**
7999
+ * Called once on the first pointer move to create the drag proxy.
8000
+ * Access params.proxyElement to get (and lazily create) the default proxy,
8001
+ * or build your own and return it.
8002
+ * If the returned object omits proxyElement, the default is used.
8003
+ * Only called when dragStrategy is 'proxy' and renderDragProxy is not provided.
8004
+ */
8005
+ onDragProxySetup?: (params: DragProxySetupParams) => DragProxySetupResult | void;
8006
+ /**
8007
+ * Called on every pointer move to reposition the proxy.
8008
+ * The default implementation sets transform: translate3d(dx, dy, 0).
8009
+ * Only called when dragStrategy is 'proxy' and renderDragProxy is not provided.
8010
+ */
8011
+ onDragProxyMove?: (params: DragProxyMoveParams) => void;
8012
+ /**
8013
+ * Render a custom React element as the drag proxy. The function should
8014
+ * call createPortal() itself and attach params.ref to the root element.
8015
+ * When provided, onDragProxySetup and onDragProxyMove are ignored.
8016
+ * The original DOM node is hidden automatically.
8017
+ * Called with dragItemId: null on drop/cancel — return null to unmount.
8018
+ */
8019
+ renderDragProxy?: (params: DragProxyRenderParams) => React$1.ReactNode;
8020
+ /**
8021
+ * When true, the space occupied by the dragged item in the source list
8022
+ * is preserved (not collapsed) while dragging outside the list.
8023
+ */
8024
+ preserveDragSpace?: boolean;
8025
+ };
8026
+ /**
8027
+ * Creates the default proxy element: clones the node, applies fixed-position
8028
+ * styles, and appends it to document.body.
8029
+ */
8030
+ declare function createDefaultProxy(dragItemNode: HTMLElement, initialRect: DOMRect): HTMLElement;
8031
+ declare function defaultDragProxyMove({ proxyElement, dx, dy, }: DragProxyMoveParams): void;
8032
+ declare const DragList: {
8033
+ (props: DragListProps): React$1.JSX.Element;
8034
+ DraggableItem: (props: DraggableItemProps) => React$1.JSX.Element;
8035
+ };
8036
+ type DragItemContextValue = {
8037
+ dragItemId: string | number;
8038
+ dragListId: string | null;
8039
+ active: boolean;
8040
+ draggingInProgress: boolean;
8041
+ dragSourceListId: string | null;
8042
+ dropTargetListId: string | null;
8043
+ };
8044
+ type DraggableItemProps = {
8045
+ id: string | number;
8046
+ children: React$1.ReactNode | ((domProps: React$1.HTMLAttributes<HTMLDivElement>, context: DragItemContextValue) => React$1.ReactNode);
8047
+ };
8048
+ declare const DRAG_ITEM_ATTRIBUTE = "data-drag-item-id";
8049
+
8050
+ type AutoScrollerConfig = {
8051
+ startFromPercentage: number;
8052
+ maxScrollAtPercentage: number;
8053
+ maxPixelScroll: number;
8054
+ ease: (percentage: number) => number;
8055
+ durationDampening: {
8056
+ stopDampeningAt: number;
8057
+ accelerateAt: number;
8058
+ };
8059
+ };
8060
+ type AutoScrollerOnScroll = (scrollDelta: PointCoords) => void;
8061
+ declare class AutoScroller {
8062
+ private scrollContainer;
8063
+ private orientation;
8064
+ private config;
8065
+ private rafId;
8066
+ private lastPointer;
8067
+ private dragStartTime;
8068
+ private shouldUseDampening;
8069
+ private onScroll;
8070
+ private active;
8071
+ private maxScrollTop;
8072
+ private maxScrollLeft;
8073
+ constructor(options: {
8074
+ orientation: 'horizontal' | 'vertical';
8075
+ onScroll: AutoScrollerOnScroll;
8076
+ config?: Partial<AutoScrollerConfig>;
8077
+ });
8078
+ start(listElement: HTMLElement): void;
8079
+ getScrollContainer(): HTMLElement | null;
8080
+ updatePointer(point: PointCoords): void;
8081
+ private scheduleScroll;
8082
+ private computeScroll;
8083
+ stop(): void;
8084
+ }
8085
+
7711
8086
  declare function useEffectWithChanges<T>(fn: (changes: Record<keyof T, any>, prevValues: Record<string, any>) => void | (() => void), deps: Record<keyof T, any>): void;
7712
8087
  declare function useLayoutEffectWithChanges<T>(fn: (changes: Record<keyof T, any>, prevValues: Record<string, any>) => void | (() => void), deps: Record<keyof T, any>): void;
7713
8088
  declare function useEffectWithObject(fn: EffectCallback, deps: Record<string, any>): void;
@@ -7793,4 +8168,4 @@ declare const components: {
7793
8168
  NumberFilterEditor: typeof NumberFilterEditor;
7794
8169
  };
7795
8170
 
7796
- export { type AdvancedAlignable, CellSelectionState, type CellSelectionStateObject, type ColumnTypeWithInherit, DataClient, DataSource, type DataSourceAction, DataSourceActionType, type DataSourceAggregationReducer, type DataSourceApi, type DataSourceCRUDParam, type DataSourceCallback_BaseParam, type DataSourceComponentActions, type DataSourceContextValue, type DataSourceData, type DataSourceDataFn, type DataSourceDataParams, type DataSourceDataParamsChanges, type DataSourceDebugWarningKey, type DataSourceDerivedState, type DataSourceFilterFunctionParam, type DataSourceFilterOperator, type DataSourceFilterOperatorFunction, type DataSourceFilterOperatorFunctionParam, type DataSourceFilterType, type DataSourceFilterValueItem, type DataSourceFilterValueItemValueGetter, type DataSourceGroupBy, type DataSourceGroupRowsList, type DataSourceInsertParam, type DataSourceLivePaginationCursorFn, type DataSourceLivePaginationCursorParams, type DataSourceLivePaginationCursorValue, type DataSourceMappedState, type DataSourceMappings, type DataSourceMasterDetailContextValue, type DataSourcePivotBy, type DataSourcePropAggregationReducers, type DataSourcePropCellSelection, type DataSourcePropCellSelection_MultiCell, type DataSourcePropCellSelection_SingleCell, type DataSourcePropFilterFunction, type DataSourcePropFilterTypes, type DataSourcePropFilterValue, type DataSourcePropGroupBy, type DataSourcePropGroupRowsState, type DataSourcePropGroupRowsStateObject, type DataSourcePropIsNodeExpanded, type DataSourcePropIsNodeReadOnly, type DataSourcePropIsNodeSelectable, type DataSourcePropIsNodeSelected, type DataSourcePropIsRowSelected, type DataSourcePropLivePaginationCursor, type DataSourcePropMultiRowSelectionChangeParamType, type DataSourcePropOnCellSelectionChange, type DataSourcePropOnCellSelectionChange_MultiCell, type DataSourcePropOnCellSelectionChange_SingleCell, type DataSourcePropOnRowSelectionChange, type DataSourcePropOnRowSelectionChange_MultiRow, type DataSourcePropOnRowSelectionChange_SingleRow, type DataSourcePropOnTreeSelectionChange, type DataSourcePropOnTreeSelectionChange_MultiNode, type DataSourcePropOnTreeSelectionChange_SingleNode, type DataSourcePropPivotBy, type DataSourcePropRowInfoReducers, type DataSourcePropRowSelection, type DataSourcePropRowSelection_MultiRow, type DataSourcePropRowSelection_SingleRow, type DataSourcePropSelectionMode, type DataSourcePropShouldReloadData, type DataSourcePropShouldReloadDataObject, type DataSourcePropSortFn, type DataSourcePropSortInfo, type DataSourcePropSortTypes, type DataSourcePropTreeFilterFunction, type DataSourcePropTreeSelection, type DataSourcePropTreeSelection_MultiNode, type DataSourcePropTreeSelection_SingleNode, type DataSourceProps, type DataSourcePropsNotAvailableInTreeDataSource, type DataSourcePropsWithChildren, type DataSourceRawReducer, type DataSourceRemoteData, type DataSourceRowInfoReducer, type DataSourceSetupState, type DataSourceSingleSortInfo, type DataSourceSortInfo, type DataSourceStableContextValue, type DataSourceState, type DataSourceUpdateParam, type DebugLogger, type DebugTimingKey, type DebugWarningPayload, DeepMap, type DevToolsDataSourceOverrides, type DevToolsGenericMessage, type DevToolsHookFn, type DevToolsHookFnOptions, type DevToolsHostPageLogMessage, type DevToolsHostPageLogMessagePayload, type DevToolsHostPageMessage, type DevToolsHostPageMessagePayload, type DevToolsHostPageMessageType, type DevToolsInfiniteOverrides, type DevToolsMessageAddress, type DevToolsOverrides, type ElementContainerGetter, type ErrorCodeKey, FixedSizeSet, FlashingColumnCell, GroupRowsState, INTERNAL_MatrixDebugger, type InfiniteColumnEditorContextType, InfiniteTable, type InfiniteTableAction, InfiniteTableActionType, type InfiniteTableApi, type InfiniteTableCellSelectionApi, InfiniteTableClassName, type InfiniteTableColumn, type InfiniteTableColumnAggregator, type InfiniteTableColumnApi, type InfiniteTableColumnCellContextType, type InfiniteTableColumnComparer, type InfiniteTableColumnGroup, type InfiniteTableColumnRenderFunctionForGroupRows, type InfiniteTableColumnRenderFunctionForNormalRows, type InfiniteTableColumnRenderValueParam, type InfiniteTableColumnRowspanParam, type InfiniteTableColumnSizingOptions, type InfiniteTableColumnValueFormatterParams, type InfiniteTableColumnValueGetterParams, InfiniteTableComponent, type InfiniteTableComputedColumn, type InfiniteTableComputedValues, type InfiniteTableContextValue, type InfiniteTableDebugWarningKey, type InfiniteTableGroupColumnBase, type InfiniteTableGroupColumnFunction, type InfiniteTableGroupColumnGetterOptions, type InfiniteTableKeyboardNavigationApi, type InfiniteTablePivotColumn, type InfiniteTablePropAutoSizeColumnsKey, type InfiniteTablePropColumnGroupVisibility, type InfiniteTablePropColumnGroups, type InfiniteTablePropColumnOrder, type InfiniteTablePropColumnPinning, type InfiniteTablePropColumnSizing, type InfiniteTablePropColumnTypes, type InfiniteTablePropColumnVisibility, type InfiniteTablePropColumns, type InfiniteTablePropComponents, type InfiniteTablePropGetCellContextMenuItems, type InfiniteTablePropGetColumnMenuItems, type InfiniteTablePropGetContextMenuItems, type InfiniteTablePropGroupColumn, type InfiniteTablePropGroupRenderStrategy, type InfiniteTablePropHeaderOptions, type InfiniteTablePropKeyboardNavigation, type InfiniteTablePropKeyboardShorcut, type InfiniteTablePropMultiSortBehavior, type InfiniteTablePropRowClassName, type InfiniteTablePropRowStyle, type InfiniteTableProps, type InfiniteTablePropsNotAvailableInTreeGrid, type InfiniteTableRowClassNameFn, type InfiniteTableRowDetailApi, type InfiniteTableRowInfo, type InfiniteTableRowSelectionApi, type InfiniteTableRowStyleFn, type InfiniteTableState, type InfiniteTable_HasGrouping_RowInfoGroup, type InfiniteTable_HasGrouping_RowInfoNormal, type InfiniteTable_Tree_RowInfoLeafNode, type InfiniteTable_Tree_RowInfoNode, type InfiniteTable_Tree_RowInfoParentNode, type LazyGroupDataDeepMap, type LazyGroupDataItem, type LazyRowInfoGroup, Menu, type MenuChildrenFnParam, type MenuColumn, type MenuColumnRenderParam, type MenuDecoration, type MenuIconProps, type MenuItemActionContext, type MenuItemDefinition, type MenuItemObject, type MenuProps, type MenuRenderable, type MenuRuntimeItem, type MenuRuntimeItemSelectable, type MenuSeparator, type OverlayShowParams, RowDetailCache, RowDetailState, type RowDetailStateObject, RowDisabledState, type RowDisabledStateObject, RowSelectionState, type ScrollStopInfo, type Scrollbars, type ShowOverlayFn, type TableRenderRange, TreeDataSource, type TreeDataSourceProps, TreeExpandState, type TreeExpandStateValue, TreeGrid, type TreeGridOnlyProps, type TreeGridProps, TreeSelectionState, type TreeSelectionStateObject, type TreeSelectionValue, type UpdateChildrenFn, type UpdateOverlayContentFn, type WaitForNodeOptions, WeakFixedSizeSet, alignNode, components, createFlashingColumnCellComponent, debounce, debug, defaultFilterTypes, eventMatchesKeyboardShortcut, filterDataArray, defaultFilterTypes as filterTypes, flatten, buildManagedComponent as getComponentStateRoot, group, interceptMap, keyboardShortcuts, multisort, multisortNested, queryKeyToCacheKey, toTreeDataArray, useManagedComponentState as useComponentState, useDataSourceInternal, useDataSourceSelector, useDataSourceState, useEffectWhen, useEffectWhenSameDeps, useEffectWithChanges, useEffectWithObject, useGridScroll, useInfiniteColumnCell, useInfiniteColumnEditor, useInfiniteColumnFilterEditor, useInfiniteHeaderCell, useInfinitePortalContainer, useLayoutEffectWithChanges, useManagedDataSource, useMasterRowInfo, useOverlay, useOverlayPortal, usePrevious, useRowInfoReducers, useVisibleColumnSizes, withSelectedLeafNodesOnly };
8171
+ export { type AdvancedAlignable, AutoScroller, type AutoScrollerConfig, CellSelectionState, type CellSelectionStateObject, type ColumnTypeWithInherit, DRAG_ITEM_ATTRIBUTE, DataClient, DataSource, type DataSourceAction, DataSourceActionType, type DataSourceAggregationReducer, type DataSourceApi, type DataSourceCRUDParam, type DataSourceCallback_BaseParam, type DataSourceComponentActions, type DataSourceContextValue, type DataSourceData, type DataSourceDataFn, type DataSourceDataParams, type DataSourceDataParamsChanges, type DataSourceDebugWarningKey, type DataSourceDerivedState, type DataSourceFilterFunctionParam, type DataSourceFilterOperator, type DataSourceFilterOperatorFunction, type DataSourceFilterOperatorFunctionParam, type DataSourceFilterType, type DataSourceFilterValueItem, type DataSourceFilterValueItemValueGetter, type DataSourceGroupBy, type DataSourceGroupRowsList, type DataSourceInsertParam, type DataSourceLivePaginationCursorFn, type DataSourceLivePaginationCursorParams, type DataSourceLivePaginationCursorValue, type DataSourceMappedState, type DataSourceMappings, type DataSourceMasterDetailContextValue, type DataSourcePivotBy, type DataSourcePropAggregationReducers, type DataSourcePropCellSelection, type DataSourcePropCellSelection_MultiCell, type DataSourcePropCellSelection_SingleCell, type DataSourcePropFilterFunction, type DataSourcePropFilterTypes, type DataSourcePropFilterValue, type DataSourcePropGroupBy, type DataSourcePropGroupRowsState, type DataSourcePropGroupRowsStateObject, type DataSourcePropIsNodeExpanded, type DataSourcePropIsNodeReadOnly, type DataSourcePropIsNodeSelectable, type DataSourcePropIsNodeSelected, type DataSourcePropIsRowSelected, type DataSourcePropLivePaginationCursor, type DataSourcePropMultiRowSelectionChangeParamType, type DataSourcePropOnCellSelectionChange, type DataSourcePropOnCellSelectionChange_MultiCell, type DataSourcePropOnCellSelectionChange_SingleCell, type DataSourcePropOnRowSelectionChange, type DataSourcePropOnRowSelectionChange_MultiRow, type DataSourcePropOnRowSelectionChange_SingleRow, type DataSourcePropOnTreeSelectionChange, type DataSourcePropOnTreeSelectionChange_MultiNode, type DataSourcePropOnTreeSelectionChange_SingleNode, type DataSourcePropPivotBy, type DataSourcePropRowInfoReducers, type DataSourcePropRowSelection, type DataSourcePropRowSelection_MultiRow, type DataSourcePropRowSelection_SingleRow, type DataSourcePropSelectionMode, type DataSourcePropShouldReloadData, type DataSourcePropShouldReloadDataObject, type DataSourcePropSortFn, type DataSourcePropSortInfo, type DataSourcePropSortTypes, type DataSourcePropTreeFilterFunction, type DataSourcePropTreeSelection, type DataSourcePropTreeSelection_MultiNode, type DataSourcePropTreeSelection_SingleNode, type DataSourceProps, type DataSourcePropsNotAvailableInTreeDataSource, type DataSourcePropsWithChildren, type DataSourceRawReducer, type DataSourceRemoteData, type DataSourceRowInfoReducer, type DataSourceSetupState, type DataSourceSingleSortInfo, type DataSourceSortInfo, type DataSourceStableContextValue, type DataSourceState, type DataSourceUpdateParam, type DebugLogger, type DebugTimingKey, type DebugWarningPayload, DeepMap, type DevToolsDataSourceOverrides, type DevToolsGenericMessage, type DevToolsHookFn, type DevToolsHookFnOptions, type DevToolsHostPageLogMessage, type DevToolsHostPageLogMessagePayload, type DevToolsHostPageMessage, type DevToolsHostPageMessagePayload, type DevToolsHostPageMessageType, type DevToolsInfiniteOverrides, type DevToolsMessageAddress, type DevToolsOverrides, DragDropProvider, type DragDropSourceAndTarget, DragInteractionTarget, DragList, type DragListProps, type DragProxyMoveParams, type DragProxyRenderParams, type DragProxySetupParams, type DragProxySetupResult, type ElementContainerGetter, type ErrorCodeKey, FixedSizeSet, FlashingColumnCell, GroupRowsState, INTERNAL_MatrixDebugger, type InfiniteColumnEditorContextType, InfiniteTable, type InfiniteTableAction, InfiniteTableActionType, type InfiniteTableApi, type InfiniteTableCellSelectionApi, InfiniteTableClassName, type InfiniteTableColumn, type InfiniteTableColumnAggregator, type InfiniteTableColumnApi, type InfiniteTableColumnCellContextType, type InfiniteTableColumnComparer, type InfiniteTableColumnGroup, type InfiniteTableColumnRenderFunctionForGroupRows, type InfiniteTableColumnRenderFunctionForNormalRows, type InfiniteTableColumnRenderValueParam, type InfiniteTableColumnRowspanParam, type InfiniteTableColumnSizingOptions, type InfiniteTableColumnValueFormatterParams, type InfiniteTableColumnValueGetterParams, InfiniteTableComponent, type InfiniteTableComputedColumn, type InfiniteTableComputedValues, type InfiniteTableContextValue, type InfiniteTableDebugWarningKey, type InfiniteTableGroupColumnBase, type InfiniteTableGroupColumnFunction, type InfiniteTableGroupColumnGetterOptions, type InfiniteTableKeyboardNavigationApi, type InfiniteTablePivotColumn, type InfiniteTablePropAutoSizeColumnsKey, type InfiniteTablePropColumnGroupVisibility, type InfiniteTablePropColumnGroups, type InfiniteTablePropColumnOrder, type InfiniteTablePropColumnPinning, type InfiniteTablePropColumnSizing, type InfiniteTablePropColumnTypes, type InfiniteTablePropColumnVisibility, type InfiniteTablePropColumns, type InfiniteTablePropComponents, type InfiniteTablePropGetCellContextMenuItems, type InfiniteTablePropGetColumnMenuItems, type InfiniteTablePropGetContextMenuItems, type InfiniteTablePropGroupColumn, type InfiniteTablePropGroupRenderStrategy, type InfiniteTablePropHeaderOptions, type InfiniteTablePropKeyboardNavigation, type InfiniteTablePropKeyboardShorcut, type InfiniteTablePropMultiSortBehavior, type InfiniteTablePropRowClassName, type InfiniteTablePropRowStyle, type InfiniteTableProps, type InfiniteTablePropsNotAvailableInTreeGrid, type InfiniteTableRowClassNameFn, type InfiniteTableRowDetailApi, type InfiniteTableRowInfo, type InfiniteTableRowSelectionApi, type InfiniteTableRowStyleFn, type InfiniteTableState, type InfiniteTable_HasGrouping_RowInfoGroup, type InfiniteTable_HasGrouping_RowInfoNormal, type InfiniteTable_Tree_RowInfoLeafNode, type InfiniteTable_Tree_RowInfoNode, type InfiniteTable_Tree_RowInfoParentNode, type LazyGroupDataDeepMap, type LazyGroupDataItem, type LazyRowInfoGroup, Menu, type MenuChildrenFnParam, type MenuColumn, type MenuColumnRenderParam, type MenuDecoration, type MenuIconProps, type MenuItemActionContext, type MenuItemDefinition, type MenuItemObject, type MenuProps, type MenuRenderable, type MenuRuntimeItem, type MenuRuntimeItemSelectable, type MenuSeparator, type OverlayShowParams, RowDetailCache, RowDetailState, type RowDetailStateObject, RowDisabledState, type RowDisabledStateObject, RowSelectionState, type ScrollStopInfo, type Scrollbars, type ShowOverlayFn, type TableRenderRange, TreeDataSource, type TreeDataSourceProps, TreeExpandState, type TreeExpandStateValue, TreeGrid, type TreeGridOnlyProps, type TreeGridProps, TreeSelectionState, type TreeSelectionStateObject, type TreeSelectionValue, type UpdateChildrenFn, type UpdateOverlayContentFn, type WaitForNodeOptions, WeakFixedSizeSet, alignNode, components, createDefaultProxy, createFlashingColumnCellComponent, debounce, debug, defaultDragProxyMove, defaultFilterTypes, eventMatchesKeyboardShortcut, filterDataArray, defaultFilterTypes as filterTypes, flatten, buildManagedComponent as getComponentStateRoot, group, interceptMap, keyboardShortcuts, multisort, multisortNested, queryKeyToCacheKey, toTreeDataArray, useManagedComponentState as useComponentState, useDataSourceInternal, useDataSourceSelector, useDataSourceState, useDragDropProvider, useDragListContext, useEffectWhen, useEffectWhenSameDeps, useEffectWithChanges, useEffectWithObject, useGridScroll, useInfiniteColumnCell, useInfiniteColumnEditor, useInfiniteColumnFilterEditor, useInfiniteHeaderCell, useInfinitePortalContainer, useLayoutEffectWithChanges, useManagedDataSource, useMasterRowInfo, useOverlay, useOverlayPortal, usePrevious, useRowInfoReducers, useVisibleColumnSizes, withSelectedLeafNodesOnly };