@alaarab/ogrid-angular-primeng 2.1.13 → 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 +2 -1
- package/package.json +2 -2
package/dist/esm/index.js
CHANGED
|
@@ -892,6 +892,7 @@ DataGridTableComponent = __decorateClass([
|
|
|
892
892
|
<div
|
|
893
893
|
class="ogrid-resize-handle"
|
|
894
894
|
(mousedown)="onResizeStartPrimeng($event, col)"
|
|
895
|
+
(dblclick)="onResizeDoubleClick($event, col)"
|
|
895
896
|
[attr.aria-label]="'Resize ' + col.name"
|
|
896
897
|
></div>
|
|
897
898
|
</th>
|
|
@@ -984,7 +985,7 @@ DataGridTableComponent = __decorateClass([
|
|
|
984
985
|
(contextmenu)="onCellContextMenu($event)"
|
|
985
986
|
class="ogrid-cell-content"
|
|
986
987
|
[style.cursor]="descriptor.canEditAny ? 'cell' : 'default'"
|
|
987
|
-
[style.background]="descriptor.isInRange ? 'var(--ogrid-range-bg, rgba(33, 115, 70, 0.08))' : null"
|
|
988
|
+
[style.background]="descriptor.isInRange && !descriptor.isActive ? 'var(--ogrid-range-bg, rgba(33, 115, 70, 0.08))' : null"
|
|
988
989
|
[style.outline]="descriptor.isActive ? '2px solid var(--ogrid-selection, #217346)' : null"
|
|
989
990
|
[style.outline-offset]="descriptor.isActive ? '-2px' : null"
|
|
990
991
|
>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alaarab/ogrid-angular-primeng",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.15",
|
|
4
4
|
"description": "OGrid PrimeNG – PrimeNG Table-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.
|
|
40
|
+
"@alaarab/ogrid-angular": "2.1.15"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"@angular/core": "^21.0.0",
|