@alaarab/ogrid-angular-material 2.1.12 → 2.1.14

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
@@ -558,7 +558,7 @@ DataGridTableComponent = __decorateClass([
558
558
  [attr.data-overflow-x]="allowOverflowX() ? 'true' : 'false'"
559
559
  >
560
560
  <div class="ogrid-datagrid-scroll-wrapper">
561
- <div [style.minWidth.px]="allowOverflowX() ? minTableWidth() : undefined">
561
+ <div [style.minWidth.px]="allowOverflowX() ? minTableWidth() : undefined" style="overflow-x: clip">
562
562
  <div [class.ogrid-datagrid-table-wrapper--loading]="isLoading() && items().length > 0" #tableContainerElRef>
563
563
  <table class="ogrid-datagrid-table" role="grid" [style.minWidth.px]="minTableWidth()"
564
564
  >
@@ -650,7 +650,7 @@ DataGridTableComponent = __decorateClass([
650
650
  [handlers]="getColumnMenuHandlersMemoized(col.columnId)"
651
651
  />
652
652
  </div>
653
- <div class="ogrid-datagrid-resize-handle" (mousedown)="onResizeStart($event, col)"></div>
653
+ <div class="ogrid-datagrid-resize-handle" (mousedown)="onResizeStart($event, col)" (dblclick)="onResizeDoubleClick($event, col)"></div>
654
654
  </th>
655
655
  }
656
656
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alaarab/ogrid-angular-material",
3
- "version": "2.1.12",
3
+ "version": "2.1.14",
4
4
  "description": "OGrid Angular Material – MatTable-based data grid with sorting, filtering, pagination, column chooser, and CSV export.",
5
5
  "main": "dist/esm/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -37,7 +37,7 @@
37
37
  "node": ">=18"
38
38
  },
39
39
  "dependencies": {
40
- "@alaarab/ogrid-angular": "2.1.12"
40
+ "@alaarab/ogrid-angular": "2.1.14"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "@angular/cdk": "^21.0.0",