tango-app-ui-analyse-trax 3.7.76 → 3.7.78
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/components/checklist-configure/checklist-configure.component.mjs +198 -39
- package/esm2022/lib/components/chip-dropdown/chip-dropdown.component.mjs +27 -12
- package/esm2022/lib/components/gallery/gallery.component.mjs +7 -5
- package/esm2022/lib/components/task-configure/task-configure.component.mjs +1 -1
- package/fesm2022/tango-app-ui-analyse-trax.mjs +230 -54
- package/fesm2022/tango-app-ui-analyse-trax.mjs.map +1 -1
- package/lib/components/checklist-configure/checklist-configure.component.d.ts +7 -0
- package/lib/components/chip-dropdown/chip-dropdown.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -17,6 +17,7 @@ export declare class ChecklistConfigureComponent implements OnInit, OnDestroy {
|
|
|
17
17
|
fileInput: ElementRef;
|
|
18
18
|
fileInput1: ElementRef;
|
|
19
19
|
bulkupload: any;
|
|
20
|
+
emailBulkupload: any;
|
|
20
21
|
afterValidation: any;
|
|
21
22
|
confirmUser: any;
|
|
22
23
|
dayjs: any;
|
|
@@ -141,6 +142,8 @@ export declare class ChecklistConfigureComponent implements OnInit, OnDestroy {
|
|
|
141
142
|
notifyFlag: boolean;
|
|
142
143
|
enableEmail: boolean;
|
|
143
144
|
timeSlot: number[];
|
|
145
|
+
bufferTime: number[];
|
|
146
|
+
emailDropdown: boolean;
|
|
144
147
|
constructor(changedetector: ChangeDetectorRef, router: ActivatedRoute, route: Router, dialog: NgbModal, SopService: TraxService, toast: ToastService, gs: GlobalStateService, pageInfo: PageInfoService);
|
|
145
148
|
ngOnInit(): void;
|
|
146
149
|
ngOnDestroy(): void;
|
|
@@ -185,10 +188,13 @@ export declare class ChecklistConfigureComponent implements OnInit, OnDestroy {
|
|
|
185
188
|
getStoreCounts(data: any): number | undefined;
|
|
186
189
|
userDetails(): void;
|
|
187
190
|
downloadTemplateV2(): void;
|
|
191
|
+
emailDownloadTemplate(): void;
|
|
192
|
+
validateExcelTemplate(event: any): void;
|
|
188
193
|
onPageChange(event: any): void;
|
|
189
194
|
onPageSizeChange(event: any): void;
|
|
190
195
|
dropDown: boolean;
|
|
191
196
|
openDropdown(event: any): void;
|
|
197
|
+
openEmailDropdown(): void;
|
|
192
198
|
searchTable: any;
|
|
193
199
|
searchTableData(): void;
|
|
194
200
|
sortData(value: any): void;
|
|
@@ -262,6 +268,7 @@ export declare class ChecklistConfigureComponent implements OnInit, OnDestroy {
|
|
|
262
268
|
updateConfigApprover(event: any): void;
|
|
263
269
|
updateTimeLoop(index: any): number[];
|
|
264
270
|
bulkuploadModel(): void;
|
|
271
|
+
emailBulkuploadModel(): void;
|
|
265
272
|
excelError: any;
|
|
266
273
|
afterUplload(data?: any): void;
|
|
267
274
|
getInitials(name: string): string;
|
|
@@ -6,11 +6,13 @@ export declare class ChipDropdownComponent implements OnInit, OnChanges {
|
|
|
6
6
|
private cd;
|
|
7
7
|
data: any;
|
|
8
8
|
selectedData: any;
|
|
9
|
+
placeholder: any;
|
|
9
10
|
selectedList: EventEmitter<string[]>;
|
|
10
11
|
showDropdown: boolean;
|
|
11
12
|
dummyData: any;
|
|
12
13
|
instanceId: string;
|
|
13
14
|
searchValue: any;
|
|
15
|
+
oldPlaceholder: any;
|
|
14
16
|
constructor(traxService: TraxService, cd: ChangeDetectorRef);
|
|
15
17
|
ngOnInit(): void;
|
|
16
18
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -22,5 +24,5 @@ export declare class ChipDropdownComponent implements OnInit, OnChanges {
|
|
|
22
24
|
toggleDropdown(): void;
|
|
23
25
|
clickOutside(event: MouseEvent): void;
|
|
24
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChipDropdownComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChipDropdownComponent, "lib-chip-dropdown", never, { "data": { "alias": "data"; "required": false; }; "selectedData": { "alias": "selectedData"; "required": false; }; }, { "selectedList": "selectedList"; }, never, never, false, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChipDropdownComponent, "lib-chip-dropdown", never, { "data": { "alias": "data"; "required": false; }; "selectedData": { "alias": "selectedData"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "selectedList": "selectedList"; }, never, never, false, never>;
|
|
26
28
|
}
|