ms-data-grid 0.0.79 → 0.0.80
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/esm2022/lib/data-grid/data-grid.component.mjs +51 -30
- package/esm2022/lib/services/common.service.mjs +8 -7
- package/esm2022/lib/services/split-columns.service.mjs +30 -25
- package/fesm2022/ms-data-grid.mjs +86 -59
- package/fesm2022/ms-data-grid.mjs.map +1 -1
- package/lib/data-grid/data-grid.component.d.ts +3 -2
- package/lib/services/common.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -189,6 +189,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
189
189
|
private injector;
|
|
190
190
|
createCellInjector(row: any, col: any): Injector;
|
|
191
191
|
private renderCustomCells;
|
|
192
|
+
shouldRestoreScroll: boolean;
|
|
192
193
|
ngAfterViewChecked(): void;
|
|
193
194
|
ngOnInit(): void;
|
|
194
195
|
dataSetLoading: boolean;
|
|
@@ -383,8 +384,8 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
383
384
|
firstValue: any;
|
|
384
385
|
firstCondition: string;
|
|
385
386
|
secondValue: any;
|
|
386
|
-
secondCondition: null;
|
|
387
|
-
condition: string;
|
|
387
|
+
secondCondition: string | null;
|
|
388
|
+
condition: string | null;
|
|
388
389
|
resetTextFilterChanges(): void;
|
|
389
390
|
toggleAllValusSelectionInDropdownFilter(column: any): void;
|
|
390
391
|
selectedFilterOptions: any[];
|
|
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class CommonService {
|
|
3
3
|
private datePipe;
|
|
4
4
|
constructor();
|
|
5
|
+
mainContainerLeft: number;
|
|
5
6
|
gethasVisibleColumns(columns: any[]): boolean;
|
|
6
7
|
gethasInVisibleColumns(columns: any[]): boolean;
|
|
7
8
|
getTotalColumnsLength(columns: any[]): number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ms-data-grid",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.80",
|
|
4
4
|
"description": "A powerful, customizable Angular data grid component with advanced features like sorting, filtering, pagination, column pinning, and taskbar actions. Perfect for enterprise applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|