react-glide-table 1.7.0 → 2.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/README.md +87 -6
- package/dist/compound.cjs +474 -98
- package/dist/compound.d.cts +2 -2
- package/dist/compound.d.ts +2 -2
- package/dist/compound.js +459 -83
- package/dist/core.cjs +416 -12
- package/dist/core.d.cts +58 -4
- package/dist/core.d.ts +58 -4
- package/dist/core.js +407 -12
- package/dist/index.cjs +574 -166
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +545 -146
- package/dist/{types-Cs9MiZs1.d.cts → types-bgEceyRV.d.cts} +82 -4
- package/dist/{types-Cs9MiZs1.d.ts → types-bgEceyRV.d.ts} +82 -4
- package/package.json +1 -1
package/dist/core.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export {
|
|
3
|
-
import { Row, ColumnDef, Table, Updater, RowSelectionState } from '@tanstack/react-table';
|
|
1
|
+
import { W as CellEditType, c as CellRenderer, C as CellKind, a as CellRenderContext, i as DataTableClassNames, R as RowSelectionMode, g as ColumnFreezeOffset, p as SearchResultItem, q as SearchStatus, l as DataTableProps, k as DataTableLabels, j as DataTableCopyActions, P as PasteMode, o as RowsPastePayload } from './types-bgEceyRV.cjs';
|
|
2
|
+
export { B as BuiltinCellKind, b as CellRenderFn, d as ColumnFreezeColumnInput, e as ColumnFreezeEdgeSide, f as ColumnFreezeMeta, h as ColumnFreezeSide, D as DEFAULT_DATA_TABLE_LABELS, I as INLINE_SEARCH_MAX_RESULTS, S as SearchCorpusRow, t as buildColumnFreezeOffsets, u as buildFlatSearchCorpus, v as buildSearchMatchKey, w as buildSearchMatchKeys, x as buildTreeSearchCorpus, y as cellValueToSearchText, z as collectAncestorKeysToExpand, A as collectSearchMatchesInRange, E as createSearchRegex, F as escapeSearchRegex, G as formatSearchResultLabel, H as getColumnFreezeEdgeAttr, J as getColumnFreezeStyle, K as mapSearchResultToVisibleItem, L as mapSearchResultsToVisibleKeys, M as nextSearchIndex, N as nextSearchStride, O as previousSearchIndex, Q as resolveColumnFreezeSide, U as resolveDataTableLabels, V as resolveHeaderFreezeOffset } from './types-bgEceyRV.cjs';
|
|
3
|
+
import { Row, ColumnDef, CellContext, Table, Cell, Updater, RowSelectionState } from '@tanstack/react-table';
|
|
4
4
|
export { ColumnDef, ColumnResizeMode, ColumnSizingState, RowSelectionState } from '@tanstack/react-table';
|
|
5
5
|
import { Virtualizer, VirtualItem } from '@tanstack/react-virtual';
|
|
6
6
|
import * as react from 'react';
|
|
@@ -36,6 +36,12 @@ declare function getCellEditDraftValue(value: unknown): string;
|
|
|
36
36
|
/** Returns updated data on success; null if parsing fails or the cell is not editable */
|
|
37
37
|
declare function applyCellEdit<T extends Record<string, unknown>>(data: T[], rows: Row<T>[], rowIndex: number, colIndex: number, raw: string): T[] | null;
|
|
38
38
|
|
|
39
|
+
type CellRendererRegistry = Map<string, CellRenderer>;
|
|
40
|
+
/** Later entries with the same `kind` override earlier ones (including builtins). */
|
|
41
|
+
declare function createCellRendererRegistry(customRenderers?: readonly CellRenderer[]): CellRendererRegistry;
|
|
42
|
+
declare function resolveCellRenderer<T extends Record<string, unknown>>(registry: CellRendererRegistry, kind: CellKind | undefined, ctx: CellRenderContext<T>): CellRenderer | undefined;
|
|
43
|
+
declare function formatDefaultCellValue(value: unknown): string | null;
|
|
44
|
+
|
|
39
45
|
type CellPosition = {
|
|
40
46
|
row: number;
|
|
41
47
|
col: number;
|
|
@@ -164,6 +170,10 @@ type DataTableRowContextValue = {
|
|
|
164
170
|
onCommitEdit: (raw?: string) => boolean;
|
|
165
171
|
onCancelEdit: () => void;
|
|
166
172
|
};
|
|
173
|
+
cellRender: {
|
|
174
|
+
registry: CellRendererRegistry;
|
|
175
|
+
commitValue: (rowId: string, columnId: string, value: unknown) => boolean;
|
|
176
|
+
};
|
|
167
177
|
expand: {
|
|
168
178
|
enableExpand: boolean;
|
|
169
179
|
toggleField?: string;
|
|
@@ -187,6 +197,19 @@ type DataTableRowContextValue = {
|
|
|
187
197
|
};
|
|
188
198
|
};
|
|
189
199
|
|
|
200
|
+
/**
|
|
201
|
+
* TanStack `CellContext` with a guaranteed `update` commit helper.
|
|
202
|
+
* Prefer this over bare `cell.getContext()`, which does not include `update` at runtime.
|
|
203
|
+
*/
|
|
204
|
+
type CellContextWithUpdate<TData, TValue> = CellContext<TData, TValue> & {
|
|
205
|
+
update: (next: TValue) => void;
|
|
206
|
+
};
|
|
207
|
+
/**
|
|
208
|
+
* Injects `update` into a TanStack `CellContext` so `ColumnDef.cell` can commit
|
|
209
|
+
* through `onCellChange` / `onDataChange` the same way compound `Column.render` does.
|
|
210
|
+
*/
|
|
211
|
+
declare function withCellUpdate<TData extends Record<string, unknown>, TValue>(context: CellContext<TData, TValue>, commitValue: (rowId: string, columnId: string, value: unknown) => boolean): CellContextWithUpdate<TData, TValue>;
|
|
212
|
+
|
|
190
213
|
type UseInlineSearchOptions = {
|
|
191
214
|
enabled?: boolean;
|
|
192
215
|
rowCount: number;
|
|
@@ -248,6 +271,11 @@ type UseGlideTableResult<T extends Record<string, unknown>> = {
|
|
|
248
271
|
paddingTop: number;
|
|
249
272
|
paddingBottom: number;
|
|
250
273
|
rowContextValue: DataTableRowContextValue;
|
|
274
|
+
/**
|
|
275
|
+
* TanStack `CellContext` with `update` injected for custom `ColumnDef.cell` renders.
|
|
276
|
+
* Prefer this over `cell.getContext()` when calling `flexRender` yourself.
|
|
277
|
+
*/
|
|
278
|
+
getCellContext: <TValue>(cell: Cell<T, TValue>) => CellContextWithUpdate<T, TValue>;
|
|
251
279
|
handleToggleSelect: (row: Row<T>) => void;
|
|
252
280
|
clearHover: () => void;
|
|
253
281
|
copySelection: DataTableCopyActions["copySelection"];
|
|
@@ -284,6 +312,27 @@ declare function useCellEdit<T extends Record<string, unknown>>({ data, rows, on
|
|
|
284
312
|
cancelEdit: () => void;
|
|
285
313
|
};
|
|
286
314
|
|
|
315
|
+
declare const BUILTIN_CELL_RENDERERS: CellRenderer[];
|
|
316
|
+
|
|
317
|
+
type CommitCellValueOptions<T extends Record<string, unknown>> = {
|
|
318
|
+
data: T[];
|
|
319
|
+
rows: Row<T>[];
|
|
320
|
+
rowId: string;
|
|
321
|
+
columnId: string;
|
|
322
|
+
value: unknown;
|
|
323
|
+
onCellChange?: (rowId: string, columnId: string, value: unknown) => void;
|
|
324
|
+
onDataChange?: (data: T[]) => void;
|
|
325
|
+
};
|
|
326
|
+
/**
|
|
327
|
+
* Shared commit path for custom `render` updates and built-in cell kinds.
|
|
328
|
+
* Prefers `onCellChange`; falls back to immutable `onDataChange` patch.
|
|
329
|
+
*/
|
|
330
|
+
declare function commitCellValue<T extends Record<string, unknown>>({ data, rows, rowId, columnId, value, onCellChange, onDataChange, }: CommitCellValueOptions<T>): boolean;
|
|
331
|
+
|
|
332
|
+
declare function ResolvedTableCell<T extends Record<string, unknown>>({ info, }: {
|
|
333
|
+
info: CellContext<T, unknown>;
|
|
334
|
+
}): react.ReactNode;
|
|
335
|
+
|
|
287
336
|
/** Width styles for header/body cells when column sizing is active. */
|
|
288
337
|
declare function getColumnSizeStyle(size: number, options?: {
|
|
289
338
|
force?: boolean;
|
|
@@ -350,6 +399,11 @@ type CopyRowEntry<T extends Record<string, unknown>> = {
|
|
|
350
399
|
/** Tree depth relative to the table root (0 = top-level). */
|
|
351
400
|
depth: number;
|
|
352
401
|
};
|
|
402
|
+
/**
|
|
403
|
+
* Clipboard / Excel paste expects one plain string per cell.
|
|
404
|
+
* Avoids `String(object)` → `[object Object]` and joins arrays with `, `.
|
|
405
|
+
*/
|
|
406
|
+
declare function formatCellValue(value: unknown): string;
|
|
353
407
|
declare function flattenSubtreeRows<T extends Record<string, unknown>>(row: T): T[];
|
|
354
408
|
/**
|
|
355
409
|
* Collects copy rows with tree depth so paste can rebuild parent/child nesting.
|
|
@@ -409,4 +463,4 @@ declare const useConvertTreeData: <T extends Record<string, unknown>>({ data, en
|
|
|
409
463
|
declare function resolveRowSelection(mode: RowSelectionMode, controlledSelection: RowSelectionState | undefined, internalSelection: RowSelectionState): RowSelectionState;
|
|
410
464
|
declare function applySelectionUpdater(mode: RowSelectionMode, updater: Updater<RowSelectionState>, previous: RowSelectionState): RowSelectionState;
|
|
411
465
|
|
|
412
|
-
export { CELL_SELECTION_EDGES_CLASS, type CellSelectionBounds, ColumnFreezeOffset, type ColumnRowSpanMap, type CopyRowEntry, type CopySelectionMode, DEFAULT_TREE_CHILDREN_FIELD, DEFAULT_TREE_ID_FIELD, DEFAULT_TREE_PARENT_ID_FIELD, DEFAULT_TREE_QTY_FIELD, DataTableCopyActions, DataTableLabels, DataTableProps, type DragState, type EditingCell, PasteMode, RowSelectionMode, type RowSpanInfo, RowsPastePayload, SearchResultItem, SearchStatus, type TreeRow, type UseConvertTreeDataParams, type UseGlideTableOptions, type UseGlideTableResult, type UseInlineSearchOptions, type UseInlineSearchResult, applyCellEdit, applyFillData, applySelectionUpdater, buildColumnRowSpanMap, buildRowsPastePayload, canExpandRow, collectCopyRowEntries, collectCopyRows, collectFillChanges, collectRowSpanColumns, flattenSubtreeRows, getCellEditDraftValue, getCellSelectionEdgeStyle, getColumnEditType, getColumnSizeStyle, getRowIndexInMergedCell, hasCellSelectionEdges, isCellInSelection, isColumnEditable, isEditablePasteTarget, measureMergedSpanRowHeights, parseCellEditValue, parseClipboardTSV, parseClipboardTSVWithDepths, resolvePasteColumnIds, resolveRowSelection, resolveRowSpanAt, rowRangeToHeightRatios, serializeCopyRowsToTSV, serializeSelectionToTSV, toggleExpandedRowId, useCellEdit, useCellSelection, useConvertTreeData, useGlideTable, useInlineSearch, writeSelectionToClipboard };
|
|
466
|
+
export { BUILTIN_CELL_RENDERERS, CELL_SELECTION_EDGES_CLASS, type CellContextWithUpdate, CellKind, CellRenderContext, CellRenderer, type CellRendererRegistry, type CellSelectionBounds, ColumnFreezeOffset, type ColumnRowSpanMap, type CopyRowEntry, type CopySelectionMode, DEFAULT_TREE_CHILDREN_FIELD, DEFAULT_TREE_ID_FIELD, DEFAULT_TREE_PARENT_ID_FIELD, DEFAULT_TREE_QTY_FIELD, DataTableCopyActions, DataTableLabels, DataTableProps, type DragState, type EditingCell, PasteMode, ResolvedTableCell, RowSelectionMode, type RowSpanInfo, RowsPastePayload, SearchResultItem, SearchStatus, type TreeRow, type UseConvertTreeDataParams, type UseGlideTableOptions, type UseGlideTableResult, type UseInlineSearchOptions, type UseInlineSearchResult, applyCellEdit, applyFillData, applySelectionUpdater, buildColumnRowSpanMap, buildRowsPastePayload, canExpandRow, collectCopyRowEntries, collectCopyRows, collectFillChanges, collectRowSpanColumns, commitCellValue, createCellRendererRegistry, flattenSubtreeRows, formatCellValue, formatDefaultCellValue, getCellEditDraftValue, getCellSelectionEdgeStyle, getColumnEditType, getColumnSizeStyle, getRowIndexInMergedCell, hasCellSelectionEdges, isCellInSelection, isColumnEditable, isEditablePasteTarget, measureMergedSpanRowHeights, parseCellEditValue, parseClipboardTSV, parseClipboardTSVWithDepths, resolveCellRenderer, resolvePasteColumnIds, resolveRowSelection, resolveRowSpanAt, rowRangeToHeightRatios, serializeCopyRowsToTSV, serializeSelectionToTSV, toggleExpandedRowId, useCellEdit, useCellSelection, useConvertTreeData, useGlideTable, useInlineSearch, withCellUpdate, writeSelectionToClipboard };
|
package/dist/core.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export {
|
|
3
|
-
import { Row, ColumnDef, Table, Updater, RowSelectionState } from '@tanstack/react-table';
|
|
1
|
+
import { W as CellEditType, c as CellRenderer, C as CellKind, a as CellRenderContext, i as DataTableClassNames, R as RowSelectionMode, g as ColumnFreezeOffset, p as SearchResultItem, q as SearchStatus, l as DataTableProps, k as DataTableLabels, j as DataTableCopyActions, P as PasteMode, o as RowsPastePayload } from './types-bgEceyRV.js';
|
|
2
|
+
export { B as BuiltinCellKind, b as CellRenderFn, d as ColumnFreezeColumnInput, e as ColumnFreezeEdgeSide, f as ColumnFreezeMeta, h as ColumnFreezeSide, D as DEFAULT_DATA_TABLE_LABELS, I as INLINE_SEARCH_MAX_RESULTS, S as SearchCorpusRow, t as buildColumnFreezeOffsets, u as buildFlatSearchCorpus, v as buildSearchMatchKey, w as buildSearchMatchKeys, x as buildTreeSearchCorpus, y as cellValueToSearchText, z as collectAncestorKeysToExpand, A as collectSearchMatchesInRange, E as createSearchRegex, F as escapeSearchRegex, G as formatSearchResultLabel, H as getColumnFreezeEdgeAttr, J as getColumnFreezeStyle, K as mapSearchResultToVisibleItem, L as mapSearchResultsToVisibleKeys, M as nextSearchIndex, N as nextSearchStride, O as previousSearchIndex, Q as resolveColumnFreezeSide, U as resolveDataTableLabels, V as resolveHeaderFreezeOffset } from './types-bgEceyRV.js';
|
|
3
|
+
import { Row, ColumnDef, CellContext, Table, Cell, Updater, RowSelectionState } from '@tanstack/react-table';
|
|
4
4
|
export { ColumnDef, ColumnResizeMode, ColumnSizingState, RowSelectionState } from '@tanstack/react-table';
|
|
5
5
|
import { Virtualizer, VirtualItem } from '@tanstack/react-virtual';
|
|
6
6
|
import * as react from 'react';
|
|
@@ -36,6 +36,12 @@ declare function getCellEditDraftValue(value: unknown): string;
|
|
|
36
36
|
/** Returns updated data on success; null if parsing fails or the cell is not editable */
|
|
37
37
|
declare function applyCellEdit<T extends Record<string, unknown>>(data: T[], rows: Row<T>[], rowIndex: number, colIndex: number, raw: string): T[] | null;
|
|
38
38
|
|
|
39
|
+
type CellRendererRegistry = Map<string, CellRenderer>;
|
|
40
|
+
/** Later entries with the same `kind` override earlier ones (including builtins). */
|
|
41
|
+
declare function createCellRendererRegistry(customRenderers?: readonly CellRenderer[]): CellRendererRegistry;
|
|
42
|
+
declare function resolveCellRenderer<T extends Record<string, unknown>>(registry: CellRendererRegistry, kind: CellKind | undefined, ctx: CellRenderContext<T>): CellRenderer | undefined;
|
|
43
|
+
declare function formatDefaultCellValue(value: unknown): string | null;
|
|
44
|
+
|
|
39
45
|
type CellPosition = {
|
|
40
46
|
row: number;
|
|
41
47
|
col: number;
|
|
@@ -164,6 +170,10 @@ type DataTableRowContextValue = {
|
|
|
164
170
|
onCommitEdit: (raw?: string) => boolean;
|
|
165
171
|
onCancelEdit: () => void;
|
|
166
172
|
};
|
|
173
|
+
cellRender: {
|
|
174
|
+
registry: CellRendererRegistry;
|
|
175
|
+
commitValue: (rowId: string, columnId: string, value: unknown) => boolean;
|
|
176
|
+
};
|
|
167
177
|
expand: {
|
|
168
178
|
enableExpand: boolean;
|
|
169
179
|
toggleField?: string;
|
|
@@ -187,6 +197,19 @@ type DataTableRowContextValue = {
|
|
|
187
197
|
};
|
|
188
198
|
};
|
|
189
199
|
|
|
200
|
+
/**
|
|
201
|
+
* TanStack `CellContext` with a guaranteed `update` commit helper.
|
|
202
|
+
* Prefer this over bare `cell.getContext()`, which does not include `update` at runtime.
|
|
203
|
+
*/
|
|
204
|
+
type CellContextWithUpdate<TData, TValue> = CellContext<TData, TValue> & {
|
|
205
|
+
update: (next: TValue) => void;
|
|
206
|
+
};
|
|
207
|
+
/**
|
|
208
|
+
* Injects `update` into a TanStack `CellContext` so `ColumnDef.cell` can commit
|
|
209
|
+
* through `onCellChange` / `onDataChange` the same way compound `Column.render` does.
|
|
210
|
+
*/
|
|
211
|
+
declare function withCellUpdate<TData extends Record<string, unknown>, TValue>(context: CellContext<TData, TValue>, commitValue: (rowId: string, columnId: string, value: unknown) => boolean): CellContextWithUpdate<TData, TValue>;
|
|
212
|
+
|
|
190
213
|
type UseInlineSearchOptions = {
|
|
191
214
|
enabled?: boolean;
|
|
192
215
|
rowCount: number;
|
|
@@ -248,6 +271,11 @@ type UseGlideTableResult<T extends Record<string, unknown>> = {
|
|
|
248
271
|
paddingTop: number;
|
|
249
272
|
paddingBottom: number;
|
|
250
273
|
rowContextValue: DataTableRowContextValue;
|
|
274
|
+
/**
|
|
275
|
+
* TanStack `CellContext` with `update` injected for custom `ColumnDef.cell` renders.
|
|
276
|
+
* Prefer this over `cell.getContext()` when calling `flexRender` yourself.
|
|
277
|
+
*/
|
|
278
|
+
getCellContext: <TValue>(cell: Cell<T, TValue>) => CellContextWithUpdate<T, TValue>;
|
|
251
279
|
handleToggleSelect: (row: Row<T>) => void;
|
|
252
280
|
clearHover: () => void;
|
|
253
281
|
copySelection: DataTableCopyActions["copySelection"];
|
|
@@ -284,6 +312,27 @@ declare function useCellEdit<T extends Record<string, unknown>>({ data, rows, on
|
|
|
284
312
|
cancelEdit: () => void;
|
|
285
313
|
};
|
|
286
314
|
|
|
315
|
+
declare const BUILTIN_CELL_RENDERERS: CellRenderer[];
|
|
316
|
+
|
|
317
|
+
type CommitCellValueOptions<T extends Record<string, unknown>> = {
|
|
318
|
+
data: T[];
|
|
319
|
+
rows: Row<T>[];
|
|
320
|
+
rowId: string;
|
|
321
|
+
columnId: string;
|
|
322
|
+
value: unknown;
|
|
323
|
+
onCellChange?: (rowId: string, columnId: string, value: unknown) => void;
|
|
324
|
+
onDataChange?: (data: T[]) => void;
|
|
325
|
+
};
|
|
326
|
+
/**
|
|
327
|
+
* Shared commit path for custom `render` updates and built-in cell kinds.
|
|
328
|
+
* Prefers `onCellChange`; falls back to immutable `onDataChange` patch.
|
|
329
|
+
*/
|
|
330
|
+
declare function commitCellValue<T extends Record<string, unknown>>({ data, rows, rowId, columnId, value, onCellChange, onDataChange, }: CommitCellValueOptions<T>): boolean;
|
|
331
|
+
|
|
332
|
+
declare function ResolvedTableCell<T extends Record<string, unknown>>({ info, }: {
|
|
333
|
+
info: CellContext<T, unknown>;
|
|
334
|
+
}): react.ReactNode;
|
|
335
|
+
|
|
287
336
|
/** Width styles for header/body cells when column sizing is active. */
|
|
288
337
|
declare function getColumnSizeStyle(size: number, options?: {
|
|
289
338
|
force?: boolean;
|
|
@@ -350,6 +399,11 @@ type CopyRowEntry<T extends Record<string, unknown>> = {
|
|
|
350
399
|
/** Tree depth relative to the table root (0 = top-level). */
|
|
351
400
|
depth: number;
|
|
352
401
|
};
|
|
402
|
+
/**
|
|
403
|
+
* Clipboard / Excel paste expects one plain string per cell.
|
|
404
|
+
* Avoids `String(object)` → `[object Object]` and joins arrays with `, `.
|
|
405
|
+
*/
|
|
406
|
+
declare function formatCellValue(value: unknown): string;
|
|
353
407
|
declare function flattenSubtreeRows<T extends Record<string, unknown>>(row: T): T[];
|
|
354
408
|
/**
|
|
355
409
|
* Collects copy rows with tree depth so paste can rebuild parent/child nesting.
|
|
@@ -409,4 +463,4 @@ declare const useConvertTreeData: <T extends Record<string, unknown>>({ data, en
|
|
|
409
463
|
declare function resolveRowSelection(mode: RowSelectionMode, controlledSelection: RowSelectionState | undefined, internalSelection: RowSelectionState): RowSelectionState;
|
|
410
464
|
declare function applySelectionUpdater(mode: RowSelectionMode, updater: Updater<RowSelectionState>, previous: RowSelectionState): RowSelectionState;
|
|
411
465
|
|
|
412
|
-
export { CELL_SELECTION_EDGES_CLASS, type CellSelectionBounds, ColumnFreezeOffset, type ColumnRowSpanMap, type CopyRowEntry, type CopySelectionMode, DEFAULT_TREE_CHILDREN_FIELD, DEFAULT_TREE_ID_FIELD, DEFAULT_TREE_PARENT_ID_FIELD, DEFAULT_TREE_QTY_FIELD, DataTableCopyActions, DataTableLabels, DataTableProps, type DragState, type EditingCell, PasteMode, RowSelectionMode, type RowSpanInfo, RowsPastePayload, SearchResultItem, SearchStatus, type TreeRow, type UseConvertTreeDataParams, type UseGlideTableOptions, type UseGlideTableResult, type UseInlineSearchOptions, type UseInlineSearchResult, applyCellEdit, applyFillData, applySelectionUpdater, buildColumnRowSpanMap, buildRowsPastePayload, canExpandRow, collectCopyRowEntries, collectCopyRows, collectFillChanges, collectRowSpanColumns, flattenSubtreeRows, getCellEditDraftValue, getCellSelectionEdgeStyle, getColumnEditType, getColumnSizeStyle, getRowIndexInMergedCell, hasCellSelectionEdges, isCellInSelection, isColumnEditable, isEditablePasteTarget, measureMergedSpanRowHeights, parseCellEditValue, parseClipboardTSV, parseClipboardTSVWithDepths, resolvePasteColumnIds, resolveRowSelection, resolveRowSpanAt, rowRangeToHeightRatios, serializeCopyRowsToTSV, serializeSelectionToTSV, toggleExpandedRowId, useCellEdit, useCellSelection, useConvertTreeData, useGlideTable, useInlineSearch, writeSelectionToClipboard };
|
|
466
|
+
export { BUILTIN_CELL_RENDERERS, CELL_SELECTION_EDGES_CLASS, type CellContextWithUpdate, CellKind, CellRenderContext, CellRenderer, type CellRendererRegistry, type CellSelectionBounds, ColumnFreezeOffset, type ColumnRowSpanMap, type CopyRowEntry, type CopySelectionMode, DEFAULT_TREE_CHILDREN_FIELD, DEFAULT_TREE_ID_FIELD, DEFAULT_TREE_PARENT_ID_FIELD, DEFAULT_TREE_QTY_FIELD, DataTableCopyActions, DataTableLabels, DataTableProps, type DragState, type EditingCell, PasteMode, ResolvedTableCell, RowSelectionMode, type RowSpanInfo, RowsPastePayload, SearchResultItem, SearchStatus, type TreeRow, type UseConvertTreeDataParams, type UseGlideTableOptions, type UseGlideTableResult, type UseInlineSearchOptions, type UseInlineSearchResult, applyCellEdit, applyFillData, applySelectionUpdater, buildColumnRowSpanMap, buildRowsPastePayload, canExpandRow, collectCopyRowEntries, collectCopyRows, collectFillChanges, collectRowSpanColumns, commitCellValue, createCellRendererRegistry, flattenSubtreeRows, formatCellValue, formatDefaultCellValue, getCellEditDraftValue, getCellSelectionEdgeStyle, getColumnEditType, getColumnSizeStyle, getRowIndexInMergedCell, hasCellSelectionEdges, isCellInSelection, isColumnEditable, isEditablePasteTarget, measureMergedSpanRowHeights, parseCellEditValue, parseClipboardTSV, parseClipboardTSVWithDepths, resolveCellRenderer, resolvePasteColumnIds, resolveRowSelection, resolveRowSpanAt, rowRangeToHeightRatios, serializeCopyRowsToTSV, serializeSelectionToTSV, toggleExpandedRowId, useCellEdit, useCellSelection, useConvertTreeData, useGlideTable, useInlineSearch, withCellUpdate, writeSelectionToClipboard };
|