@linzjs/step-ag-grid 7.11.13 → 7.12.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/package.json
CHANGED
package/src/components/Grid.tsx
CHANGED
|
@@ -35,6 +35,7 @@ export interface GridProps {
|
|
|
35
35
|
rowClassRules?: GridOptions["rowClassRules"];
|
|
36
36
|
rowSelection?: "single" | "multiple";
|
|
37
37
|
autoSelectFirstRow?: boolean;
|
|
38
|
+
onColumnMoved?: GridOptions["onColumnMoved"];
|
|
38
39
|
}
|
|
39
40
|
|
|
40
41
|
/**
|
|
@@ -339,6 +340,7 @@ export const Grid = (params: GridProps): JSX.Element => {
|
|
|
339
340
|
onSortChanged={ensureSelectedRowIsVisible}
|
|
340
341
|
postSortRows={params.postSortRows ?? postSortRows}
|
|
341
342
|
onSelectionChanged={synchroniseExternalStateToGridSelection}
|
|
343
|
+
onColumnMoved={params.onColumnMoved}
|
|
342
344
|
/>
|
|
343
345
|
</div>
|
|
344
346
|
);
|