@linzjs/step-ag-grid 8.3.0 → 8.3.1
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/step-ag-grid.esm.js
CHANGED
|
@@ -2864,7 +2864,7 @@ var Grid = function (params) {
|
|
|
2864
2864
|
var adjustColDefs = params.columnDefs.map(function (colDef) {
|
|
2865
2865
|
var _a;
|
|
2866
2866
|
var colDefEditable = colDef.editable;
|
|
2867
|
-
var editable = combineEditables(params.readOnly !==
|
|
2867
|
+
var editable = combineEditables(params.readOnly !== true, (_a = params.defaultColDef) === null || _a === void 0 ? void 0 : _a.editable, colDefEditable);
|
|
2868
2868
|
return __assign(__assign({}, colDef), { editable: editable, cellClassRules: __assign(__assign({}, colDef.cellClassRules), { "GridCell-readonly": function (ccp) { return !editable(ccp); } }) });
|
|
2869
2869
|
});
|
|
2870
2870
|
return params.selectable
|