ms-data-grid 0.0.78 → 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 +60 -33
- package/esm2022/lib/data-grid.module.mjs +4 -4
- 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 +98 -65
- package/fesm2022/ms-data-grid.mjs.map +1 -1
- package/lib/data-grid/data-grid.component.d.ts +4 -2
- package/lib/data-grid.module.d.ts +1 -1
- 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;
|
|
@@ -355,6 +356,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
355
356
|
onChildDroplistSorted: (event: CdkDragSortEvent<any>, section: string) => Promise<void>;
|
|
356
357
|
onChildDroplistDroped(cdkDragDropevent: CdkDragDrop<any>): void;
|
|
357
358
|
groupData(data: any[], groupFields: string[]): any[];
|
|
359
|
+
toTitleCase(str: string): string;
|
|
358
360
|
countLeafRows(group: any): number;
|
|
359
361
|
isActiveFilterOpen: boolean;
|
|
360
362
|
toggleActiveFilter(): void;
|
|
@@ -382,8 +384,8 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
382
384
|
firstValue: any;
|
|
383
385
|
firstCondition: string;
|
|
384
386
|
secondValue: any;
|
|
385
|
-
secondCondition: null;
|
|
386
|
-
condition: string;
|
|
387
|
+
secondCondition: string | null;
|
|
388
|
+
condition: string | null;
|
|
387
389
|
resetTextFilterChanges(): void;
|
|
388
390
|
toggleAllValusSelectionInDropdownFilter(column: any): void;
|
|
389
391
|
selectedFilterOptions: any[];
|
|
@@ -13,6 +13,6 @@ import * as i11 from "ng-inline-svg";
|
|
|
13
13
|
import * as i12 from "@angular/cdk/scrolling";
|
|
14
14
|
export declare class DataGridModule {
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataGridModule, never>;
|
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DataGridModule, [typeof i1.DataGridComponent, typeof i2.FilterPipe, typeof i3.FormatIndexPipe, typeof i4.CellHostDirective, typeof i5.CellRenderInitDirective, typeof i6.CellEditorDirective, typeof i7.FormatCurrencyPipe], [typeof i8.CommonModule, typeof i9.FormsModule, typeof i10.DragDropModule, typeof i11.InlineSVGModule, typeof i12.ScrollingModule], [typeof i1.DataGridComponent]>;
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DataGridModule, [typeof i1.DataGridComponent, typeof i2.FilterPipe, typeof i3.FormatIndexPipe, typeof i4.CellHostDirective, typeof i5.CellRenderInitDirective, typeof i6.CellEditorDirective, typeof i7.FormatCurrencyPipe], [typeof i8.CommonModule, typeof i9.FormsModule, typeof i10.DragDropModule, typeof i11.InlineSVGModule, typeof i12.ScrollingModule, typeof i8.TitleCasePipe], [typeof i1.DataGridComponent]>;
|
|
17
17
|
static ɵinj: i0.ɵɵInjectorDeclaration<DataGridModule>;
|
|
18
18
|
}
|
|
@@ -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",
|