@linzjs/step-ag-grid 17.10.0 → 17.11.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
|
@@ -103,6 +103,7 @@ export interface GridProps {
|
|
|
103
103
|
singleClickEdit?: boolean;
|
|
104
104
|
|
|
105
105
|
loading?: boolean;
|
|
106
|
+
suppressCellFocus?: boolean;
|
|
106
107
|
}
|
|
107
108
|
|
|
108
109
|
/**
|
|
@@ -734,6 +735,7 @@ export const Grid = ({
|
|
|
734
735
|
onRowDragMove={onRowDragMove}
|
|
735
736
|
onRowDragEnd={onRowDragEnd}
|
|
736
737
|
onRowDragLeave={onRowDragLeave}
|
|
738
|
+
suppressCellFocus={params.suppressCellFocus}
|
|
737
739
|
/>
|
|
738
740
|
</div>
|
|
739
741
|
</div>
|