@alaarab/ogrid-react-material 2.1.14 → 2.1.15

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/esm/index.js CHANGED
@@ -971,8 +971,8 @@ function DataGridTableInner(props) {
971
971
  if (col.type === "numeric") cls += " ogrid-mat-cell--numeric";
972
972
  else if (col.type === "boolean") cls += " ogrid-mat-cell--boolean";
973
973
  if (descriptor.canEditAny) cls += " ogrid-mat-cell--editable";
974
- if (descriptor.isActive && !descriptor.isInRange) cls += " ogrid-mat-cell--active";
975
- if (descriptor.isInRange) cls += " ogrid-mat-cell--range";
974
+ if (descriptor.isActive) cls += " ogrid-mat-cell--active";
975
+ if (descriptor.isInRange && !descriptor.isActive) cls += " ogrid-mat-cell--range";
976
976
  if (descriptor.isInCutRange) cls += " ogrid-mat-cell--cut";
977
977
  const interactionProps = getCellInteractionProps(descriptor, col.columnId, interactionHandlers);
978
978
  cellContent = /* @__PURE__ */ jsxs(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alaarab/ogrid-react-material",
3
- "version": "2.1.14",
3
+ "version": "2.1.15",
4
4
  "description": "OGrid React Material implementation – MUI Table–based data grid with sorting, filtering, pagination, column chooser, spreadsheet selection, and CSV export.",
5
5
  "main": "dist/esm/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -39,7 +39,7 @@
39
39
  "node": ">=18"
40
40
  },
41
41
  "dependencies": {
42
- "@alaarab/ogrid-react": "2.1.14"
42
+ "@alaarab/ogrid-react": "2.1.15"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "@emotion/react": "^11.0.0",