ms-time-sheet 0.0.1
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 +24 -0
- package/esm2022/lib/ms-time-sheet.component.mjs +4956 -0
- package/esm2022/lib/ms-time-sheet.service.mjs +14 -0
- package/esm2022/lib/pipes/filter.pipe.mjs +23 -0
- package/esm2022/lib/pipes/pinned-columns.pipe.mjs +16 -0
- package/esm2022/lib/services/common.service.mjs +207 -0
- package/esm2022/lib/services/copy-service.service.mjs +209 -0
- package/esm2022/lib/services/split-columns.service.mjs +143 -0
- package/esm2022/lib/statuses.mjs +44 -0
- package/esm2022/ms-time-sheet.mjs +5 -0
- package/esm2022/public-api.mjs +6 -0
- package/fesm2022/ms-time-sheet.mjs +5603 -0
- package/fesm2022/ms-time-sheet.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/ms-time-sheet.component.d.ts +626 -0
- package/lib/ms-time-sheet.service.d.ts +6 -0
- package/lib/pipes/filter.pipe.d.ts +7 -0
- package/lib/pipes/pinned-columns.pipe.d.ts +7 -0
- package/lib/services/common.service.d.ts +17 -0
- package/lib/services/copy-service.service.d.ts +13 -0
- package/lib/services/split-columns.service.d.ts +9 -0
- package/lib/statuses.d.ts +3 -0
- package/package.json +25 -0
- package/public-api.d.ts +2 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,626 @@
|
|
|
1
|
+
import { OnChanges, SimpleChanges, ElementRef, AfterViewInit, ChangeDetectorRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
|
+
import { SplitColumnsService } from './services/split-columns.service';
|
|
3
|
+
import { CommonService } from './services/common.service';
|
|
4
|
+
import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
|
5
|
+
import { BsDaterangepickerDirective } from 'ngx-bootstrap/datepicker';
|
|
6
|
+
import { CdkDrag, CdkDragDrop, CdkDragEnd, CdkDragEnter, CdkDragExit, CdkDragMove, CdkDragSortEvent, CdkDragStart } from '@angular/cdk/drag-drop';
|
|
7
|
+
import { CdkDropList } from '@angular/cdk/drag-drop';
|
|
8
|
+
import { CopyServiceService } from './services/copy-service.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
interface CellPosition {
|
|
11
|
+
rowIndex: number;
|
|
12
|
+
colIndex: number;
|
|
13
|
+
subColIndex: number;
|
|
14
|
+
field: string;
|
|
15
|
+
key: string;
|
|
16
|
+
}
|
|
17
|
+
export declare class TimeSheetComponent implements OnChanges, AfterViewInit {
|
|
18
|
+
private columnService;
|
|
19
|
+
private cdr;
|
|
20
|
+
commonSevice: CommonService;
|
|
21
|
+
private elementRef;
|
|
22
|
+
private ngZone;
|
|
23
|
+
private copyService;
|
|
24
|
+
expandedRows: Set<string>;
|
|
25
|
+
paginationConfig: any;
|
|
26
|
+
dataSet: any[];
|
|
27
|
+
columns: any[];
|
|
28
|
+
rowHeight: number;
|
|
29
|
+
headerRowHeight: number;
|
|
30
|
+
showVerticalBorder: boolean;
|
|
31
|
+
evenRowsBackgroundColor: string | undefined;
|
|
32
|
+
oddRowsBackgroundColor: string | undefined;
|
|
33
|
+
headerBackgroundColor: string;
|
|
34
|
+
checkboxesBackgroundColor: string;
|
|
35
|
+
showColumnsGrouping: boolean;
|
|
36
|
+
rowHoverColor: string | undefined;
|
|
37
|
+
leftPinnedBackgroundColor: string | undefined;
|
|
38
|
+
bodyBackgroundColor: string | undefined;
|
|
39
|
+
rightPinnedBackgroundColor: string | undefined;
|
|
40
|
+
sidemenuBackgroundColor: string | undefined;
|
|
41
|
+
bodyTextColor: string | undefined;
|
|
42
|
+
headerTextColor: string | undefined;
|
|
43
|
+
headerTextFontsSize: number | undefined;
|
|
44
|
+
bodyTextFontsSize: number | undefined;
|
|
45
|
+
headerFontWeight: number | undefined;
|
|
46
|
+
bodyFontWeight: number | undefined;
|
|
47
|
+
checkedRowBackgroundColor: string | undefined;
|
|
48
|
+
dropdownsBackgroundColor: string | undefined;
|
|
49
|
+
footerRowHeight: number;
|
|
50
|
+
topGroupedBadgesBackgroundColor: string | undefined;
|
|
51
|
+
showRowsGrouping: boolean | undefined;
|
|
52
|
+
showFilterRow: boolean | undefined;
|
|
53
|
+
fontFaimly: string | undefined;
|
|
54
|
+
showSideMenu: boolean;
|
|
55
|
+
footerPadding: number;
|
|
56
|
+
topFilterRowHeight: number;
|
|
57
|
+
rowShadingEnabled: boolean;
|
|
58
|
+
showSerialNumber: boolean;
|
|
59
|
+
singleSpaAssetsPath: string;
|
|
60
|
+
filtersConfig: any[];
|
|
61
|
+
loading: boolean;
|
|
62
|
+
verticalScrollbarWidth: 'auto' | 'thin';
|
|
63
|
+
horizintalScrollbarWidth: 'auto' | 'thin';
|
|
64
|
+
showCellDetailsBox: boolean;
|
|
65
|
+
dateFormat: string;
|
|
66
|
+
tableSearch: string;
|
|
67
|
+
actions: any[];
|
|
68
|
+
config: any;
|
|
69
|
+
showTaskbar: boolean;
|
|
70
|
+
tableName: boolean;
|
|
71
|
+
listingType: string | boolean;
|
|
72
|
+
checkboxState: {
|
|
73
|
+
reset: boolean;
|
|
74
|
+
};
|
|
75
|
+
taskbarActions: any[];
|
|
76
|
+
sortingConfig: {
|
|
77
|
+
field: string;
|
|
78
|
+
order_by: string;
|
|
79
|
+
} | null;
|
|
80
|
+
tableFilterViewId: any;
|
|
81
|
+
selectedTableLayout: any;
|
|
82
|
+
closeDropdown: {
|
|
83
|
+
preset: {
|
|
84
|
+
closed: boolean;
|
|
85
|
+
loading: boolean;
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
globalSearchText: string;
|
|
89
|
+
nestedTablerowFontsize: number;
|
|
90
|
+
nestedTableHeaderRowHeight: number;
|
|
91
|
+
nestedTablerowHeight: number;
|
|
92
|
+
gridType: string;
|
|
93
|
+
isSingleDay: boolean;
|
|
94
|
+
leftPinnedBoxshadow: string;
|
|
95
|
+
rightPinnedBoxshadow: string;
|
|
96
|
+
selectedRowsBackgroundColor: string;
|
|
97
|
+
nestedTableHeaderBAckgroundColor: string;
|
|
98
|
+
tableView: any[];
|
|
99
|
+
columnThreedotsMunuConfig: {
|
|
100
|
+
showPinleft: boolean;
|
|
101
|
+
showPinright: boolean;
|
|
102
|
+
showAscending: boolean;
|
|
103
|
+
showDescending: boolean;
|
|
104
|
+
showFilter: boolean;
|
|
105
|
+
showRowsGrouping: boolean | undefined;
|
|
106
|
+
showAutosizeAllColumns: boolean;
|
|
107
|
+
showAutosizeThisColumn: boolean;
|
|
108
|
+
showChoseColumns: boolean;
|
|
109
|
+
showResetColumns: boolean;
|
|
110
|
+
};
|
|
111
|
+
enableInfiniteScroll: boolean;
|
|
112
|
+
hasMoreData: boolean;
|
|
113
|
+
loadingMore: boolean;
|
|
114
|
+
loadMoreData: EventEmitter<void>;
|
|
115
|
+
changeLayout: EventEmitter<any>;
|
|
116
|
+
filterOptions: EventEmitter<any>;
|
|
117
|
+
genericEvent: EventEmitter<any>;
|
|
118
|
+
tablePresetConfig: EventEmitter<any>;
|
|
119
|
+
sortingOrderOptions: EventEmitter<any>;
|
|
120
|
+
createUpdateConfigListing: EventEmitter<any>;
|
|
121
|
+
bsRangeValue: Date[];
|
|
122
|
+
showPicker: boolean;
|
|
123
|
+
bsConfig: any;
|
|
124
|
+
groupedColumns: any[];
|
|
125
|
+
activeCol: any;
|
|
126
|
+
activeFilterCell: any;
|
|
127
|
+
showActionsDropDown: boolean;
|
|
128
|
+
sideMenuVisible: boolean;
|
|
129
|
+
pivotMode: boolean;
|
|
130
|
+
columnSearch: string;
|
|
131
|
+
expandAllAccordians: boolean;
|
|
132
|
+
currentOpenedSideMenue: 'cols' | 'filtrs' | null;
|
|
133
|
+
originalColumns: any[];
|
|
134
|
+
originalDataSet: any[];
|
|
135
|
+
activeTopButton: string | null;
|
|
136
|
+
filterColumnsList: any[];
|
|
137
|
+
groupBoxPadding: number;
|
|
138
|
+
presetName: string;
|
|
139
|
+
presetFilter: any;
|
|
140
|
+
searchTextPresetTable: string;
|
|
141
|
+
addFilterColumnInput: string;
|
|
142
|
+
searchInDropdown: string;
|
|
143
|
+
addFilterDropdownSearch: string;
|
|
144
|
+
topShowHideColumns: string;
|
|
145
|
+
choseColumnsSearch: string;
|
|
146
|
+
editinDropdownSearch: string;
|
|
147
|
+
isThreeDotsFilterOpen: boolean;
|
|
148
|
+
confirmDelete: boolean;
|
|
149
|
+
subMenueOpendField: string;
|
|
150
|
+
fontFamilies: string[];
|
|
151
|
+
fontSizes: string[];
|
|
152
|
+
constructor(columnService: SplitColumnsService, cdr: ChangeDetectorRef, commonSevice: CommonService, elementRef: ElementRef, ngZone: NgZone, copyService: CopyServiceService);
|
|
153
|
+
cellText: ElementRef;
|
|
154
|
+
ngAfterViewInit(): Promise<void>;
|
|
155
|
+
ngOnChanges(changes: SimpleChanges): Promise<void>;
|
|
156
|
+
applyFilteroptionList(): Promise<void>;
|
|
157
|
+
leftPinnedColumns: any[];
|
|
158
|
+
centerColumns: any[];
|
|
159
|
+
rightPinnedColumns: any[];
|
|
160
|
+
previewLeftPinnedColumns: any[];
|
|
161
|
+
previewCenterColumns: any[];
|
|
162
|
+
previewRightPinnedColumns: any[];
|
|
163
|
+
dataGridContainer: ElementRef<HTMLDivElement>;
|
|
164
|
+
leftPinnedBody: ElementRef<HTMLDivElement>;
|
|
165
|
+
centerPinnedBody: ElementRef<HTMLDivElement>;
|
|
166
|
+
rightPinnedBody: ElementRef<HTMLDivElement>;
|
|
167
|
+
leftPinnedHeader: ElementRef<HTMLDivElement>;
|
|
168
|
+
centerPinnedHeader: ElementRef<HTMLDivElement>;
|
|
169
|
+
rightPinnedHeader: ElementRef<HTMLDivElement>;
|
|
170
|
+
columnsGroupedBox: ElementRef<HTMLDivElement>;
|
|
171
|
+
centerFakeScrollbar: ElementRef<HTMLDivElement>;
|
|
172
|
+
updateColumnWidthsAndGroups(columns?: any): Promise<void>;
|
|
173
|
+
refreshPreviewColumns(columns?: any): Promise<void>;
|
|
174
|
+
SetColumnsDefaultWidth(): Promise<void>;
|
|
175
|
+
setSectionsWidth(): void;
|
|
176
|
+
onLeftBodyScroll(): void;
|
|
177
|
+
onRightBodyScroll(): void;
|
|
178
|
+
fakeScrollbarScrollLeft: number;
|
|
179
|
+
onFakeScroll(event: Event): void;
|
|
180
|
+
getNestedValue(obj: any, field: string): any;
|
|
181
|
+
isNestedValueArray(obj: any, field: string): boolean;
|
|
182
|
+
onResizeGroup(event: MouseEvent, col: any, isRightPinned?: boolean): void;
|
|
183
|
+
private updateColumnWidthInSourceByField;
|
|
184
|
+
onResizeColumn(event: MouseEvent, col: any): void;
|
|
185
|
+
onResizeGroupBox(event: MouseEvent): void;
|
|
186
|
+
onFilterChange(col: any): void;
|
|
187
|
+
get bodyWrapperHeight(): string;
|
|
188
|
+
hoveredRowId: string | number | null;
|
|
189
|
+
onRowHover(row: any): void;
|
|
190
|
+
onRowLeave(): void;
|
|
191
|
+
isBreaksArray(value: any): boolean;
|
|
192
|
+
onDocumentClick(event: MouseEvent): void;
|
|
193
|
+
closeThreeDotsMenuFilter(): void;
|
|
194
|
+
closeFilterDropdowns(event: MouseEvent): void;
|
|
195
|
+
private hasParentWithClass;
|
|
196
|
+
isMenueHidden: boolean;
|
|
197
|
+
openThreeDotsMenu(event: MouseEvent, child: any): void;
|
|
198
|
+
sortAsc(col: any): void;
|
|
199
|
+
sortDesc(col: any): void;
|
|
200
|
+
resetSort(col: any): void;
|
|
201
|
+
updateColumnPinInSourceByField(column: any, pinned: 'left' | 'right' | null): Promise<void>;
|
|
202
|
+
autosizeColumn(cols: any | any[]): void;
|
|
203
|
+
getGroupWidth(group: any): number;
|
|
204
|
+
autosizeAllColumns(): void;
|
|
205
|
+
private markColumnAsGrouped;
|
|
206
|
+
groupBy(col: any): Promise<void>;
|
|
207
|
+
groupDataAsync(data: any[], groupFields: string[]): Promise<any[]>;
|
|
208
|
+
chooseColumns(): void;
|
|
209
|
+
resetColumns(): void;
|
|
210
|
+
clearFilter(col: any): void;
|
|
211
|
+
applyFilter(col: any): void;
|
|
212
|
+
selectedRows: Set<string>;
|
|
213
|
+
/**
|
|
214
|
+
* Get normalized ID from row.
|
|
215
|
+
*/
|
|
216
|
+
private getRowId;
|
|
217
|
+
/**
|
|
218
|
+
* Toggle a single row selection.
|
|
219
|
+
*/
|
|
220
|
+
toggleRowSelection(row: any): void;
|
|
221
|
+
toggleSelectAll(data: any[]): void;
|
|
222
|
+
isRowSelected(row: any): boolean;
|
|
223
|
+
isAllSelected(data: any[]): boolean;
|
|
224
|
+
isIndeterminateState(data: any[]): boolean;
|
|
225
|
+
toggleSideMenu(clickedOn: 'cols' | 'filtrs'): void;
|
|
226
|
+
toggleGroupVisibility(col: any): void;
|
|
227
|
+
isColumnVisible(columns: any): any;
|
|
228
|
+
allColumnsSelected(): boolean;
|
|
229
|
+
private findColumnByField;
|
|
230
|
+
toggleColumnVisibility(column: any, isVisible: boolean): Promise<void>;
|
|
231
|
+
toggleAllColumnsVisibility(): void;
|
|
232
|
+
flattenColumns(cols: any[]): any[];
|
|
233
|
+
filteredColumns(cols: any[]): any[];
|
|
234
|
+
get accordionState(): 'all' | 'none' | 'some';
|
|
235
|
+
get filterAccordionState(): 'all' | 'none' | 'some';
|
|
236
|
+
private getAllGroupColumns;
|
|
237
|
+
toggleAllAccordions(): void;
|
|
238
|
+
toggleAllFilterAccordions(): void;
|
|
239
|
+
private setAccordionState;
|
|
240
|
+
private setFilterAccordionState;
|
|
241
|
+
showColumnPanel: boolean;
|
|
242
|
+
closeModalColumnPanel(): void;
|
|
243
|
+
onEscape(event: KeyboardEvent): void;
|
|
244
|
+
get hasRightPinnedColumns(): boolean;
|
|
245
|
+
get hasLeftPinnedColumns(): boolean;
|
|
246
|
+
get dataSetLength(): number;
|
|
247
|
+
onResize(event: UIEvent): void;
|
|
248
|
+
refreshHeaders(): Promise<void>;
|
|
249
|
+
get hasAnyVisibleColumn(): boolean;
|
|
250
|
+
get hasAnyInVisibleColumn(): boolean;
|
|
251
|
+
get columnsCount(): number;
|
|
252
|
+
tableHeaderAndBodyHeight(): string;
|
|
253
|
+
draggingInGroupArea: boolean;
|
|
254
|
+
centerScroll: ElementRef<HTMLDivElement>;
|
|
255
|
+
visibleRowCount: number;
|
|
256
|
+
startIndex: number;
|
|
257
|
+
visibleRows: any[];
|
|
258
|
+
private flattenGroupedRows;
|
|
259
|
+
assignVirtualIndexes(data: any[]): any[];
|
|
260
|
+
updateVisibleRows(scrollTop: number): void;
|
|
261
|
+
trackByRenderedIndex: (i: number, _row: any) => number;
|
|
262
|
+
private isSyncingFromMain;
|
|
263
|
+
private isSyncingFromFake;
|
|
264
|
+
private mainScrollRaf;
|
|
265
|
+
trackById(index: number, item: any): any;
|
|
266
|
+
flattenedData: any[];
|
|
267
|
+
updateFlattenedData(): void;
|
|
268
|
+
private fakeScrollRaf;
|
|
269
|
+
translateY: number;
|
|
270
|
+
loadMore: EventEmitter<void>;
|
|
271
|
+
onMainScroll(event: Event): void;
|
|
272
|
+
get isScrollbarVisible(): boolean;
|
|
273
|
+
onMainFakeScroll(event: Event): void;
|
|
274
|
+
viewportRows: number;
|
|
275
|
+
firstIndex: number;
|
|
276
|
+
renderStart: number;
|
|
277
|
+
private scrollRaf;
|
|
278
|
+
private pendingScrollTop;
|
|
279
|
+
mainScroll: ElementRef<HTMLDivElement>;
|
|
280
|
+
fakeScroll: ElementRef<HTMLDivElement>;
|
|
281
|
+
horizintalFakeScroll: ElementRef<HTMLDivElement>;
|
|
282
|
+
centerScrollableBody: ElementRef<any>;
|
|
283
|
+
private overscan;
|
|
284
|
+
computeViewportRows(): void;
|
|
285
|
+
onHorizintalFakeScroll(event: Event): void;
|
|
286
|
+
onCenterBodyScroll(event: Event): void;
|
|
287
|
+
onCenterHeaderScroll(event: Event): void;
|
|
288
|
+
draggingColumn: any;
|
|
289
|
+
dragStartIndex: any;
|
|
290
|
+
canEnterToRowsGrouping: (drag: CdkDrag<any>, drop: CdkDropList<any>) => any;
|
|
291
|
+
onDragMoved(event: CdkDragMove<any>): void;
|
|
292
|
+
enterToTopRowGrouping(dropList: CdkDragEnter<any>): void;
|
|
293
|
+
onDropListEnter(dropList: CdkDragEnter<any>, section: 'left' | 'center' | 'right'): void;
|
|
294
|
+
enterToTopGroupingRow(dropList: CdkDragEnter<any>): void;
|
|
295
|
+
exitedFromTheTopRow(dropList: CdkDragExit<any>): void;
|
|
296
|
+
shouldDisableDroplistSorting: boolean;
|
|
297
|
+
isDisableColumnGrouping: boolean;
|
|
298
|
+
checkColumnGroupingStatus(col: any): void;
|
|
299
|
+
currentDraggingColumn: any;
|
|
300
|
+
dragStartOnGroup(col: any): void;
|
|
301
|
+
onSortGroup: (event: CdkDragSortEvent<any>, section: string) => Promise<void>;
|
|
302
|
+
onDropGroup(): void;
|
|
303
|
+
onDropTopGroup(event: CdkDragDrop<any>): Promise<void>;
|
|
304
|
+
ungroupColumn(column: any): Promise<void>;
|
|
305
|
+
shouldTheGroupHeaderShow(group: any): any;
|
|
306
|
+
onChildDragStart(): void;
|
|
307
|
+
dropListIds: string[];
|
|
308
|
+
generateDropListIds(): void;
|
|
309
|
+
onChildDroplistSorted: (event: CdkDragSortEvent<any>, section: string) => Promise<void>;
|
|
310
|
+
onChildDroplistDroped(cdkDragDropevent: CdkDragDrop<any>): void;
|
|
311
|
+
groupData(data: any[], groupFields: string[]): any[];
|
|
312
|
+
countLeafRows(group: any): number;
|
|
313
|
+
isActiveFilterOpen: boolean;
|
|
314
|
+
toggleActiveFilter(): void;
|
|
315
|
+
toggleActions(type: string): void;
|
|
316
|
+
activeSubButton: string;
|
|
317
|
+
toggleSubActions(type: string): void;
|
|
318
|
+
toggleActionsDropdown(): void;
|
|
319
|
+
changeTableLayout(event: Event, layoutType: string): Promise<void>;
|
|
320
|
+
pageSizeOptions: number[];
|
|
321
|
+
get startIndexData(): number;
|
|
322
|
+
get endIndex(): number;
|
|
323
|
+
get visiblePages(): (number | string)[];
|
|
324
|
+
searchTextForFilterDropDown: string;
|
|
325
|
+
toggleColumnInFilterDropdown(col: any): void;
|
|
326
|
+
removeColumnFromFilter(option: any): void;
|
|
327
|
+
handleBackspace(event: Event): void;
|
|
328
|
+
filterMenueSearchInput: ElementRef<HTMLInputElement>;
|
|
329
|
+
filterMenueTextchInput: ElementRef<HTMLInputElement>;
|
|
330
|
+
openFilteronThreeDotsClick(col: any): void;
|
|
331
|
+
isFilterOpen: boolean;
|
|
332
|
+
selectedColumnForFilter: any;
|
|
333
|
+
showFilters: boolean;
|
|
334
|
+
openFilter(col: any): void;
|
|
335
|
+
firstValue: any;
|
|
336
|
+
firstCondition: string;
|
|
337
|
+
secondValue: any;
|
|
338
|
+
secondCondition: string;
|
|
339
|
+
condition: string;
|
|
340
|
+
resetTextFilterChanges(): void;
|
|
341
|
+
selectedFilterOptions: any[];
|
|
342
|
+
currentFilterSelectedIds: Set<string>;
|
|
343
|
+
toggleSelectionInFilter(option: any): void;
|
|
344
|
+
resetFilterChanges(): void;
|
|
345
|
+
applyDropdownFilter(): void;
|
|
346
|
+
applyFilterFromFilterRow(column: any): void;
|
|
347
|
+
isFilterAppliedOnColumn(column: any): boolean;
|
|
348
|
+
toggleSelectAllSideFilters(col: any, event: Event): void;
|
|
349
|
+
isAllSideFilterOptionsSelected(col: any): boolean;
|
|
350
|
+
onOptionToggle(col: any, option: any): void;
|
|
351
|
+
resetSideFilter(col: any): void;
|
|
352
|
+
clearAllFilters(): void;
|
|
353
|
+
applySideFilter(): void;
|
|
354
|
+
trackByField(index: number, col: any): string;
|
|
355
|
+
get activeFilteredColumns(): any[];
|
|
356
|
+
toggleOpenFilter(): void;
|
|
357
|
+
editingKey: string | null;
|
|
358
|
+
activeCell: string | null;
|
|
359
|
+
setActiveCell(row: any, column: any): void;
|
|
360
|
+
isActiveCell(row: any, col: any): boolean;
|
|
361
|
+
enableEdit(row: any, column: any): void;
|
|
362
|
+
disableEdit(row: any, column: any, controk?: any): void;
|
|
363
|
+
emailRegex: RegExp;
|
|
364
|
+
validateEmail(value: string): boolean;
|
|
365
|
+
allowOnlyNumbers(event: KeyboardEvent): void;
|
|
366
|
+
checkRowEditAndEmitValue(row: any, column: any, value?: any): void;
|
|
367
|
+
isEditing(row: any, col: any): boolean;
|
|
368
|
+
setNestedValue(obj: any, column: any, option: any, calledFromInput?: boolean): void;
|
|
369
|
+
goToPage(page: any): void;
|
|
370
|
+
onPageSizeChange(): void;
|
|
371
|
+
actionPreset(data: any, type: any): void;
|
|
372
|
+
selectFilter(data: any): void;
|
|
373
|
+
savePreset(control?: any): void;
|
|
374
|
+
toggleRowShading(): void;
|
|
375
|
+
trackByTable(index: number): number;
|
|
376
|
+
activeRow: any;
|
|
377
|
+
activeRowCol: any;
|
|
378
|
+
getCellKey(row: any, col: any): string;
|
|
379
|
+
expandedCells: Map<string, number>;
|
|
380
|
+
private zCounter;
|
|
381
|
+
toggleExpandOfLongCellText(row: any, col: any, columns: any[], expandWholeRow?: boolean): void;
|
|
382
|
+
isExpanded(row: any, col: any): boolean;
|
|
383
|
+
getZIndex(row: any, col: any): number;
|
|
384
|
+
isOverflowing(element: HTMLElement | null): boolean;
|
|
385
|
+
colorCombination: string[];
|
|
386
|
+
getDynamicClass(name: string): string;
|
|
387
|
+
getInitials(name: string): string;
|
|
388
|
+
getFirstTwoWords(name: string): string;
|
|
389
|
+
onEmployeeClick(row: any): void;
|
|
390
|
+
actionHide: boolean;
|
|
391
|
+
xPos: number;
|
|
392
|
+
yPos: number;
|
|
393
|
+
isVisible: boolean;
|
|
394
|
+
deatilsList: any;
|
|
395
|
+
openExpendIndex: any;
|
|
396
|
+
positionedYet: boolean;
|
|
397
|
+
onRightClick(event: MouseEvent | TouchEvent | any, deatilsList: any): boolean;
|
|
398
|
+
onActionClick(action: string): void;
|
|
399
|
+
onVerifyClick(type: string): void;
|
|
400
|
+
getCellClasses(column: any, value: any): string;
|
|
401
|
+
removeColumnFilterFromColumn(column: any): void;
|
|
402
|
+
onSideMenuColumnsVisibilityChange(): void;
|
|
403
|
+
downloadCsv(): void;
|
|
404
|
+
onFontChange(): void;
|
|
405
|
+
onGlobalSearch(): void;
|
|
406
|
+
checkFilterChangesEffect(): any;
|
|
407
|
+
selectedCells: any[];
|
|
408
|
+
selectedKeys: Set<string>;
|
|
409
|
+
selectionStart: any;
|
|
410
|
+
isSelecting: boolean;
|
|
411
|
+
startSelection(rowIndex: number, colIndex: number, subColIndex: number | null, field: string, event: MouseEvent, section: string): void;
|
|
412
|
+
extendSelection(rowIndex: number, colIndex: number, subColIndex: number | null, field: string, event: MouseEvent, section: string): void;
|
|
413
|
+
getColumnSelectionRange(startCol: number, endCol: number, startSub: number, endSub: number): {
|
|
414
|
+
colIndex: number;
|
|
415
|
+
subColIndex: number;
|
|
416
|
+
}[];
|
|
417
|
+
getSubColumnCount(colIndex: number): number;
|
|
418
|
+
isGroupColumn(colIndex: number): boolean;
|
|
419
|
+
endSelection(): void;
|
|
420
|
+
isSelected(rowIndex: number, colIndex: number, subColIndex: number | null, field: string, section: string): boolean;
|
|
421
|
+
private selectionBounds;
|
|
422
|
+
updateSelectionBoundaries(): void;
|
|
423
|
+
findLeftMostCell(): {
|
|
424
|
+
colIndex: number;
|
|
425
|
+
subColIndex: number;
|
|
426
|
+
} | null;
|
|
427
|
+
findRightMostCell(): {
|
|
428
|
+
colIndex: number;
|
|
429
|
+
subColIndex: number;
|
|
430
|
+
} | null;
|
|
431
|
+
isTopBorder(rowIndex: number, colIndex: number, subColIndex: number | null, section: string): boolean;
|
|
432
|
+
isBottomBorder(rowIndex: number, colIndex: number, subColIndex: number | null, section: string): boolean;
|
|
433
|
+
isLeftBorder(rowIndex: number, colIndex: number, subColIndex: number | null, section: string): boolean;
|
|
434
|
+
isRightBorder(rowIndex: number, colIndex: number, subColIndex: number | null, section: string): boolean;
|
|
435
|
+
isTopLeftCorner(rowIndex: number, colIndex: number, subColIndex: number | null, section: string): boolean;
|
|
436
|
+
isTopRightCorner(rowIndex: number, colIndex: number, subColIndex: number | null, section: string): boolean;
|
|
437
|
+
isBottomLeftCorner(rowIndex: number, colIndex: number, subColIndex: number | null, section: string): boolean;
|
|
438
|
+
isBottomRightCorner(rowIndex: number, colIndex: number, subColIndex: number | null, section: string): boolean;
|
|
439
|
+
cellSelectionAutoScrollInterval: any;
|
|
440
|
+
private scrollSpeed;
|
|
441
|
+
private scrollMargin;
|
|
442
|
+
handleCellAutoScroll(event: MouseEvent): void;
|
|
443
|
+
stopAutoScroll(): void;
|
|
444
|
+
rowSelectedIndexes: Set<number>;
|
|
445
|
+
rowSelecting: boolean;
|
|
446
|
+
rowSelectionStartIndex: number | null;
|
|
447
|
+
autoScrollInterval: any;
|
|
448
|
+
get firstSelectedRow(): number | null;
|
|
449
|
+
get lastSelectedRow(): number | null;
|
|
450
|
+
onRowMouseDown(index: number, event: MouseEvent): void;
|
|
451
|
+
onRowMouseOver(index: number, event: MouseEvent): void;
|
|
452
|
+
onRowMouseUp(): void;
|
|
453
|
+
handleAutoScroll(e: MouseEvent): void;
|
|
454
|
+
undoStack: any[][];
|
|
455
|
+
redoStack: any[][];
|
|
456
|
+
private cloneData;
|
|
457
|
+
performCut(selectedData: any[][]): void;
|
|
458
|
+
getSelectedDataForCopy(): any[][];
|
|
459
|
+
onKeyDown(event: KeyboardEvent): void;
|
|
460
|
+
undo(): void;
|
|
461
|
+
redo(): void;
|
|
462
|
+
onPaste(event: ClipboardEvent): Promise<void>;
|
|
463
|
+
isDate(value: any): boolean;
|
|
464
|
+
detailEditingKey: string | null;
|
|
465
|
+
activeDetailRow: any;
|
|
466
|
+
activeDetailCol: any;
|
|
467
|
+
detailFilterValue: string;
|
|
468
|
+
detailFilterCondition: string;
|
|
469
|
+
detailFilters: Map<string, {
|
|
470
|
+
condition: string;
|
|
471
|
+
value: any;
|
|
472
|
+
}>;
|
|
473
|
+
currentDetailDraggingColumn: any;
|
|
474
|
+
currentDetailRow: any;
|
|
475
|
+
openDetailThreeDotsMenu(event: MouseEvent, row: any, col: any): void;
|
|
476
|
+
enableDetailEdit(row: any, dataItem: any, col: any): void;
|
|
477
|
+
isDetailEditing(row: any, dataItem: any, col: any): boolean;
|
|
478
|
+
isActiveDetailCell(row: any, dataItem: any, col: any): boolean;
|
|
479
|
+
getDetailFilterMenuLeft(row: any, col: any): number;
|
|
480
|
+
applyDetailFilter(row: any, col: any): void;
|
|
481
|
+
toggleSelectAllDetailFilters(col: any, row: any, event: any): void;
|
|
482
|
+
onDetailOptionToggle(col: any, option: any, row: any): void;
|
|
483
|
+
resetDetailFilter(row: any, col: any): void;
|
|
484
|
+
filterDetailData(row: any): void;
|
|
485
|
+
onDetailDragStart(event: CdkDragStart, row: any, col: any, index: number): void;
|
|
486
|
+
onDetailDragMoved(event: CdkDragMove, row: any): void;
|
|
487
|
+
onDetailDragDropped(event: CdkDragDrop<any>, row: any): void;
|
|
488
|
+
detailsIconPosition: 'start' | 'end';
|
|
489
|
+
detailsPosition: 'top' | 'bottom';
|
|
490
|
+
dropColumn(event: CdkDragDrop<any[]>, row: any): void;
|
|
491
|
+
openSubMenue(col: any): void;
|
|
492
|
+
detailDragState: {
|
|
493
|
+
isDragging: boolean;
|
|
494
|
+
sourceRow: any;
|
|
495
|
+
sourceColumn: any;
|
|
496
|
+
originalColumns: any[];
|
|
497
|
+
originalIndex: number;
|
|
498
|
+
};
|
|
499
|
+
onDetailDragEnd(event: CdkDragEnd, row: any): void;
|
|
500
|
+
onDetailDragEndSimple(event: CdkDragEnd, row: any): void;
|
|
501
|
+
reorderDetailData(row: any, oldIndex: number, newIndex: number): void;
|
|
502
|
+
emitDetailColumnReorderEvent(row: any): void;
|
|
503
|
+
originalDetailValues: Map<string, any>;
|
|
504
|
+
detailAccordionStates: Map<string, boolean>;
|
|
505
|
+
onDetailDragStarts(event: CdkDragStart, row: any, col: any, index: number): void;
|
|
506
|
+
onDetailDragDroppeds(event: CdkDragDrop<any[]>, row: any): void;
|
|
507
|
+
handleDetailDoubleClick(row: any, dataItem: any, col: any): void;
|
|
508
|
+
disableDetailEdit(row: any, dataItem: any, col: any): void;
|
|
509
|
+
enableDetailCellEdit(row: any, dataItem: any, col: any): void;
|
|
510
|
+
disableDetailCellEdit(row: any, dataItem: any, col: any): void;
|
|
511
|
+
isDetailCellEditing(row: any, dataItem: any, col: any): boolean;
|
|
512
|
+
tooltipVisible: boolean;
|
|
513
|
+
tooltipEditing: boolean;
|
|
514
|
+
currentTooltipField: string | null;
|
|
515
|
+
currentTooltipData: any;
|
|
516
|
+
tooltipPosition: {
|
|
517
|
+
x: number;
|
|
518
|
+
y: number;
|
|
519
|
+
};
|
|
520
|
+
enableDetailEdits(row: any, dataItem: any, col: any): void;
|
|
521
|
+
disableDetailEdits(row: any, dataItem: any, col: any): void;
|
|
522
|
+
tooltipElement: HTMLElement | null;
|
|
523
|
+
getDisplayValue(dataItem: any, field: string): string;
|
|
524
|
+
enableDetailEditss(row: any, dataItem: any, col: any, breakItem?: any): void;
|
|
525
|
+
disableDetailEditss(row: any, dataItem: any, col: any): void;
|
|
526
|
+
isDetailEditings(row: any, dataItem: any, col: any): boolean;
|
|
527
|
+
isActiveDetailCells(row: any, dataItem: any, col: any): boolean;
|
|
528
|
+
showCustomTooltip(event: MouseEvent, dataItem: any, field: string): void;
|
|
529
|
+
getTooltipContent(dataItem: any, field: string): string;
|
|
530
|
+
getBreakColor(type: string): string;
|
|
531
|
+
minuteOptions: number[];
|
|
532
|
+
tooltipMinutes: number;
|
|
533
|
+
formattedDuration: string;
|
|
534
|
+
enableTooltipEdit(): void;
|
|
535
|
+
updateFormattedDuration(): void;
|
|
536
|
+
saveTooltipEdit(): void;
|
|
537
|
+
cancelTooltipEdit(): void;
|
|
538
|
+
showRestrictionTooltip(event: MouseEvent, parentRow: any, dataItem: any): void;
|
|
539
|
+
private customTooltipHideTimeout;
|
|
540
|
+
private restrictionTooltipHideTimeout;
|
|
541
|
+
private manualLogsTooltipHideTimeout;
|
|
542
|
+
showManualLogsTooltip(event: MouseEvent, parentRow: any, dataItem: any): void;
|
|
543
|
+
hideRestrictionTooltip(): void;
|
|
544
|
+
hideManualLogsTooltip(): void;
|
|
545
|
+
preventRestrictionTooltipHide(): void;
|
|
546
|
+
preventManualLogsTooltipHide(): void;
|
|
547
|
+
hideCustomTooltip(): void;
|
|
548
|
+
preventCustomTooltipHide(): void;
|
|
549
|
+
restrictionTooltipVisible: boolean;
|
|
550
|
+
restrictionTooltipPosition: {
|
|
551
|
+
x: number;
|
|
552
|
+
y: number;
|
|
553
|
+
};
|
|
554
|
+
currentRestrictionLogs: any[];
|
|
555
|
+
manualLogsTooltipVisible: boolean;
|
|
556
|
+
manualLogsTooltipPosition: {
|
|
557
|
+
x: number;
|
|
558
|
+
y: number;
|
|
559
|
+
};
|
|
560
|
+
currentManualLogs: any[];
|
|
561
|
+
isDetailMenueHidden: boolean;
|
|
562
|
+
openDetailThreeDotsMenus(event: MouseEvent, col: any, row: any): void;
|
|
563
|
+
sortDetailAsc(col: any, row: any): void;
|
|
564
|
+
sortDetailDesc(col: any, row: any): void;
|
|
565
|
+
resetDetailSort(col: any, row: any): void;
|
|
566
|
+
private sortDetailData;
|
|
567
|
+
updateDetailColumnPin(col: any, row: any, pinned: 'left' | 'right' | null): void;
|
|
568
|
+
private reorderDetailColumns;
|
|
569
|
+
autosizeDetailColumn(col: any, row: any): void;
|
|
570
|
+
autosizeAllDetailColumns(row: any): void;
|
|
571
|
+
chooseDetailColumns(row: any): void;
|
|
572
|
+
resetDetailColumns(row: any): void;
|
|
573
|
+
showDetailColumnPanel: boolean;
|
|
574
|
+
currentDetailRowForColumnSelection: any;
|
|
575
|
+
openDetailChooseColumns(row: any): void;
|
|
576
|
+
closeDetailColumnPanel(): void;
|
|
577
|
+
toggleDetailColumnVisibility(column: any, isVisible: boolean): void;
|
|
578
|
+
allDetailColumnsSelected(): boolean;
|
|
579
|
+
toggleAllDetailColumnsVisibility(): void;
|
|
580
|
+
groupByDetailColumn(col: any, row: any): void;
|
|
581
|
+
groupDetailData(row: any): void;
|
|
582
|
+
ungroupDetailColumn(col: any, row: any): void;
|
|
583
|
+
toggleExpand(row: any): void;
|
|
584
|
+
toggleDetailSideMenu(row: any, tab: 'cols' | 'filtrs'): void;
|
|
585
|
+
onDetailColumnVisibilityChange(row: any): void;
|
|
586
|
+
applyDetailRowFilter(row: any): void;
|
|
587
|
+
onResizeDetailColumn(event: MouseEvent, row: any, col: any): void;
|
|
588
|
+
getDetailViewportHeight(row: any): number;
|
|
589
|
+
onDetailLeftScroll(event: Event, row: any): void;
|
|
590
|
+
onDetailRightScroll(event: Event, row: any): void;
|
|
591
|
+
onDetailCenterScroll(event: Event, row: any): void;
|
|
592
|
+
onDetailHeaderScroll(event: Event, row: any): void;
|
|
593
|
+
headerContainer: ElementRef<HTMLDivElement> | null;
|
|
594
|
+
dataContainer: CdkVirtualScrollViewport;
|
|
595
|
+
syncScroll(event: Event): void;
|
|
596
|
+
leftContainer: ElementRef<HTMLDivElement>;
|
|
597
|
+
rightContainer: ElementRef<HTMLDivElement>;
|
|
598
|
+
syncVerticalScroll(event: Event): void;
|
|
599
|
+
private getDetailRowId;
|
|
600
|
+
startDetailSelection(detailRow: any, rowIndex: number, globalColIndex: number, field: string, event: MouseEvent, section: 'left' | 'center' | 'right'): void;
|
|
601
|
+
extendDetailSelection(detailRow: any, rowIndex: number, globalColIndex: number, field: string, event: MouseEvent, section: 'left' | 'center' | 'right'): void;
|
|
602
|
+
private getSectionColumns;
|
|
603
|
+
isDetailCellSelected(detailRow: any, rowIndex: number, globalColIndex: number, field: string, section: 'left' | 'center' | 'right'): boolean;
|
|
604
|
+
getSelectedDetailData(detailRow: any, section: 'left' | 'center' | 'right'): any[][];
|
|
605
|
+
private isAnyDetailFocused;
|
|
606
|
+
private handleDetailShortcuts;
|
|
607
|
+
performDetailCut(detailRow: any, section: 'left' | 'center' | 'right'): void;
|
|
608
|
+
performDetailPaste(detailRow: any, section: 'left' | 'center' | 'right'): Promise<void>;
|
|
609
|
+
detailUndo(detailRow: any, section: 'left' | 'center' | 'right'): void;
|
|
610
|
+
detailRedo(detailRow: any, section: 'left' | 'center' | 'right'): void;
|
|
611
|
+
private isDetailDragging;
|
|
612
|
+
detailSelectionState: Map<string, Map<string, {
|
|
613
|
+
selectedCells: CellPosition[];
|
|
614
|
+
selectedKeys: Set<string>;
|
|
615
|
+
undoStack: any[][];
|
|
616
|
+
redoStack: any[][];
|
|
617
|
+
}>>;
|
|
618
|
+
private getDetailSelectionState;
|
|
619
|
+
private findFocusedDetailRowAndSection;
|
|
620
|
+
private clearOtherDetailSections;
|
|
621
|
+
get hasOpenAccordion(): boolean;
|
|
622
|
+
togglePicker(picker: BsDaterangepickerDirective): void;
|
|
623
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TimeSheetComponent, never>;
|
|
624
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TimeSheetComponent, "time-sheet", 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; }; "isSingleDay": { "alias": "isSingleDay"; "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; }; "columnThreedotsMunuConfig": { "alias": "columnThreedotsMunuConfig"; "required": false; }; "enableInfiniteScroll": { "alias": "enableInfiniteScroll"; "required": false; }; "hasMoreData": { "alias": "hasMoreData"; "required": false; }; "loadingMore": { "alias": "loadingMore"; "required": false; }; "detailsIconPosition": { "alias": "detailsIconPosition"; "required": false; }; "detailsPosition": { "alias": "detailsPosition"; "required": false; }; }, { "loadMoreData": "loadMoreData"; "changeLayout": "changeLayout"; "filterOptions": "filterOptions"; "genericEvent": "genericEvent"; "tablePresetConfig": "tablePresetConfig"; "sortingOrderOptions": "sortingOrderOptions"; "createUpdateConfigListing": "createUpdateConfigListing"; "loadMore": "loadMore"; }, never, never, true, never>;
|
|
625
|
+
}
|
|
626
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FilterPipe implements PipeTransform {
|
|
4
|
+
transform(items: any[], searchText: string, key?: string): any[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FilterPipe, "filter", true>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PinnedColumnsPipe implements PipeTransform {
|
|
4
|
+
transform(columns: any[], pinned: 'left' | 'right' | null): any[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PinnedColumnsPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PinnedColumnsPipe, "pinnedColumns", true>;
|
|
7
|
+
}
|