@glideappsfinal/glide-data-grid-source 6.0.10 → 6.0.11
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/dist/dts/index.d.ts
CHANGED
|
@@ -6,4 +6,3 @@ export type RowToCell<T> = (row: T, col: number) => GridCell;
|
|
|
6
6
|
export type RowEditedCallback<T> = (cell: Item, newVal: EditableGridCell, rowData: T) => T | undefined;
|
|
7
7
|
export declare function useAsyncDataSource<TRowType>(pageSize: number, maxConcurrency: number, getRowData: RowCallback<TRowType>, toCell: RowToCell<TRowType>, onEdited: RowEditedCallback<TRowType>, gridRef: React.MutableRefObject<DataEditorRef | null>): Pick<DataEditorProps, "getCellContent" | "onVisibleRegionChanged" | "onCellEdited" | "getCellsForSelection">;
|
|
8
8
|
export {};
|
|
9
|
-
//# sourceMappingURL=use-async-data-source.d.ts.map
|
|
@@ -5,4 +5,3 @@ type Props = Pick<DataEditorProps, "columns" | "onGroupHeaderClicked" | "onGridS
|
|
|
5
5
|
type Result = Pick<DataEditorProps, "columns" | "onGroupHeaderClicked" | "onGridSelectionChange" | "getGroupDetails" | "gridSelection">;
|
|
6
6
|
export declare function useCollapsingGroups(props: Props): Result;
|
|
7
7
|
export {};
|
|
8
|
-
//# sourceMappingURL=use-collapsing-groups.d.ts.map
|
|
@@ -2,4 +2,3 @@ import type { DataEditorProps } from "@glideapps/glide-data-grid";
|
|
|
2
2
|
type Props = Pick<DataEditorProps, "columns" | "onColumnMoved" | "getCellContent">;
|
|
3
3
|
export declare function useMoveableColumns(p: Props): Required<Props>;
|
|
4
4
|
export {};
|
|
5
|
-
//# sourceMappingURL=use-movable-columns.d.ts.map
|