ms-data-grid 0.0.31 → 0.0.33
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/README.md +1 -1
- package/esm2022/lib/data-grid/data-grid.component.mjs +973 -254
- package/esm2022/lib/data-grid.module.mjs +6 -5
- package/esm2022/lib/services/common.service.mjs +5 -5
- package/fesm2022/ms-data-grid.mjs +979 -260
- package/fesm2022/ms-data-grid.mjs.map +1 -1
- package/lib/data-grid/data-grid.component.d.ts +60 -18
- package/lib/data-grid.module.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnChanges, SimpleChanges, ElementRef, AfterViewInit, ChangeDetectorRef, EventEmitter, NgZone } from '@angular/core';
|
|
1
|
+
import { OnInit, OnChanges, SimpleChanges, ElementRef, AfterViewInit, ChangeDetectorRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
2
|
import { SplitColumnsService } from '../services/split-columns.service';
|
|
3
3
|
import { CommonService } from '../services/common.service';
|
|
4
4
|
import { SwapColumnsService } from '../services/swap-columns.service';
|
|
@@ -7,7 +7,7 @@ import { CdkDropList } from '@angular/cdk/drag-drop';
|
|
|
7
7
|
import { CopyServiceService } from '../services/copy-service.service';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export declare const sortingAnimation: import("@angular/animations").AnimationTriggerMetadata;
|
|
10
|
-
export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
10
|
+
export declare class DataGridComponent implements OnChanges, AfterViewInit, OnInit {
|
|
11
11
|
private columnService;
|
|
12
12
|
private cdr;
|
|
13
13
|
commonSevice: CommonService;
|
|
@@ -89,10 +89,21 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
|
89
89
|
selectedRowsBackgroundColor: string;
|
|
90
90
|
nestedTableHeaderBAckgroundColor: string;
|
|
91
91
|
tableView: any[];
|
|
92
|
+
buttons: {
|
|
93
|
+
name: string;
|
|
94
|
+
is_showIcon: boolean;
|
|
95
|
+
icon: string;
|
|
96
|
+
}[];
|
|
92
97
|
keepMultipleExpandedDetails: boolean;
|
|
93
98
|
showTotalAmountRow: boolean;
|
|
99
|
+
enableGlobalSearch: boolean;
|
|
94
100
|
tableType: string;
|
|
95
101
|
widgets: any[];
|
|
102
|
+
enableCut: boolean;
|
|
103
|
+
tabs: string[];
|
|
104
|
+
resetAllFilters: {
|
|
105
|
+
resetAll: boolean;
|
|
106
|
+
};
|
|
96
107
|
columnThreedotsMunuConfig: {
|
|
97
108
|
showPinleft: boolean;
|
|
98
109
|
showPinright: boolean;
|
|
@@ -111,6 +122,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
|
111
122
|
tablePresetConfig: EventEmitter<any>;
|
|
112
123
|
sortingOrderOptions: EventEmitter<any>;
|
|
113
124
|
createUpdateConfigListing: EventEmitter<any>;
|
|
125
|
+
activeTab: string | null;
|
|
114
126
|
groupedColumns: any[];
|
|
115
127
|
activeCol: any;
|
|
116
128
|
activeFilterCell: any;
|
|
@@ -126,13 +138,14 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
|
126
138
|
filterColumnsList: any[];
|
|
127
139
|
groupBoxPadding: number;
|
|
128
140
|
presetName: string;
|
|
129
|
-
presetFilter:
|
|
141
|
+
presetFilter: boolean;
|
|
130
142
|
searchTextPresetTable: string;
|
|
131
143
|
addFilterColumnInput: string;
|
|
132
144
|
searchInDropdown: string;
|
|
133
145
|
addFilterDropdownSearch: string;
|
|
134
146
|
topShowHideColumns: string;
|
|
135
147
|
choseColumnsSearch: string;
|
|
148
|
+
sideNestedFilterSearch: string;
|
|
136
149
|
editinDropdownSearch: string;
|
|
137
150
|
isThreeDotsFilterOpen: boolean;
|
|
138
151
|
confirmDelete: boolean;
|
|
@@ -140,8 +153,12 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
|
140
153
|
fontSizes: string[];
|
|
141
154
|
constructor(columnService: SplitColumnsService, cdr: ChangeDetectorRef, commonSevice: CommonService, swapColumnService: SwapColumnsService, elementRef: ElementRef, ngZone: NgZone, copyService: CopyServiceService);
|
|
142
155
|
cellText: ElementRef;
|
|
143
|
-
|
|
156
|
+
nestedHeader: ElementRef;
|
|
157
|
+
ngAfterViewInit(): void;
|
|
158
|
+
ngOnInit(): void;
|
|
144
159
|
ngOnChanges(changes: SimpleChanges): Promise<void>;
|
|
160
|
+
applyRowsSelectionState(): void;
|
|
161
|
+
clearSelectionState(tableType: string): void;
|
|
145
162
|
applyFilteroptionList(): Promise<void>;
|
|
146
163
|
leftPinnedColumns: any[];
|
|
147
164
|
centerColumns: any[];
|
|
@@ -172,6 +189,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
|
172
189
|
private updateColumnWidthInSourceByField;
|
|
173
190
|
onResizeColumn(event: MouseEvent, col: any): void;
|
|
174
191
|
onResizeGroupBox(event: MouseEvent): void;
|
|
192
|
+
onPasteInFilterRowSearch(event: ClipboardEvent, col: any): void;
|
|
175
193
|
onFilterChange(col: any): void;
|
|
176
194
|
get bodyWrapperHeight(): string;
|
|
177
195
|
hoveredRowId: string | number | null;
|
|
@@ -182,11 +200,11 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
|
182
200
|
closeFilterDropdowns(event: MouseEvent): void;
|
|
183
201
|
private hasParentWithClass;
|
|
184
202
|
isMenueHidden: boolean;
|
|
185
|
-
openThreeDotsMenu(event: MouseEvent, child: any): void;
|
|
203
|
+
openThreeDotsMenu(event: MouseEvent, child: any, keepOriginalPosition?: boolean): void;
|
|
186
204
|
sortAsc(col: any): void;
|
|
187
205
|
sortDesc(col: any): void;
|
|
188
206
|
resetSort(col: any): void;
|
|
189
|
-
updateColumnPinInSourceByField(column: any, pinned: 'left' | 'right' | null): Promise<void>;
|
|
207
|
+
updateColumnPinInSourceByField(column: any, pinned: 'left' | 'right' | null, isNestedTable?: any, columns?: any): Promise<void>;
|
|
190
208
|
autosizeColumn(cols: any | any[]): void;
|
|
191
209
|
getGroupWidth(group: any): number;
|
|
192
210
|
autosizeAllColumns(): void;
|
|
@@ -256,6 +274,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
|
256
274
|
private fakeScrollRaf;
|
|
257
275
|
translateY: number;
|
|
258
276
|
lastScrollTop: number;
|
|
277
|
+
pendingAnimationFrame: number | null;
|
|
259
278
|
onMainScroll(event: Event): void;
|
|
260
279
|
get isScrollbarVisible(): boolean;
|
|
261
280
|
toggleExpand(row: any): void;
|
|
@@ -277,10 +296,8 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
|
277
296
|
draggingColumn: any;
|
|
278
297
|
dragStartIndex: any;
|
|
279
298
|
canEnterToRowsGrouping: (drag: CdkDrag<any>, drop: CdkDropList<any>) => any;
|
|
280
|
-
onDragMoved(event: CdkDragMove<any>): void;
|
|
281
299
|
enterToTopRowGrouping(dropList: CdkDragEnter<any>): void;
|
|
282
300
|
onDropListEnter(dropList: CdkDragEnter<any>, section: 'left' | 'center' | 'right'): void;
|
|
283
|
-
enterToTopGroupingRow(dropList: CdkDragEnter<any>): void;
|
|
284
301
|
exitedFromTheTopRow(dropList: CdkDragExit<any>): void;
|
|
285
302
|
shouldDisableDroplistSorting: boolean;
|
|
286
303
|
isDisableColumnGrouping: boolean;
|
|
@@ -290,11 +307,9 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
|
290
307
|
onSortGroup: (event: CdkDragSortEvent<any>, section: string) => Promise<void>;
|
|
291
308
|
onDropGroup(): void;
|
|
292
309
|
onDropTopGroup(event: CdkDragDrop<any>): Promise<void>;
|
|
310
|
+
onGroupReorder(event: CdkDragDrop<any[]>): Promise<void>;
|
|
293
311
|
ungroupColumn(column: any): Promise<void>;
|
|
294
312
|
shouldTheGroupHeaderShow(group: any): any;
|
|
295
|
-
onChildDragStart(): void;
|
|
296
|
-
dropListIds: string[];
|
|
297
|
-
generateDropListIds(): void;
|
|
298
313
|
onChildDroplistSorted: (event: CdkDragSortEvent<any>, section: string) => Promise<void>;
|
|
299
314
|
onChildDroplistDroped(cdkDragDropevent: CdkDragDrop<any>): void;
|
|
300
315
|
groupData(data: any[], groupFields: string[]): any[];
|
|
@@ -320,11 +335,12 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
|
320
335
|
isFilterOpen: boolean;
|
|
321
336
|
selectedColumnForFilter: any;
|
|
322
337
|
showFilters: boolean;
|
|
338
|
+
openFilterFromDisabledSearchedInput(col: any): void;
|
|
323
339
|
openFilter(col: any): void;
|
|
324
340
|
firstValue: any;
|
|
325
341
|
firstCondition: string;
|
|
326
342
|
secondValue: any;
|
|
327
|
-
secondCondition:
|
|
343
|
+
secondCondition: null;
|
|
328
344
|
condition: string;
|
|
329
345
|
resetTextFilterChanges(): void;
|
|
330
346
|
toggleAllValusSelectionInDropdownFilter(column: any): void;
|
|
@@ -339,7 +355,9 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
|
339
355
|
onOptionToggle(col: any, option: any): void;
|
|
340
356
|
resetSideFilter(col: any): void;
|
|
341
357
|
clearAllFilters(): void;
|
|
342
|
-
applySideFilter(): void;
|
|
358
|
+
applySideFilter(column: any): void;
|
|
359
|
+
removeSideFilter(column: any): void;
|
|
360
|
+
collapseAllExpandedCells(): void;
|
|
343
361
|
trackByField(index: number, col: any): string;
|
|
344
362
|
get activeFilteredColumns(): any[];
|
|
345
363
|
toggleOpenFilter(): void;
|
|
@@ -358,7 +376,13 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
|
358
376
|
goToPage(page: any): void;
|
|
359
377
|
onPageSizeChange(): void;
|
|
360
378
|
actionPreset(data: any, type: any): void;
|
|
361
|
-
|
|
379
|
+
currentIdForUpdatePreset: string;
|
|
380
|
+
curretaTablePresetForUpdate: any;
|
|
381
|
+
temp_state: {
|
|
382
|
+
id: string;
|
|
383
|
+
is_temp: boolean;
|
|
384
|
+
};
|
|
385
|
+
selectFilter(data: any): Promise<void>;
|
|
362
386
|
savePreset(control?: any): void;
|
|
363
387
|
getFilterHeaders(filters: any[], columns: any[]): string;
|
|
364
388
|
toggleRowShading(): void;
|
|
@@ -369,7 +393,6 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
|
369
393
|
expandedCells: Map<string, number>;
|
|
370
394
|
private zCounter;
|
|
371
395
|
toggleExpandOfLongCellText(row: any, col: any, columns: any[], expandWholeRow?: boolean): void;
|
|
372
|
-
collapseAllExpandedCells(): void;
|
|
373
396
|
isExpanded(row: any, col: any): boolean;
|
|
374
397
|
getZIndex(row: any, col: any): number;
|
|
375
398
|
isOverflowing(element: HTMLElement | null): boolean;
|
|
@@ -392,6 +415,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
|
392
415
|
downloadCsv(): void;
|
|
393
416
|
onFontChange(): void;
|
|
394
417
|
onGlobalSearch(): void;
|
|
418
|
+
onSearchInput(event: Event): void;
|
|
395
419
|
checkFilterChangesEffect(): any;
|
|
396
420
|
selectedCells: any[];
|
|
397
421
|
selectedKeys: Set<string>;
|
|
@@ -458,15 +482,33 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit {
|
|
|
458
482
|
toggleMenu(i: number, event?: MouseEvent): void;
|
|
459
483
|
nestedTable: ElementRef<HTMLDivElement>;
|
|
460
484
|
get hasVerticalScroll(): boolean;
|
|
485
|
+
get hasHorizontalScroll(): boolean;
|
|
461
486
|
getTotalAmount(column: any): string | undefined;
|
|
462
487
|
dropColumn(event: CdkDragDrop<any[]>, row: any): void;
|
|
463
488
|
currentSubSortColumn: string | null;
|
|
464
489
|
currentSortDirection: 'asc' | 'desc';
|
|
465
|
-
sortNestedCol(col: any,
|
|
490
|
+
sortNestedCol(col: any, row: any): void;
|
|
466
491
|
getColumnWidthPx(row: any, col: any): string;
|
|
467
492
|
fullscreenImage: string | null;
|
|
468
493
|
openFullScreenImage(src: string): void;
|
|
469
|
-
|
|
494
|
+
pinUnpinColum(col: any, value: 'left' | 'right' | null, columns: any[]): void;
|
|
495
|
+
getLeftPinnedCount(columns: any[]): number;
|
|
496
|
+
getRightPinnedCount(columns: any[]): number;
|
|
497
|
+
getStickyLeft(columns: any[], index: number): string;
|
|
498
|
+
previewNestedCols: any[];
|
|
499
|
+
onNestedColSort(event: CdkDragSortEvent<any[]>, columns: any[]): void;
|
|
500
|
+
saveSelection(selectedIds: string[], tableType: string): void;
|
|
501
|
+
restoreSelection(tableType: string): Set<string>;
|
|
502
|
+
isOutsideContainer: boolean;
|
|
503
|
+
private containerRect;
|
|
504
|
+
onDragStarted(col: any): void;
|
|
505
|
+
onDragMoved(event: CdkDragMove): void;
|
|
506
|
+
onDragEnded(): void;
|
|
507
|
+
getStartIndex(): number;
|
|
508
|
+
hasAnyDefaultView(): boolean;
|
|
509
|
+
get isTablePresetNotChanged(): any;
|
|
510
|
+
onActionButtonClick(button: string): void;
|
|
511
|
+
setActiveTab(tab: string): void;
|
|
470
512
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataGridComponent, never>;
|
|
471
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DataGridComponent, "data-grid", never, { "paginationConfig": { "alias": "paginationConfig"; "required": false; }; "dataSet": { "alias": "dataSet"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "headerRowHeight": { "alias": "headerRowHeight"; "required": false; }; "showVerticalBorder": { "alias": "showVerticalBorder"; "required": false; }; "evenRowsBackgroundColor": { "alias": "evenRowsBackgroundColor"; "required": false; }; "oddRowsBackgroundColor": { "alias": "oddRowsBackgroundColor"; "required": false; }; "headerBackgroundColor": { "alias": "headerBackgroundColor"; "required": false; }; "checkboxesBackgroundColor": { "alias": "checkboxesBackgroundColor"; "required": false; }; "showColumnsGrouping": { "alias": "showColumnsGrouping"; "required": false; }; "rowHoverColor": { "alias": "rowHoverColor"; "required": false; }; "leftPinnedBackgroundColor": { "alias": "leftPinnedBackgroundColor"; "required": false; }; "bodyBackgroundColor": { "alias": "bodyBackgroundColor"; "required": false; }; "rightPinnedBackgroundColor": { "alias": "rightPinnedBackgroundColor"; "required": false; }; "sidemenuBackgroundColor": { "alias": "sidemenuBackgroundColor"; "required": false; }; "bodyTextColor": { "alias": "bodyTextColor"; "required": false; }; "headerTextColor": { "alias": "headerTextColor"; "required": false; }; "headerTextFontsSize": { "alias": "headerTextFontsSize"; "required": false; }; "bodyTextFontsSize": { "alias": "bodyTextFontsSize"; "required": false; }; "headerFontWeight": { "alias": "headerFontWeight"; "required": false; }; "bodyFontWeight": { "alias": "bodyFontWeight"; "required": false; }; "checkedRowBackgroundColor": { "alias": "checkedRowBackgroundColor"; "required": false; }; "dropdownsBackgroundColor": { "alias": "dropdownsBackgroundColor"; "required": false; }; "footerRowHeight": { "alias": "footerRowHeight"; "required": false; }; "topGroupedBadgesBackgroundColor": { "alias": "topGroupedBadgesBackgroundColor"; "required": false; }; "showRowsGrouping": { "alias": "showRowsGrouping"; "required": false; }; "showFilterRow": { "alias": "showFilterRow"; "required": false; }; "fontFaimly": { "alias": "fontFaimly"; "required": false; }; "showSideMenu": { "alias": "showSideMenu"; "required": false; }; "footerPadding": { "alias": "footerPadding"; "required": false; }; "topFilterRowHeight": { "alias": "topFilterRowHeight"; "required": false; }; "rowShadingEnabled": { "alias": "rowShadingEnabled"; "required": false; }; "showSerialNumber": { "alias": "showSerialNumber"; "required": false; }; "singleSpaAssetsPath": { "alias": "singleSpaAssetsPath"; "required": false; }; "filtersConfig": { "alias": "filtersConfig"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "verticalScrollbarWidth": { "alias": "verticalScrollbarWidth"; "required": false; }; "horizintalScrollbarWidth": { "alias": "horizintalScrollbarWidth"; "required": false; }; "showCellDetailsBox": { "alias": "showCellDetailsBox"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "tableSearch": { "alias": "tableSearch"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "config": { "alias": "config"; "required": false; }; "showTaskbar": { "alias": "showTaskbar"; "required": false; }; "tableName": { "alias": "tableName"; "required": false; }; "listingType": { "alias": "listingType"; "required": false; }; "checkboxState": { "alias": "checkboxState"; "required": false; }; "taskbarActions": { "alias": "taskbarActions"; "required": false; }; "sortingConfig": { "alias": "sortingConfig"; "required": false; }; "tableFilterViewId": { "alias": "tableFilterViewId"; "required": false; }; "selectedTableLayout": { "alias": "selectedTableLayout"; "required": false; }; "closeDropdown": { "alias": "closeDropdown"; "required": false; }; "globalSearchText": { "alias": "globalSearchText"; "required": false; }; "nestedTablerowFontsize": { "alias": "nestedTablerowFontsize"; "required": false; }; "nestedTableHeaderRowHeight": { "alias": "nestedTableHeaderRowHeight"; "required": false; }; "nestedTablerowHeight": { "alias": "nestedTablerowHeight"; "required": false; }; "gridType": { "alias": "gridType"; "required": false; }; "currencySymbol": { "alias": "currencySymbol"; "required": false; }; "leftPinnedBoxshadow": { "alias": "leftPinnedBoxshadow"; "required": false; }; "rightPinnedBoxshadow": { "alias": "rightPinnedBoxshadow"; "required": false; }; "selectedRowsBackgroundColor": { "alias": "selectedRowsBackgroundColor"; "required": false; }; "nestedTableHeaderBAckgroundColor": { "alias": "nestedTableHeaderBAckgroundColor"; "required": false; }; "tableView": { "alias": "tableView"; "required": false; }; "keepMultipleExpandedDetails": { "alias": "keepMultipleExpandedDetails"; "required": false; }; "showTotalAmountRow": { "alias": "showTotalAmountRow"; "required": false; }; "tableType": { "alias": "tableType"; "required": false; }; "widgets": { "alias": "widgets"; "required": false; }; "columnThreedotsMunuConfig": { "alias": "columnThreedotsMunuConfig"; "required": false; }; }, { "changeLayout": "changeLayout"; "filterOptions": "filterOptions"; "genericEvent": "genericEvent"; "tablePresetConfig": "tablePresetConfig"; "sortingOrderOptions": "sortingOrderOptions"; "createUpdateConfigListing": "createUpdateConfigListing"; }, never, never, false, never>;
|
|
513
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataGridComponent, "data-grid", never, { "paginationConfig": { "alias": "paginationConfig"; "required": false; }; "dataSet": { "alias": "dataSet"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "headerRowHeight": { "alias": "headerRowHeight"; "required": false; }; "showVerticalBorder": { "alias": "showVerticalBorder"; "required": false; }; "evenRowsBackgroundColor": { "alias": "evenRowsBackgroundColor"; "required": false; }; "oddRowsBackgroundColor": { "alias": "oddRowsBackgroundColor"; "required": false; }; "headerBackgroundColor": { "alias": "headerBackgroundColor"; "required": false; }; "checkboxesBackgroundColor": { "alias": "checkboxesBackgroundColor"; "required": false; }; "showColumnsGrouping": { "alias": "showColumnsGrouping"; "required": false; }; "rowHoverColor": { "alias": "rowHoverColor"; "required": false; }; "leftPinnedBackgroundColor": { "alias": "leftPinnedBackgroundColor"; "required": false; }; "bodyBackgroundColor": { "alias": "bodyBackgroundColor"; "required": false; }; "rightPinnedBackgroundColor": { "alias": "rightPinnedBackgroundColor"; "required": false; }; "sidemenuBackgroundColor": { "alias": "sidemenuBackgroundColor"; "required": false; }; "bodyTextColor": { "alias": "bodyTextColor"; "required": false; }; "headerTextColor": { "alias": "headerTextColor"; "required": false; }; "headerTextFontsSize": { "alias": "headerTextFontsSize"; "required": false; }; "bodyTextFontsSize": { "alias": "bodyTextFontsSize"; "required": false; }; "headerFontWeight": { "alias": "headerFontWeight"; "required": false; }; "bodyFontWeight": { "alias": "bodyFontWeight"; "required": false; }; "checkedRowBackgroundColor": { "alias": "checkedRowBackgroundColor"; "required": false; }; "dropdownsBackgroundColor": { "alias": "dropdownsBackgroundColor"; "required": false; }; "footerRowHeight": { "alias": "footerRowHeight"; "required": false; }; "topGroupedBadgesBackgroundColor": { "alias": "topGroupedBadgesBackgroundColor"; "required": false; }; "showRowsGrouping": { "alias": "showRowsGrouping"; "required": false; }; "showFilterRow": { "alias": "showFilterRow"; "required": false; }; "fontFaimly": { "alias": "fontFaimly"; "required": false; }; "showSideMenu": { "alias": "showSideMenu"; "required": false; }; "footerPadding": { "alias": "footerPadding"; "required": false; }; "topFilterRowHeight": { "alias": "topFilterRowHeight"; "required": false; }; "rowShadingEnabled": { "alias": "rowShadingEnabled"; "required": false; }; "showSerialNumber": { "alias": "showSerialNumber"; "required": false; }; "singleSpaAssetsPath": { "alias": "singleSpaAssetsPath"; "required": false; }; "filtersConfig": { "alias": "filtersConfig"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "verticalScrollbarWidth": { "alias": "verticalScrollbarWidth"; "required": false; }; "horizintalScrollbarWidth": { "alias": "horizintalScrollbarWidth"; "required": false; }; "showCellDetailsBox": { "alias": "showCellDetailsBox"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "tableSearch": { "alias": "tableSearch"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "config": { "alias": "config"; "required": false; }; "showTaskbar": { "alias": "showTaskbar"; "required": false; }; "tableName": { "alias": "tableName"; "required": false; }; "listingType": { "alias": "listingType"; "required": false; }; "checkboxState": { "alias": "checkboxState"; "required": false; }; "taskbarActions": { "alias": "taskbarActions"; "required": false; }; "sortingConfig": { "alias": "sortingConfig"; "required": false; }; "tableFilterViewId": { "alias": "tableFilterViewId"; "required": false; }; "selectedTableLayout": { "alias": "selectedTableLayout"; "required": false; }; "closeDropdown": { "alias": "closeDropdown"; "required": false; }; "globalSearchText": { "alias": "globalSearchText"; "required": false; }; "nestedTablerowFontsize": { "alias": "nestedTablerowFontsize"; "required": false; }; "nestedTableHeaderRowHeight": { "alias": "nestedTableHeaderRowHeight"; "required": false; }; "nestedTablerowHeight": { "alias": "nestedTablerowHeight"; "required": false; }; "gridType": { "alias": "gridType"; "required": false; }; "currencySymbol": { "alias": "currencySymbol"; "required": false; }; "leftPinnedBoxshadow": { "alias": "leftPinnedBoxshadow"; "required": false; }; "rightPinnedBoxshadow": { "alias": "rightPinnedBoxshadow"; "required": false; }; "selectedRowsBackgroundColor": { "alias": "selectedRowsBackgroundColor"; "required": false; }; "nestedTableHeaderBAckgroundColor": { "alias": "nestedTableHeaderBAckgroundColor"; "required": false; }; "tableView": { "alias": "tableView"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "keepMultipleExpandedDetails": { "alias": "keepMultipleExpandedDetails"; "required": false; }; "showTotalAmountRow": { "alias": "showTotalAmountRow"; "required": false; }; "enableGlobalSearch": { "alias": "enableGlobalSearch"; "required": false; }; "tableType": { "alias": "tableType"; "required": false; }; "widgets": { "alias": "widgets"; "required": false; }; "enableCut": { "alias": "enableCut"; "required": false; }; "tabs": { "alias": "tabs"; "required": false; }; "resetAllFilters": { "alias": "resetAllFilters"; "required": false; }; "columnThreedotsMunuConfig": { "alias": "columnThreedotsMunuConfig"; "required": false; }; }, { "changeLayout": "changeLayout"; "filterOptions": "filterOptions"; "genericEvent": "genericEvent"; "tablePresetConfig": "tablePresetConfig"; "sortingOrderOptions": "sortingOrderOptions"; "createUpdateConfigListing": "createUpdateConfigListing"; }, never, never, false, never>;
|
|
472
514
|
}
|
|
@@ -9,6 +9,6 @@ import * as i7 from "ng-inline-svg";
|
|
|
9
9
|
import * as i8 from "@angular/cdk/scrolling";
|
|
10
10
|
export declare class DataGridModule {
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataGridModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DataGridModule, [typeof i1.DataGridComponent, typeof i2.FilterPipe, typeof i3.DraggableHeaderDirective], [typeof i4.CommonModule, typeof i5.FormsModule, typeof i6.DragDropModule, typeof i7.InlineSVGModule, typeof i8.ScrollingModule], [typeof i1.DataGridComponent, typeof i3.DraggableHeaderDirective
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DataGridModule, [typeof i1.DataGridComponent, typeof i2.FilterPipe, typeof i3.DraggableHeaderDirective], [typeof i4.CommonModule, typeof i5.FormsModule, typeof i6.DragDropModule, typeof i7.InlineSVGModule, typeof i8.ScrollingModule], [typeof i1.DataGridComponent, typeof i3.DraggableHeaderDirective]>;
|
|
13
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<DataGridModule>;
|
|
14
14
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ms-data-grid",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.33",
|
|
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",
|