oolib 2.67.7 → 2.67.8
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.
|
@@ -183,10 +183,10 @@ function SimpleTable(_a) {
|
|
|
183
183
|
onMouseDown: function (e) {
|
|
184
184
|
initColResizeState(e, { colId: "col_".concat(cellIdx) });
|
|
185
185
|
}, onMouseOut: resetDragZoneIndicator, onMouseMove: hideShowDragZoneIndicator, tabIndex: 0 },
|
|
186
|
-
enableColActions &&
|
|
186
|
+
!readOnly && enableColActions &&
|
|
187
187
|
rowIdx === 0 &&
|
|
188
188
|
hoveredRowAndCol.colIdx === cellIdx && react_1.default.createElement(ColActionsMenu_1.ColActionsMenu, null),
|
|
189
|
-
enableRowActions &&
|
|
189
|
+
!readOnly && enableRowActions &&
|
|
190
190
|
cellIdx === 0 &&
|
|
191
191
|
rowIdx !== undefined && //cuz for fixed col headers, rowIdx is undefined
|
|
192
192
|
hoveredRowAndCol.rowIdx === rowIdx && (react_1.default.createElement(RowActionsMenu_1.RowActionsMenu, __assign({}, { value: value, rowIdx: rowIdx, onChange: onChange, id: id }))),
|