ms-data-grid 0.0.33 → 0.0.35
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 +924 -1561
- package/esm2022/lib/data-grid.module.mjs +7 -8
- package/esm2022/lib/data-grid.service.mjs +5 -5
- package/esm2022/lib/directives/draggable-header.directive.mjs +58 -55
- package/esm2022/lib/pipes/filter.pipe.mjs +13 -7
- package/esm2022/lib/services/common.service.mjs +11 -12
- package/esm2022/lib/services/copy-service.service.mjs +8 -9
- package/esm2022/lib/services/split-columns.service.mjs +4 -4
- package/esm2022/lib/services/swap-columns.service.mjs +5 -5
- package/fesm2022/ms-data-grid.mjs +1025 -1655
- package/fesm2022/ms-data-grid.mjs.map +1 -1
- package/lib/data-grid/data-grid.component.d.ts +23 -63
- package/lib/data-grid.module.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { 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 {
|
|
11
11
|
private columnService;
|
|
12
12
|
private cdr;
|
|
13
13
|
commonSevice: CommonService;
|
|
@@ -89,28 +89,17 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
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
|
-
}[];
|
|
97
92
|
keepMultipleExpandedDetails: boolean;
|
|
98
93
|
showTotalAmountRow: boolean;
|
|
99
|
-
enableGlobalSearch: boolean;
|
|
100
94
|
tableType: string;
|
|
101
95
|
widgets: any[];
|
|
102
|
-
enableCut: boolean;
|
|
103
|
-
tabs: string[];
|
|
104
|
-
resetAllFilters: {
|
|
105
|
-
resetAll: boolean;
|
|
106
|
-
};
|
|
107
96
|
columnThreedotsMunuConfig: {
|
|
108
97
|
showPinleft: boolean;
|
|
109
98
|
showPinright: boolean;
|
|
110
99
|
showAscending: boolean;
|
|
111
100
|
showDescending: boolean;
|
|
112
101
|
showFilter: boolean;
|
|
113
|
-
showRowsGrouping: boolean
|
|
102
|
+
showRowsGrouping: boolean;
|
|
114
103
|
showAutosizeAllColumns: boolean;
|
|
115
104
|
showAutosizeThisColumn: boolean;
|
|
116
105
|
showChoseColumns: boolean;
|
|
@@ -122,7 +111,6 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
122
111
|
tablePresetConfig: EventEmitter<any>;
|
|
123
112
|
sortingOrderOptions: EventEmitter<any>;
|
|
124
113
|
createUpdateConfigListing: EventEmitter<any>;
|
|
125
|
-
activeTab: string | null;
|
|
126
114
|
groupedColumns: any[];
|
|
127
115
|
activeCol: any;
|
|
128
116
|
activeFilterCell: any;
|
|
@@ -138,14 +126,13 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
138
126
|
filterColumnsList: any[];
|
|
139
127
|
groupBoxPadding: number;
|
|
140
128
|
presetName: string;
|
|
141
|
-
presetFilter:
|
|
129
|
+
presetFilter: any;
|
|
142
130
|
searchTextPresetTable: string;
|
|
143
131
|
addFilterColumnInput: string;
|
|
144
132
|
searchInDropdown: string;
|
|
145
133
|
addFilterDropdownSearch: string;
|
|
146
134
|
topShowHideColumns: string;
|
|
147
135
|
choseColumnsSearch: string;
|
|
148
|
-
sideNestedFilterSearch: string;
|
|
149
136
|
editinDropdownSearch: string;
|
|
150
137
|
isThreeDotsFilterOpen: boolean;
|
|
151
138
|
confirmDelete: boolean;
|
|
@@ -153,12 +140,8 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
153
140
|
fontSizes: string[];
|
|
154
141
|
constructor(columnService: SplitColumnsService, cdr: ChangeDetectorRef, commonSevice: CommonService, swapColumnService: SwapColumnsService, elementRef: ElementRef, ngZone: NgZone, copyService: CopyServiceService);
|
|
155
142
|
cellText: ElementRef;
|
|
156
|
-
|
|
157
|
-
ngAfterViewInit(): void;
|
|
158
|
-
ngOnInit(): void;
|
|
143
|
+
ngAfterViewInit(): Promise<void>;
|
|
159
144
|
ngOnChanges(changes: SimpleChanges): Promise<void>;
|
|
160
|
-
applyRowsSelectionState(): void;
|
|
161
|
-
clearSelectionState(tableType: string): void;
|
|
162
145
|
applyFilteroptionList(): Promise<void>;
|
|
163
146
|
leftPinnedColumns: any[];
|
|
164
147
|
centerColumns: any[];
|
|
@@ -189,7 +172,6 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
189
172
|
private updateColumnWidthInSourceByField;
|
|
190
173
|
onResizeColumn(event: MouseEvent, col: any): void;
|
|
191
174
|
onResizeGroupBox(event: MouseEvent): void;
|
|
192
|
-
onPasteInFilterRowSearch(event: ClipboardEvent, col: any): void;
|
|
193
175
|
onFilterChange(col: any): void;
|
|
194
176
|
get bodyWrapperHeight(): string;
|
|
195
177
|
hoveredRowId: string | number | null;
|
|
@@ -200,11 +182,11 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
200
182
|
closeFilterDropdowns(event: MouseEvent): void;
|
|
201
183
|
private hasParentWithClass;
|
|
202
184
|
isMenueHidden: boolean;
|
|
203
|
-
openThreeDotsMenu(event: MouseEvent, child: any
|
|
185
|
+
openThreeDotsMenu(event: MouseEvent, child: any): void;
|
|
204
186
|
sortAsc(col: any): void;
|
|
205
187
|
sortDesc(col: any): void;
|
|
206
188
|
resetSort(col: any): void;
|
|
207
|
-
updateColumnPinInSourceByField(column: any, pinned: 'left' | 'right' | null
|
|
189
|
+
updateColumnPinInSourceByField(column: any, pinned: 'left' | 'right' | null): Promise<void>;
|
|
208
190
|
autosizeColumn(cols: any | any[]): void;
|
|
209
191
|
getGroupWidth(group: any): number;
|
|
210
192
|
autosizeAllColumns(): void;
|
|
@@ -274,7 +256,6 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
274
256
|
private fakeScrollRaf;
|
|
275
257
|
translateY: number;
|
|
276
258
|
lastScrollTop: number;
|
|
277
|
-
pendingAnimationFrame: number | null;
|
|
278
259
|
onMainScroll(event: Event): void;
|
|
279
260
|
get isScrollbarVisible(): boolean;
|
|
280
261
|
toggleExpand(row: any): void;
|
|
@@ -296,8 +277,10 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
296
277
|
draggingColumn: any;
|
|
297
278
|
dragStartIndex: any;
|
|
298
279
|
canEnterToRowsGrouping: (drag: CdkDrag<any>, drop: CdkDropList<any>) => any;
|
|
280
|
+
onDragMoved(event: CdkDragMove<any>): void;
|
|
299
281
|
enterToTopRowGrouping(dropList: CdkDragEnter<any>): void;
|
|
300
282
|
onDropListEnter(dropList: CdkDragEnter<any>, section: 'left' | 'center' | 'right'): void;
|
|
283
|
+
enterToTopGroupingRow(dropList: CdkDragEnter<any>): void;
|
|
301
284
|
exitedFromTheTopRow(dropList: CdkDragExit<any>): void;
|
|
302
285
|
shouldDisableDroplistSorting: boolean;
|
|
303
286
|
isDisableColumnGrouping: boolean;
|
|
@@ -307,9 +290,11 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
307
290
|
onSortGroup: (event: CdkDragSortEvent<any>, section: string) => Promise<void>;
|
|
308
291
|
onDropGroup(): void;
|
|
309
292
|
onDropTopGroup(event: CdkDragDrop<any>): Promise<void>;
|
|
310
|
-
onGroupReorder(event: CdkDragDrop<any[]>): Promise<void>;
|
|
311
293
|
ungroupColumn(column: any): Promise<void>;
|
|
312
294
|
shouldTheGroupHeaderShow(group: any): any;
|
|
295
|
+
onChildDragStart(): void;
|
|
296
|
+
dropListIds: string[];
|
|
297
|
+
generateDropListIds(): void;
|
|
313
298
|
onChildDroplistSorted: (event: CdkDragSortEvent<any>, section: string) => Promise<void>;
|
|
314
299
|
onChildDroplistDroped(cdkDragDropevent: CdkDragDrop<any>): void;
|
|
315
300
|
groupData(data: any[], groupFields: string[]): any[];
|
|
@@ -335,12 +320,11 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
335
320
|
isFilterOpen: boolean;
|
|
336
321
|
selectedColumnForFilter: any;
|
|
337
322
|
showFilters: boolean;
|
|
338
|
-
openFilterFromDisabledSearchedInput(col: any): void;
|
|
339
323
|
openFilter(col: any): void;
|
|
340
324
|
firstValue: any;
|
|
341
325
|
firstCondition: string;
|
|
342
326
|
secondValue: any;
|
|
343
|
-
secondCondition:
|
|
327
|
+
secondCondition: string;
|
|
344
328
|
condition: string;
|
|
345
329
|
resetTextFilterChanges(): void;
|
|
346
330
|
toggleAllValusSelectionInDropdownFilter(column: any): void;
|
|
@@ -355,9 +339,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
355
339
|
onOptionToggle(col: any, option: any): void;
|
|
356
340
|
resetSideFilter(col: any): void;
|
|
357
341
|
clearAllFilters(): void;
|
|
358
|
-
applySideFilter(
|
|
359
|
-
removeSideFilter(column: any): void;
|
|
360
|
-
collapseAllExpandedCells(): void;
|
|
342
|
+
applySideFilter(): void;
|
|
361
343
|
trackByField(index: number, col: any): string;
|
|
362
344
|
get activeFilteredColumns(): any[];
|
|
363
345
|
toggleOpenFilter(): void;
|
|
@@ -365,7 +347,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
365
347
|
activeCell: string | null;
|
|
366
348
|
setActiveCell(row: any, column: any): void;
|
|
367
349
|
isActiveCell(row: any, col: any): boolean;
|
|
368
|
-
enableEdit(row: any, column: any): void;
|
|
350
|
+
enableEdit(row: any, column: any, clickedFromDetailsBox?: boolean, cellContainer?: HTMLElement): void;
|
|
369
351
|
disableEdit(row: any, column: any, control?: any): void;
|
|
370
352
|
emailRegex: RegExp;
|
|
371
353
|
validateEmail(value: string): boolean;
|
|
@@ -376,13 +358,7 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
376
358
|
goToPage(page: any): void;
|
|
377
359
|
onPageSizeChange(): void;
|
|
378
360
|
actionPreset(data: any, type: any): void;
|
|
379
|
-
|
|
380
|
-
curretaTablePresetForUpdate: any;
|
|
381
|
-
temp_state: {
|
|
382
|
-
id: string;
|
|
383
|
-
is_temp: boolean;
|
|
384
|
-
};
|
|
385
|
-
selectFilter(data: any): Promise<void>;
|
|
361
|
+
selectFilter(data: any): void;
|
|
386
362
|
savePreset(control?: any): void;
|
|
387
363
|
getFilterHeaders(filters: any[], columns: any[]): string;
|
|
388
364
|
toggleRowShading(): void;
|
|
@@ -393,6 +369,9 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
393
369
|
expandedCells: Map<string, number>;
|
|
394
370
|
private zCounter;
|
|
395
371
|
toggleExpandOfLongCellText(row: any, col: any, columns: any[], expandWholeRow?: boolean): void;
|
|
372
|
+
showDetailsBox: boolean;
|
|
373
|
+
isOpenToTop(row: any, col: any): boolean;
|
|
374
|
+
collapseAllExpandedCells(): void;
|
|
396
375
|
isExpanded(row: any, col: any): boolean;
|
|
397
376
|
getZIndex(row: any, col: any): number;
|
|
398
377
|
isOverflowing(element: HTMLElement | null): boolean;
|
|
@@ -415,7 +394,6 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
415
394
|
downloadCsv(): void;
|
|
416
395
|
onFontChange(): void;
|
|
417
396
|
onGlobalSearch(): void;
|
|
418
|
-
onSearchInput(event: Event): void;
|
|
419
397
|
checkFilterChangesEffect(): any;
|
|
420
398
|
selectedCells: any[];
|
|
421
399
|
selectedKeys: Set<string>;
|
|
@@ -482,33 +460,15 @@ export declare class DataGridComponent implements OnChanges, AfterViewInit, OnIn
|
|
|
482
460
|
toggleMenu(i: number, event?: MouseEvent): void;
|
|
483
461
|
nestedTable: ElementRef<HTMLDivElement>;
|
|
484
462
|
get hasVerticalScroll(): boolean;
|
|
485
|
-
|
|
486
|
-
getTotalAmount(column: any): string | undefined;
|
|
463
|
+
getTotalAmount(column: any): string;
|
|
487
464
|
dropColumn(event: CdkDragDrop<any[]>, row: any): void;
|
|
488
465
|
currentSubSortColumn: string | null;
|
|
489
466
|
currentSortDirection: 'asc' | 'desc';
|
|
490
|
-
sortNestedCol(col: any,
|
|
467
|
+
sortNestedCol(col: any, dataSet?: any[]): void;
|
|
491
468
|
getColumnWidthPx(row: any, col: any): string;
|
|
492
469
|
fullscreenImage: string | null;
|
|
493
470
|
openFullScreenImage(src: string): void;
|
|
494
|
-
|
|
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;
|
|
471
|
+
getVisibleColumnCount(columns: any[]): number;
|
|
512
472
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataGridComponent, 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; }; "
|
|
473
|
+
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>;
|
|
514
474
|
}
|
|
@@ -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, typeof i7.InlineSVGModule]>;
|
|
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.35",
|
|
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",
|