@alaarab/ogrid-angular-primeng 2.0.17 → 2.0.18
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.
|
@@ -21,8 +21,6 @@ let DataGridTableComponent = class DataGridTableComponent extends BaseDataGridTa
|
|
|
21
21
|
this.onColumnPinned = undefined;
|
|
22
22
|
this.pinnedColumnsInput = undefined;
|
|
23
23
|
this.initialColumnWidths = undefined;
|
|
24
|
-
this.freezeRowsInput = undefined;
|
|
25
|
-
this.freezeColsInput = undefined;
|
|
26
24
|
this.layoutMode = 'fill';
|
|
27
25
|
this.suppressHorizontalScroll = undefined;
|
|
28
26
|
this.columnReorder = undefined;
|
|
@@ -289,8 +287,6 @@ let DataGridTableComponent = class DataGridTableComponent extends BaseDataGridTa
|
|
|
289
287
|
onColumnPinned: this.onColumnPinned,
|
|
290
288
|
pinnedColumns: this.pinnedColumnsInput,
|
|
291
289
|
initialColumnWidths: this.initialColumnWidths,
|
|
292
|
-
freezeRows: this.freezeRowsInput,
|
|
293
|
-
freezeCols: this.freezeColsInput,
|
|
294
290
|
layoutMode: this.layoutMode,
|
|
295
291
|
suppressHorizontalScroll: this.suppressHorizontalScroll,
|
|
296
292
|
columnReorder: this.columnReorder,
|
|
@@ -368,12 +364,6 @@ __decorate([
|
|
|
368
364
|
__decorate([
|
|
369
365
|
Input()
|
|
370
366
|
], DataGridTableComponent.prototype, "initialColumnWidths", void 0);
|
|
371
|
-
__decorate([
|
|
372
|
-
Input({ alias: 'freezeRows' })
|
|
373
|
-
], DataGridTableComponent.prototype, "freezeRowsInput", void 0);
|
|
374
|
-
__decorate([
|
|
375
|
-
Input({ alias: 'freezeCols' })
|
|
376
|
-
], DataGridTableComponent.prototype, "freezeColsInput", void 0);
|
|
377
367
|
__decorate([
|
|
378
368
|
Input()
|
|
379
369
|
], DataGridTableComponent.prototype, "layoutMode", void 0);
|
|
@@ -490,8 +480,6 @@ DataGridTableComponent = __decorate([
|
|
|
490
480
|
[attr.aria-labelledby]="ariaLabelledBy()"
|
|
491
481
|
[attr.data-empty]="showEmptyInGrid() ? 'true' : null"
|
|
492
482
|
[attr.data-column-count]="state().layout.totalColCount"
|
|
493
|
-
[attr.data-freeze-rows]="freezeRows() != null && freezeRows()! >= 1 ? freezeRows() : null"
|
|
494
|
-
[attr.data-freeze-cols]="freezeCols() != null && freezeCols()! >= 1 ? freezeCols() : null"
|
|
495
483
|
[attr.data-overflow-x]="allowOverflowX() ? 'true' : 'false'"
|
|
496
484
|
[attr.data-has-selection]="rowSelectionMode !== 'none' ? 'true' : null"
|
|
497
485
|
(contextmenu)="$event.preventDefault()"
|
|
@@ -93,8 +93,6 @@ OGridComponent = __decorate([
|
|
|
93
93
|
[onColumnOrderChange]="service.onColumnOrderChange()"
|
|
94
94
|
[onColumnResized]="onColumnResizedFn"
|
|
95
95
|
[onColumnPinned]="onColumnPinnedFn"
|
|
96
|
-
[freezeRows]="service.freezeRows()"
|
|
97
|
-
[freezeCols]="service.freezeCols()"
|
|
98
96
|
[editable]="service.editable()"
|
|
99
97
|
[cellSelection]="service.cellSelection()"
|
|
100
98
|
[onCellValueChanged]="service.onCellValueChanged()"
|
|
@@ -17,8 +17,6 @@ export declare class DataGridTableComponent<T = unknown> extends BaseDataGridTab
|
|
|
17
17
|
onColumnPinned: ((columnId: string, pinned: 'left' | 'right' | null) => void) | undefined;
|
|
18
18
|
pinnedColumnsInput: Record<string, 'left' | 'right'> | undefined;
|
|
19
19
|
initialColumnWidths: Record<string, number> | undefined;
|
|
20
|
-
freezeRowsInput: number | undefined;
|
|
21
|
-
freezeColsInput: number | undefined;
|
|
22
20
|
layoutMode: 'content' | 'fill';
|
|
23
21
|
suppressHorizontalScroll: boolean | undefined;
|
|
24
22
|
columnReorder: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alaarab/ogrid-angular-primeng",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.18",
|
|
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.0.
|
|
40
|
+
"@alaarab/ogrid-angular": "2.0.18"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"@angular/core": "^21.0.0",
|