@alaarab/ogrid-react-fluent 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.
@@ -668,10 +668,11 @@
668
668
  padding: 6px 12px;
669
669
  box-sizing: border-box;
670
670
  font-size: 12px;
671
+ line-height: 20px;
671
672
  color: var(--ogrid-fg-muted, rgba(0, 0, 0, 0.5));
672
673
  background: var(--ogrid-header-bg, #f5f5f5);
673
674
  border-top: 1px solid var(--ogrid-border, rgba(0, 0, 0, 0.12));
674
- min-height: 28px;
675
+ min-height: 33px;
675
676
  }
676
677
  .ogrid-fluent__DataGridTable-module__statusBarItem {
677
678
  display: inline-flex;
package/dist/esm/index.js CHANGED
@@ -724,7 +724,7 @@ function DataGridTableInner(props) {
724
724
  const displayContent = resolveCellDisplayContent(col, item, descriptor.displayValue);
725
725
  const cellStyle = resolveCellStyle(col, item);
726
726
  const styledContent = cellStyle ? /* @__PURE__ */ jsx("span", { style: cellStyle, children: displayContent }) : displayContent;
727
- const cellClassNames = `${DataGridTable_module_default.cellContent}${descriptor.isActive && !descriptor.isInRange ? ` ${DataGridTable_module_default.activeCellContent}` : ""}${descriptor.isInRange ? ` ${DataGridTable_module_default.cellInRange}` : ""}${descriptor.isInCutRange ? ` ${DataGridTable_module_default.cellCut}` : ""}${descriptor.isInCopyRange ? ` ${DataGridTable_module_default.cellCopied}` : ""}`;
727
+ const cellClassNames = `${DataGridTable_module_default.cellContent}${descriptor.isActive ? ` ${DataGridTable_module_default.activeCellContent}` : ""}${descriptor.isInRange && !descriptor.isActive ? ` ${DataGridTable_module_default.cellInRange}` : ""}${descriptor.isInCutRange ? ` ${DataGridTable_module_default.cellCut}` : ""}${descriptor.isInCopyRange ? ` ${DataGridTable_module_default.cellCopied}` : ""}`;
728
728
  const interactionProps = getCellInteractionProps(descriptor, col.columnId, interactionHandlers);
729
729
  content = /* @__PURE__ */ jsxs(
730
730
  "div",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alaarab/ogrid-react-fluent",
3
- "version": "2.1.14",
3
+ "version": "2.1.15",
4
4
  "description": "OGrid React Fluent implementation – DataGrid-powered data table with sorting, filtering, pagination, column chooser, and CSV export.",
5
5
  "main": "dist/esm/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -41,7 +41,7 @@
41
41
  "node": ">=18"
42
42
  },
43
43
  "dependencies": {
44
- "@alaarab/ogrid-react": "2.1.14"
44
+ "@alaarab/ogrid-react": "2.1.15"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "@fluentui/react-components": "^9.0.0",