@gp-grid/core 0.16.0 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/index.d.ts +99 -15
- package/dist/index.js +264 -100
- package/dist/styles.css +250 -86
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
<div align="center">
|
|
4
4
|
<a href="https://www.gp-grid.io">
|
|
5
5
|
<picture>
|
|
6
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://
|
|
7
|
-
<source media="(prefers-color-scheme: light)" srcset="https://
|
|
8
|
-
<img width="50%" alt="
|
|
6
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://www.gp-grid.io/logo-light.svg"/>
|
|
7
|
+
<source media="(prefers-color-scheme: light)" srcset="https://www.gp-grid.io/logo-dark.svg"/>
|
|
8
|
+
<img width="50%" alt="gp-grid Logo" src="https://www.gp-grid.io/logo-dark.svg"/>
|
|
9
9
|
</picture>
|
|
10
10
|
</a>
|
|
11
11
|
<div align="center">
|
package/dist/index.d.ts
CHANGED
|
@@ -242,6 +242,19 @@ interface ColumnDefinition {
|
|
|
242
242
|
movable?: boolean;
|
|
243
243
|
/** Whether this column acts as a drag handle for row dragging. Default: false */
|
|
244
244
|
rowDrag?: boolean;
|
|
245
|
+
/**
|
|
246
|
+
* Whether double-clicking a non-editable cell opens a read-only peek overlay
|
|
247
|
+
* that wraps the value across multiple lines. Ignored when `editable` is true
|
|
248
|
+
* (double-click starts editing instead). Default: true.
|
|
249
|
+
*/
|
|
250
|
+
peekable?: boolean;
|
|
251
|
+
/**
|
|
252
|
+
* Whether to set a native `title` attribute on cells in this column so the
|
|
253
|
+
* browser shows the full formatted value on hover. Useful when text is
|
|
254
|
+
* truncated by the cell width. Default: true. Set false to opt out — e.g.
|
|
255
|
+
* for cells whose custom renderer already provides its own tooltip.
|
|
256
|
+
*/
|
|
257
|
+
tooltip?: boolean;
|
|
245
258
|
/** Renderer key for adapter lookup, or inline renderer function */
|
|
246
259
|
cellRenderer?: string | ((params: CellRendererParams) => unknown);
|
|
247
260
|
editRenderer?: string | ((params: EditRendererParams) => unknown);
|
|
@@ -252,6 +265,14 @@ interface ColumnDefinition {
|
|
|
252
265
|
* default JSON.stringify may not be suitable (e.g., display a single field of an object).
|
|
253
266
|
*/
|
|
254
267
|
valueFormatter?: (value: CellValue) => string;
|
|
268
|
+
/**
|
|
269
|
+
* Pre-supplied set of all possible values for the filter popup's "values" mode.
|
|
270
|
+
* When provided, the grid skips scanning row data to discover distinct values —
|
|
271
|
+
* use this for large datasets to avoid an O(n) scan when the value domain is
|
|
272
|
+
* known up front (e.g., enums, fixed tag lists). Values are still de-duplicated
|
|
273
|
+
* and sorted by their display string.
|
|
274
|
+
*/
|
|
275
|
+
distinctValues?: CellValue[];
|
|
255
276
|
/**
|
|
256
277
|
* Per-column override for column-level highlighting.
|
|
257
278
|
* If defined, overrides grid-level computeColumnClasses for this column.
|
|
@@ -435,6 +456,16 @@ interface CommitEditInstruction {
|
|
|
435
456
|
col: number;
|
|
436
457
|
value: CellValue;
|
|
437
458
|
}
|
|
459
|
+
/** Open a peek overlay on a cell */
|
|
460
|
+
interface StartPeekInstruction {
|
|
461
|
+
type: "START_PEEK";
|
|
462
|
+
row: number;
|
|
463
|
+
col: number;
|
|
464
|
+
}
|
|
465
|
+
/** Close the active peek overlay */
|
|
466
|
+
interface StopPeekInstruction {
|
|
467
|
+
type: "STOP_PEEK";
|
|
468
|
+
}
|
|
438
469
|
/** Programmatic scroll instruction — tells the framework to set container.scrollTop */
|
|
439
470
|
interface ScrollToInstruction {
|
|
440
471
|
type: "SCROLL_TO";
|
|
@@ -617,7 +648,7 @@ interface CancelRowDragInstruction {
|
|
|
617
648
|
type: "CANCEL_ROW_DRAG";
|
|
618
649
|
}
|
|
619
650
|
/** Union type of all instructions */
|
|
620
|
-
type GridInstruction = /** Slot lifecycle */CreateSlotInstruction | DestroySlotInstruction | AssignSlotInstruction | MoveSlotInstruction /** Scroll */ | ScrollToInstruction /** Selection */ | SetActiveCellInstruction | SetSelectionRangeInstruction | UpdateVisibleRangeInstruction /** Highlighting */ | SetHoverPositionInstruction /** Editing */ | StartEditInstruction | StopEditInstruction | CommitEditInstruction /** Layout */ | SetContentSizeInstruction | UpdateHeaderInstruction /** Filter popup */ | OpenFilterPopupInstruction | CloseFilterPopupInstruction /** Fill handle */ | StartFillInstruction | UpdateFillInstruction | CommitFillInstruction | CancelFillInstruction /** Data */ | DataLoadingInstruction | DataLoadedInstruction | DataErrorInstruction /** Transactions */ | RowsAddedInstruction | RowsRemovedInstruction | RowsUpdatedInstruction | TransactionProcessedInstruction /** Column changes */ | ColumnsChangedInstruction /** Column resize */ | StartColumnResizeInstruction | UpdateColumnResizeInstruction | CommitColumnResizeInstruction | CancelColumnResizeInstruction /** Column move */ | StartColumnMoveInstruction | UpdateColumnMoveInstruction | CommitColumnMoveInstruction | CancelColumnMoveInstruction /** Row drag */ | StartRowDragInstruction | UpdateRowDragInstruction | CommitRowDragInstruction | CancelRowDragInstruction;
|
|
651
|
+
type GridInstruction = /** Slot lifecycle */CreateSlotInstruction | DestroySlotInstruction | AssignSlotInstruction | MoveSlotInstruction /** Scroll */ | ScrollToInstruction /** Selection */ | SetActiveCellInstruction | SetSelectionRangeInstruction | UpdateVisibleRangeInstruction /** Highlighting */ | SetHoverPositionInstruction /** Editing */ | StartEditInstruction | StopEditInstruction | CommitEditInstruction /** Peek (read-only expand) */ | StartPeekInstruction | StopPeekInstruction /** Layout */ | SetContentSizeInstruction | UpdateHeaderInstruction /** Filter popup */ | OpenFilterPopupInstruction | CloseFilterPopupInstruction /** Fill handle */ | StartFillInstruction | UpdateFillInstruction | CommitFillInstruction | CancelFillInstruction /** Data */ | DataLoadingInstruction | DataLoadedInstruction | DataErrorInstruction /** Transactions */ | RowsAddedInstruction | RowsRemovedInstruction | RowsUpdatedInstruction | TransactionProcessedInstruction /** Column changes */ | ColumnsChangedInstruction /** Column resize */ | StartColumnResizeInstruction | UpdateColumnResizeInstruction | CommitColumnResizeInstruction | CancelColumnResizeInstruction /** Column move */ | StartColumnMoveInstruction | UpdateColumnMoveInstruction | CommitColumnMoveInstruction | CancelColumnMoveInstruction /** Row drag */ | StartRowDragInstruction | UpdateRowDragInstruction | CommitRowDragInstruction | CancelRowDragInstruction;
|
|
621
652
|
/** Instruction listener: Single instruction Listener that receives a single instruction, used by frameworks to update their state */
|
|
622
653
|
type InstructionListener = (instruction: GridInstruction) => void;
|
|
623
654
|
/** Batch instruction listener: Batch instruction Listener that receives an array of instructions, used by frameworks to update their state */
|
|
@@ -1407,6 +1438,7 @@ declare class SortFilterManager<TData = Record<string, unknown>> {
|
|
|
1407
1438
|
private sortModel;
|
|
1408
1439
|
private filterModel;
|
|
1409
1440
|
private openFilterColIndex;
|
|
1441
|
+
private readonly scanWarnedCols;
|
|
1410
1442
|
onInstruction: (listener: InstructionListener) => () => void;
|
|
1411
1443
|
private readonly emit;
|
|
1412
1444
|
constructor(options: SortFilterManagerOptions<TData>);
|
|
@@ -1427,20 +1459,22 @@ declare class SortFilterManager<TData = Record<string, unknown>> {
|
|
|
1427
1459
|
*/
|
|
1428
1460
|
isColumnFilterable(colIndex: number): boolean;
|
|
1429
1461
|
/**
|
|
1430
|
-
* Get distinct values for a column (for filter dropdowns)
|
|
1431
|
-
*
|
|
1432
|
-
*
|
|
1433
|
-
*
|
|
1462
|
+
* Get distinct values for a column (for filter dropdowns).
|
|
1463
|
+
*
|
|
1464
|
+
* When the column defines `distinctValues`, that list is used directly
|
|
1465
|
+
* (deduplicated + sorted by display string). Otherwise the manager scans
|
|
1466
|
+
* every cached row to compute the set. The previous stride-sampling
|
|
1467
|
+
* fallback was removed because the stride could share a factor with a
|
|
1468
|
+
* repeating value pool, causing some values to be unreachable (the
|
|
1469
|
+
* `bio` field in the demo dataset was a real example: stride 15 with a
|
|
1470
|
+
* pool size of 6 yielded only 2 of 6 values).
|
|
1434
1471
|
*
|
|
1435
|
-
*
|
|
1436
|
-
*
|
|
1437
|
-
*
|
|
1438
|
-
* which after sort is the sorted order — so the first 100k rows only
|
|
1439
|
-
* covered the "smallest" values of the column. Stride sampling covers
|
|
1440
|
-
* the whole range at the cost of possibly missing rare values, which
|
|
1441
|
-
* the maxValues cap would have dropped anyway.
|
|
1472
|
+
* For datasets above {@link DISTINCT_SCAN_WARN_THRESHOLD}, a one-time
|
|
1473
|
+
* console warning advises the consumer to pre-supply `distinctValues`
|
|
1474
|
+
* on the column to skip the full scan.
|
|
1442
1475
|
*/
|
|
1443
|
-
getDistinctValuesForColumn(colId: string, maxValues?: number
|
|
1476
|
+
getDistinctValuesForColumn(colId: string, maxValues?: number): CellValue[];
|
|
1477
|
+
private scanDistinctValues;
|
|
1444
1478
|
/**
|
|
1445
1479
|
* Normalize a cell value into a dedup key and the value to store.
|
|
1446
1480
|
* Arrays are sorted lexicographically so different orderings produce the same key.
|
|
@@ -1875,6 +1909,19 @@ declare class GridCore<TData = unknown> {
|
|
|
1875
1909
|
getSortModel(): SortModel[];
|
|
1876
1910
|
getFilterModel(): FilterModel;
|
|
1877
1911
|
startEdit(row: number, col: number): void;
|
|
1912
|
+
/**
|
|
1913
|
+
* Open a read-only peek overlay on a cell. The default cell renderer is
|
|
1914
|
+
* shown in a multi-line container so long values are fully visible.
|
|
1915
|
+
* Returns true if the peek opened (column must be `peekable !== false`
|
|
1916
|
+
* and not currently being edited).
|
|
1917
|
+
*/
|
|
1918
|
+
startPeek(row: number, col: number): boolean;
|
|
1919
|
+
/** Close any active peek overlay. */
|
|
1920
|
+
stopPeek(): void;
|
|
1921
|
+
getPeekState(): {
|
|
1922
|
+
row: number;
|
|
1923
|
+
col: number;
|
|
1924
|
+
} | null;
|
|
1878
1925
|
updateEditValue(value: CellValue): void;
|
|
1879
1926
|
commitEdit(): void;
|
|
1880
1927
|
cancelEdit(): void;
|
|
@@ -1888,7 +1935,9 @@ declare class GridCore<TData = unknown> {
|
|
|
1888
1935
|
private emitHeaders;
|
|
1889
1936
|
private emitVisibleRange;
|
|
1890
1937
|
/**
|
|
1891
|
-
* Set the width of a column and recompute layout.
|
|
1938
|
+
* Set the displayed width of a column and recompute layout. `width` is the
|
|
1939
|
+
* post-redistribution displayed width — the stored `column.width` is
|
|
1940
|
+
* back-solved so the column ends up exactly `width` pixels wide.
|
|
1892
1941
|
*/
|
|
1893
1942
|
setColumnWidth(colIndex: number, width: number): void;
|
|
1894
1943
|
/**
|
|
@@ -2105,6 +2154,8 @@ interface GridState<TData = unknown> {
|
|
|
2105
2154
|
col: number;
|
|
2106
2155
|
initialValue: CellValue;
|
|
2107
2156
|
} | null;
|
|
2157
|
+
/** Cell currently shown in a read-only peek overlay (multi-line expand on double-click) */
|
|
2158
|
+
peekCell: CellPosition | null;
|
|
2108
2159
|
contentWidth: number;
|
|
2109
2160
|
contentHeight: number;
|
|
2110
2161
|
/** Viewport width (container's visible width) for column scaling */
|
|
@@ -2208,6 +2259,22 @@ interface PopupPosition {
|
|
|
2208
2259
|
*/
|
|
2209
2260
|
declare const calculateFilterPopupPosition: (headerCell: HTMLElement, popupEl: HTMLElement, viewportPadding?: number) => PopupPosition;
|
|
2210
2261
|
//#endregion
|
|
2262
|
+
//#region src/utils/peek-select-all.d.ts
|
|
2263
|
+
/**
|
|
2264
|
+
* Scope Ctrl/Cmd+A to the peek overlay's content.
|
|
2265
|
+
*
|
|
2266
|
+
* Pure CSS (`user-select: none` outside the overlay) only hides the visual
|
|
2267
|
+
* highlight — the browser still constructs a Selection range across the whole
|
|
2268
|
+
* document, and form controls use a separate selection model that CSS does
|
|
2269
|
+
* not affect. This helper intercepts the shortcut, builds a Range covering
|
|
2270
|
+
* the overlay node, and installs it as the active Selection so only the
|
|
2271
|
+
* overlay's text is highlighted.
|
|
2272
|
+
*
|
|
2273
|
+
* Returns a cleanup function the caller invokes on unmount.
|
|
2274
|
+
* SSR-safe: no-op when `document` is undefined.
|
|
2275
|
+
*/
|
|
2276
|
+
declare const bindPeekSelectAll: (overlay: HTMLElement) => (() => void);
|
|
2277
|
+
//#endregion
|
|
2211
2278
|
//#region src/slot-pool.d.ts
|
|
2212
2279
|
interface SlotPoolManagerOptions {
|
|
2213
2280
|
/** Get current row height */
|
|
@@ -2328,6 +2395,7 @@ interface EditManagerOptions {
|
|
|
2328
2395
|
*/
|
|
2329
2396
|
declare class EditManager {
|
|
2330
2397
|
private editState;
|
|
2398
|
+
private peekState;
|
|
2331
2399
|
private readonly options;
|
|
2332
2400
|
private readonly emitter;
|
|
2333
2401
|
onInstruction: (listener: InstructionListener) => () => void;
|
|
@@ -2350,6 +2418,21 @@ declare class EditManager {
|
|
|
2350
2418
|
* Returns true if edit was started, false if cell is not editable.
|
|
2351
2419
|
*/
|
|
2352
2420
|
startEdit(row: number, col: number): boolean;
|
|
2421
|
+
/**
|
|
2422
|
+
* Get the cell currently shown in a peek overlay, or null.
|
|
2423
|
+
*/
|
|
2424
|
+
getPeekState(): CellPosition | null;
|
|
2425
|
+
/**
|
|
2426
|
+
* Open a peek overlay on a cell. Caller is responsible for guarding on
|
|
2427
|
+
* `column.peekable` — the manager only refuses when an edit is in progress
|
|
2428
|
+
* (edit and peek are mutually exclusive).
|
|
2429
|
+
* Returns true if the peek was opened.
|
|
2430
|
+
*/
|
|
2431
|
+
startPeek(row: number, col: number): boolean;
|
|
2432
|
+
/**
|
|
2433
|
+
* Close any active peek overlay. No-op if none is open.
|
|
2434
|
+
*/
|
|
2435
|
+
stopPeek(): void;
|
|
2353
2436
|
/**
|
|
2354
2437
|
* Update the current edit value.
|
|
2355
2438
|
*/
|
|
@@ -2761,6 +2844,7 @@ interface BatchChangeSetters {
|
|
|
2761
2844
|
setSelectionRange: (v: CellRange | null) => void;
|
|
2762
2845
|
setEditingCell: (v: EditingCell) => void;
|
|
2763
2846
|
setHoverPosition: (v: CellPosition | null) => void;
|
|
2847
|
+
setPeekCell: (v: CellPosition | null) => void;
|
|
2764
2848
|
setColumnsOverride: (v: ColumnDefinition[]) => void;
|
|
2765
2849
|
onFilterPopupChange: (v: FilterPopupState | null) => void;
|
|
2766
2850
|
}
|
|
@@ -2874,4 +2958,4 @@ declare class InputEventAdapter<TData = unknown> {
|
|
|
2874
2958
|
private dispatchCellDragStart;
|
|
2875
2959
|
}
|
|
2876
2960
|
//#endregion
|
|
2877
|
-
export { type AssignSlotInstruction, AutoScrollDriver, type BatchChangeSetters, type BatchInstructionListener, type CalculateFillHandlePositionParams, type CancelColumnMoveInstruction, type CancelColumnResizeInstruction, type CancelFillInstruction, type CancelRowDragInstruction, type CellDataType, type CellPointerAction, type CellPosition, type CellRange, type CellRendererParams, type CellValue, type CellValueChangedEvent, type CloseFilterPopupInstruction, type ColumnDefinition, type ColumnFilterModel, type ColumnMoveDragState, type ColumnResizeDragState, type ColumnsChangedInstruction, type CommitColumnMoveInstruction, type CommitColumnResizeInstruction, type CommitEditInstruction, type CommitFillInstruction, type CommitRowDragInstruction, type ContainerBounds, type CreateSlotInstruction, type DataChangeListener, type DataErrorInstruction, type DataLoadedInstruction, type DataLoadingInstruction, type DataSource, type DataSourceLoadMode, DataSourceOwner, type DataSourceRange, type DataSourceRequest, type DataSourceResponse, type DateFilterCondition, type DateFilterOperator, type DestroySlotInstruction, type Direction, type DragEndResult, type DragMoveResult, type DragState, EditManager, type EditManagerOptions, type EditRendererParams, type EditState, type FillHandlePosition, type FillHandleState, FillManager, type FillPointerAction, type FilterCombination, type FilterCondition, type FilterModel, type FilterPopupState, GridCore, type GridCoreOptions, type GridInstruction, type GridState, type HeaderData, type HeaderRendererParams, type HighlightContext, HighlightManager, type HighlightingOptions, IndexedDataStore, type IndexedDataStoreOptions, type InitialStateArgs, InputEventAdapter, type InputEventAdapterDeps, InputHandler, type InputHandlerDeps, type InputResult, type InstructionListener, type KeyEventData, type KeyboardResult, type MoveSlotInstruction, type MultiColumnSortedChunk, type MutableClientDataSourceOptions, type MutableDataSource, type NumberFilterCondition, type NumberFilterOperator, type OpenFilterPopupInstruction, ParallelSortManager, type ParallelSortOptions, PendingRowDragController, type PendingRowDragDeps, type PointerEventData, type PopupPosition, type RowCacheEviction, type RowCacheOptions, RowDataManager, type RowDataManagerOptions, type RowDragState, type RowId, type RowLoadingMode, type RowLoadingOptions, RowMutationManager, type RowMutationManagerOptions, type RowSortCache, type RowsAddedInstruction, type RowsRemovedInstruction, type RowsUpdatedInstruction, ScrollVirtualizationManager, type ScrollVirtualizationManagerOptions, SelectionManager, type SelectionState, type ServerDataSourceOptions, type SetActiveCellInstruction, type SetContentSizeInstruction, type SetHoverPositionInstruction, type SetSelectionRangeInstruction, type SlotData, type BatchInstructionListener$1 as SlotPoolBatchListener, SlotPoolManager, type SlotPoolManagerOptions, type SlotState, type SortDirection, SortFilterManager, type SortFilterManagerOptions, type SortModel, type SortedChunk, type StartColumnMoveInstruction, type StartColumnResizeInstruction, type StartEditInstruction, type StartFillInstruction, type StartRowDragInstruction, type StopEditInstruction, type TextFilterCondition, type TextFilterOperator, type Transaction, TransactionManager, type TransactionManagerOptions, type TransactionProcessedInstruction, type TransactionResult, type UpdateColumnMoveInstruction, type UpdateColumnResizeInstruction, type UpdateFillInstruction, type UpdateHeaderInstruction, type UpdateRowDragInstruction, type VisibleColumnInfo, WorkerPool, type WorkerPoolOptions, applyBatchInstructions, applyInstruction, buildCellClasses, calculateColumnPositions, calculateFillHandlePosition, calculateFilterPopupPosition, calculateScaledColumnPositions, cellStyles, compareValues, computeValueHash, containerStyles, createClientDataSource, createDataSourceFromArray, createInitialState, createMutableClientDataSource, createServerDataSource, detectBoundaryCollisions, evaluateColumnFilter, evaluateDateCondition, evaluateNumberCondition, evaluateTextCondition, filtersStyles, findColumnAtX, findSlotForRow, formatCellValue, getFieldValue, getTotalWidth, gridStyles, headerStyles, isCellActive, isCellEditing, isCellInFillPreview, isCellSelected, isColumnInSelectionRange, isRowInSelectionRange, isRowVisible, isSameDay, kWayMerge, kWayMergeMultiColumn, rowDragStyles, rowPassesFilter, scrollCellIntoView, scrollbarStyles, setFieldValue, statesStyles, stringToSortableNumber, toPointerEventData, variablesStyles };
|
|
2961
|
+
export { type AssignSlotInstruction, AutoScrollDriver, type BatchChangeSetters, type BatchInstructionListener, type CalculateFillHandlePositionParams, type CancelColumnMoveInstruction, type CancelColumnResizeInstruction, type CancelFillInstruction, type CancelRowDragInstruction, type CellDataType, type CellPointerAction, type CellPosition, type CellRange, type CellRendererParams, type CellValue, type CellValueChangedEvent, type CloseFilterPopupInstruction, type ColumnDefinition, type ColumnFilterModel, type ColumnMoveDragState, type ColumnResizeDragState, type ColumnsChangedInstruction, type CommitColumnMoveInstruction, type CommitColumnResizeInstruction, type CommitEditInstruction, type CommitFillInstruction, type CommitRowDragInstruction, type ContainerBounds, type CreateSlotInstruction, type DataChangeListener, type DataErrorInstruction, type DataLoadedInstruction, type DataLoadingInstruction, type DataSource, type DataSourceLoadMode, DataSourceOwner, type DataSourceRange, type DataSourceRequest, type DataSourceResponse, type DateFilterCondition, type DateFilterOperator, type DestroySlotInstruction, type Direction, type DragEndResult, type DragMoveResult, type DragState, EditManager, type EditManagerOptions, type EditRendererParams, type EditState, type FillHandlePosition, type FillHandleState, FillManager, type FillPointerAction, type FilterCombination, type FilterCondition, type FilterModel, type FilterPopupState, GridCore, type GridCoreOptions, type GridInstruction, type GridState, type HeaderData, type HeaderRendererParams, type HighlightContext, HighlightManager, type HighlightingOptions, IndexedDataStore, type IndexedDataStoreOptions, type InitialStateArgs, InputEventAdapter, type InputEventAdapterDeps, InputHandler, type InputHandlerDeps, type InputResult, type InstructionListener, type KeyEventData, type KeyboardResult, type MoveSlotInstruction, type MultiColumnSortedChunk, type MutableClientDataSourceOptions, type MutableDataSource, type NumberFilterCondition, type NumberFilterOperator, type OpenFilterPopupInstruction, ParallelSortManager, type ParallelSortOptions, PendingRowDragController, type PendingRowDragDeps, type PointerEventData, type PopupPosition, type RowCacheEviction, type RowCacheOptions, RowDataManager, type RowDataManagerOptions, type RowDragState, type RowId, type RowLoadingMode, type RowLoadingOptions, RowMutationManager, type RowMutationManagerOptions, type RowSortCache, type RowsAddedInstruction, type RowsRemovedInstruction, type RowsUpdatedInstruction, ScrollVirtualizationManager, type ScrollVirtualizationManagerOptions, SelectionManager, type SelectionState, type ServerDataSourceOptions, type SetActiveCellInstruction, type SetContentSizeInstruction, type SetHoverPositionInstruction, type SetSelectionRangeInstruction, type SlotData, type BatchInstructionListener$1 as SlotPoolBatchListener, SlotPoolManager, type SlotPoolManagerOptions, type SlotState, type SortDirection, SortFilterManager, type SortFilterManagerOptions, type SortModel, type SortedChunk, type StartColumnMoveInstruction, type StartColumnResizeInstruction, type StartEditInstruction, type StartFillInstruction, type StartPeekInstruction, type StartRowDragInstruction, type StopEditInstruction, type StopPeekInstruction, type TextFilterCondition, type TextFilterOperator, type Transaction, TransactionManager, type TransactionManagerOptions, type TransactionProcessedInstruction, type TransactionResult, type UpdateColumnMoveInstruction, type UpdateColumnResizeInstruction, type UpdateFillInstruction, type UpdateHeaderInstruction, type UpdateRowDragInstruction, type VisibleColumnInfo, WorkerPool, type WorkerPoolOptions, applyBatchInstructions, applyInstruction, bindPeekSelectAll, buildCellClasses, calculateColumnPositions, calculateFillHandlePosition, calculateFilterPopupPosition, calculateScaledColumnPositions, cellStyles, compareValues, computeValueHash, containerStyles, createClientDataSource, createDataSourceFromArray, createInitialState, createMutableClientDataSource, createServerDataSource, detectBoundaryCollisions, evaluateColumnFilter, evaluateDateCondition, evaluateNumberCondition, evaluateTextCondition, filtersStyles, findColumnAtX, findSlotForRow, formatCellValue, getFieldValue, getTotalWidth, gridStyles, headerStyles, isCellActive, isCellEditing, isCellInFillPreview, isCellSelected, isColumnInSelectionRange, isRowInSelectionRange, isRowVisible, isSameDay, kWayMerge, kWayMergeMultiColumn, rowDragStyles, rowPassesFilter, scrollCellIntoView, scrollbarStyles, setFieldValue, statesStyles, stringToSortableNumber, toPointerEventData, variablesStyles };
|