@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
14 lines (13 loc) • 584 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isMultipleRowSelectionEnabled = isMultipleRowSelectionEnabled;
var _useGridApiEventHandler = require("../../utils/useGridApiEventHandler");
function isMultipleRowSelectionEnabled(props) {
if (props.signature === _useGridApiEventHandler.GridSignature.DataGrid) {
// DataGrid Community has multiple row selection enabled only if checkbox selection is enabled.
return props.checkboxSelection && props.disableMultipleRowSelection !== true;
}
return !props.disableMultipleRowSelection;
}
;