tango-app-ui-analyse-trax 3.3.1-alpha-task.65 → 3.3.1-alpha-task.66

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.
@@ -34,7 +34,9 @@ export declare class ActionCentreComponent implements OnInit {
34
34
  totalItems: number;
35
35
  paginationSizes: any[];
36
36
  pageSize: number;
37
- ApprovalListData: any[];
37
+ OpenApprovalListData: any[];
38
+ InprogressApprovalListData: any[];
39
+ DoneApprovalListData: any[];
38
40
  approvalInprogressLoading: boolean;
39
41
  approvalInprogressNoData: boolean;
40
42
  approvedLoading: boolean;
@@ -45,8 +47,6 @@ export declare class ActionCentreComponent implements OnInit {
45
47
  setPageData(): void;
46
48
  getOverallActionCenterData(): void;
47
49
  getApprovalOpenData(): void;
48
- getApprovalInprogressData(): void;
49
- getApprovedData(): void;
50
50
  onValueChangeChecklist(event: any): void;
51
51
  searchField(): void;
52
52
  setPaginationSizes(): void;
@@ -1,38 +1,78 @@
1
- import { ChangeDetectorRef, OnInit } from '@angular/core';
2
- import { FormBuilder, FormGroup } from '@angular/forms';
1
+ import { ChangeDetectorRef, ElementRef, OnInit } from '@angular/core';
2
+ import { FormArray, FormBuilder, FormGroup } from '@angular/forms';
3
3
  import { GlobalStateService } from 'tango-app-ui-global';
4
4
  import { TraxService } from '../../services/trax.service';
5
- import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
5
+ import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
6
6
  import { Router } from '@angular/router';
7
+ import { Answer, AnswerForm, AnswerType, HeaderFilter, Question, QuestionForm, Section, SectionForm, TaskForm, ValidationType } from './create-task.interface';
8
+ import { ToastService } from 'tango-app-ui-shared';
9
+ import dayjs from "dayjs";
10
+ import { TimePeriod } from 'ngx-daterangepicker-material/daterangepicker.component';
7
11
  import * as i0 from "@angular/core";
8
12
  export declare class AddTaskComponent implements OnInit {
9
13
  private fb;
10
14
  private gs;
11
15
  private traxService;
12
16
  private cd;
13
- private modalService;
17
+ activeModal: NgbActiveModal;
14
18
  private router;
15
- addTaskForm: FormGroup;
19
+ private toastService;
20
+ private elRef;
21
+ taskForm: FormGroup<TaskForm>;
16
22
  type: any;
17
- answerType: {
23
+ headerData: HeaderFilter | null | undefined;
24
+ answerTypes: {
18
25
  label: string;
19
- value: string;
26
+ value: AnswerType;
20
27
  }[];
28
+ validationTypes: {
29
+ label: string;
30
+ value: ValidationType;
31
+ }[];
32
+ environment: any;
21
33
  taskContainer: HTMLElement | null;
34
+ private destroy$;
22
35
  taskDetails: any;
23
- constructor(fb: FormBuilder, gs: GlobalStateService, traxService: TraxService, cd: ChangeDetectorRef, modalService: NgbModal, router: Router);
36
+ inputData: any;
37
+ timeDetails: any;
38
+ constructor(fb: FormBuilder, gs: GlobalStateService, traxService: TraxService, cd: ChangeDetectorRef, activeModal: NgbActiveModal, router: Router, toastService: ToastService, elRef: ElementRef);
24
39
  ngOnInit(): void;
25
40
  tasks: number[];
26
41
  taskCounter: number;
27
- addTask(): void;
28
- removeTask(taskId: number): void;
42
+ updateForm(): void;
29
43
  cancel(): void;
30
44
  onSubmit(): void;
31
45
  createForm(): void;
46
+ addSectionForm(section?: Section): void;
47
+ addQuestionForm(question: Question, sectionIndex: number, insertIndex?: number): void;
48
+ addAnswerForm(answer: Answer, sectionIndex: number, questionIndex: number, insertIndex?: number): void;
49
+ get getSections(): FormArray<FormGroup<SectionForm>>;
50
+ getQuestions(sectionIndex: number): FormArray<FormGroup<QuestionForm>>;
51
+ getAnswers(sectionIndex: number, questionIndex: number): FormArray<FormGroup<AnswerForm>>;
52
+ uploadFile(event: any, sectionIndex: number, questionIndex: number, answerIndex?: number): void;
53
+ closeDropdown(event: MouseEvent): void;
32
54
  openDropdown(event: MouseEvent): void;
33
55
  selectedItem: any;
34
56
  dropDown: boolean;
57
+ currentTime: string;
58
+ updateCurrentTime(): void;
59
+ isDisabled(time: string): boolean;
35
60
  selectItem(value: any): void;
61
+ onDeleteReferenceImage(sectionIndex: number, questionIndex: number, answerIndex?: number): void;
62
+ onAnswerDelete(sectionIndex: number, questionIndex: number, answerIndex: number): void;
63
+ onValidateResponseChange(event: any, sectionIndex: number, questionIndex: number, answerIndex: number): void;
64
+ addNewAnswer(sectionIndex: number, questionIndex: number, type: AnswerType): void;
65
+ onQuestionChange(event: any, sectionIndex: number, questionIndex: number): void;
66
+ selectedDate: any;
67
+ dayjs: typeof dayjs;
68
+ isCustomDate: (m: dayjs.Dayjs) => false | "invalid-date";
69
+ onStartDateChange(event: any): void;
70
+ datechange(event: TimePeriod): void;
71
+ selectedFile?: File;
72
+ previewUrl?: any;
73
+ fileInput: ElementRef;
74
+ onFileSelected(event: any): void;
75
+ removeImage(): void;
36
76
  static ɵfac: i0.ɵɵFactoryDeclaration<AddTaskComponent, never>;
37
- static ɵcmp: i0.ɵɵComponentDeclaration<AddTaskComponent, "lib-add-task", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, never, false, never>;
77
+ static ɵcmp: i0.ɵɵComponentDeclaration<AddTaskComponent, "lib-add-task", never, { "type": { "alias": "type"; "required": false; }; "taskDetails": { "alias": "taskDetails"; "required": false; }; "inputData": { "alias": "inputData"; "required": false; }; }, {}, never, never, false, never>;
38
78
  }
@@ -0,0 +1,244 @@
1
+ export declare const descriptive_question_template: {
2
+ qname: string;
3
+ answerType: string;
4
+ runAI: boolean;
5
+ runAIDescription: string;
6
+ allowUploadfromGallery: boolean;
7
+ linkType: boolean;
8
+ questionReferenceImage: string;
9
+ descriptivetype: string;
10
+ answers: {
11
+ answer: string;
12
+ sopFlag: boolean;
13
+ validation: boolean;
14
+ validationType: string;
15
+ validationAnswer: string;
16
+ referenceImage: string;
17
+ showLinked: boolean;
18
+ linkedQuestion: number;
19
+ nestedQuestion: never[];
20
+ }[];
21
+ };
22
+ export declare const yesorno_question_template: {
23
+ qname: string;
24
+ answerType: string;
25
+ runAI: boolean;
26
+ runAIDescription: string;
27
+ allowUploadfromGallery: boolean;
28
+ linkType: boolean;
29
+ questionReferenceImage: string;
30
+ answers: {
31
+ answer: string;
32
+ sopFlag: boolean;
33
+ validation: boolean;
34
+ validationType: string;
35
+ linkedQuestion: number;
36
+ showLinked: boolean;
37
+ referenceImage: string;
38
+ runAI: boolean;
39
+ allowUploadfromGallery: boolean;
40
+ descriptivetype: string;
41
+ nestedQuestion: never[];
42
+ }[];
43
+ };
44
+ export declare const multiplechoicesingle_question_template: {
45
+ qname: string;
46
+ answerType: string;
47
+ runAI: boolean;
48
+ runAIDescription: string;
49
+ allowUploadfromGallery: boolean;
50
+ linkType: boolean;
51
+ questionReferenceImage: string;
52
+ answers: {
53
+ answer: string;
54
+ sopFlag: boolean;
55
+ validation: boolean;
56
+ validationType: string;
57
+ linkedQuestion: number;
58
+ showLinked: boolean;
59
+ referenceImage: string;
60
+ runAI: boolean;
61
+ allowUploadfromGallery: boolean;
62
+ descriptivetype: string;
63
+ nestedQuestion: never[];
64
+ }[];
65
+ };
66
+ export declare const multiplechoice_answer_template: {
67
+ answer: string;
68
+ sopFlag: boolean;
69
+ validation: boolean;
70
+ validationType: string;
71
+ referenceImage: string;
72
+ runAI: boolean;
73
+ allowUploadfromGallery: boolean;
74
+ descriptivetype: string;
75
+ showLinked: boolean;
76
+ linkedQuestion: number;
77
+ nestedQuestion: never[];
78
+ };
79
+ export declare const multiplechoicemultiple_question_template: {
80
+ qname: string;
81
+ answerType: string;
82
+ runAI: boolean;
83
+ runAIDescription: string;
84
+ allowUploadfromGallery: boolean;
85
+ linkType: boolean;
86
+ questionReferenceImage: string;
87
+ answers: {
88
+ answer: string;
89
+ sopFlag: boolean;
90
+ validation: boolean;
91
+ validationType: string;
92
+ referenceImage: string;
93
+ runAI: boolean;
94
+ allowUploadfromGallery: boolean;
95
+ descriptivetype: string;
96
+ showLinked: boolean;
97
+ linkedQuestion: number;
98
+ nestedQuestion: never[];
99
+ }[];
100
+ };
101
+ export declare const descriptiveImage_question_template: {
102
+ qname: string;
103
+ answerType: string;
104
+ runAI: boolean;
105
+ runAIDescription: string;
106
+ allowUploadfromGallery: boolean;
107
+ linkType: boolean;
108
+ questionReferenceImage: string;
109
+ answers: {
110
+ answer: string;
111
+ sopFlag: boolean;
112
+ validation: boolean;
113
+ validationType: string;
114
+ validationAnswer: string;
115
+ referenceImage: string;
116
+ showLinked: boolean;
117
+ linkedQuestion: number;
118
+ nestedQuestion: never[];
119
+ }[];
120
+ };
121
+ export declare const image_question_template: {
122
+ qname: string;
123
+ answerType: string;
124
+ runAI: boolean;
125
+ runAIDescription: string;
126
+ allowUploadfromGallery: boolean;
127
+ linkType: boolean;
128
+ questionReferenceImage: string;
129
+ answers: {
130
+ answer: string;
131
+ sopFlag: boolean;
132
+ validation: boolean;
133
+ validationType: string;
134
+ validationAnswer: string;
135
+ referenceImage: string;
136
+ showLinked: boolean;
137
+ linkedQuestion: number;
138
+ nestedQuestion: never[];
139
+ }[];
140
+ };
141
+ export declare const video_question_template: {
142
+ qname: string;
143
+ answerType: string;
144
+ runAI: boolean;
145
+ runAIDescription: string;
146
+ allowUploadfromGallery: boolean;
147
+ linkType: boolean;
148
+ questionReferenceImage: string;
149
+ answers: {
150
+ answer: string;
151
+ sopFlag: boolean;
152
+ validation: boolean;
153
+ validationType: string;
154
+ validationAnswer: string;
155
+ referenceImage: string;
156
+ showLinked: boolean;
157
+ linkedQuestion: number;
158
+ nestedQuestion: never[];
159
+ }[];
160
+ };
161
+ export declare const multipleImage_question_template: {
162
+ qname: string;
163
+ answerType: string;
164
+ runAI: boolean;
165
+ runAIDescription: string;
166
+ allowUploadfromGallery: boolean;
167
+ linkType: boolean;
168
+ questionReferenceImage: string;
169
+ descriptivetype: string;
170
+ answers: {
171
+ answer: string;
172
+ sopFlag: boolean;
173
+ validation: boolean;
174
+ validationType: string;
175
+ validationAnswer: string;
176
+ referenceImage: string;
177
+ showLinked: boolean;
178
+ linkedQuestion: number;
179
+ descriptivetype: string;
180
+ nestedQuestion: never[];
181
+ }[];
182
+ };
183
+ export declare const date_question_template: {
184
+ qname: string;
185
+ answerType: string;
186
+ runAI: boolean;
187
+ runAIDescription: string;
188
+ allowUploadfromGallery: boolean;
189
+ linkType: boolean;
190
+ questionReferenceImage: string;
191
+ answers: {
192
+ answer: string;
193
+ sopFlag: boolean;
194
+ validation: boolean;
195
+ validationType: string;
196
+ validationAnswer: string;
197
+ referenceImage: string;
198
+ showLinked: boolean;
199
+ linkedQuestion: number;
200
+ nestedQuestion: never[];
201
+ }[];
202
+ };
203
+ export declare const linearscale_question_template: {
204
+ qname: string;
205
+ answerType: string;
206
+ runAI: boolean;
207
+ runAIDescription: string;
208
+ allowUploadfromGallery: boolean;
209
+ linkType: boolean;
210
+ questionReferenceImage: string;
211
+ answers: {
212
+ answer: string;
213
+ sopFlag: boolean;
214
+ validation: boolean;
215
+ validationType: string;
216
+ validationAnswer: string;
217
+ referenceImage: string;
218
+ showLinked: boolean;
219
+ linkedQuestion: number;
220
+ rangeStart: number;
221
+ rangeEnd: number;
222
+ nestedQuestion: never[];
223
+ }[];
224
+ };
225
+ export declare const time_question_template: {
226
+ qname: string;
227
+ answerType: string;
228
+ runAI: boolean;
229
+ runAIDescription: string;
230
+ allowUploadfromGallery: boolean;
231
+ linkType: boolean;
232
+ questionReferenceImage: string;
233
+ answers: {
234
+ answer: string;
235
+ sopFlag: boolean;
236
+ validation: boolean;
237
+ validationType: string;
238
+ validationAnswer: string;
239
+ referenceImage: string;
240
+ showLinked: boolean;
241
+ linkedQuestion: number;
242
+ nestedQuestion: never[];
243
+ }[];
244
+ };
@@ -0,0 +1,147 @@
1
+ import { FormGroup, FormArray, FormControl } from '@angular/forms';
2
+ export type AnswerType = 'descriptive' | 'yes/no' | 'multiplechoicesingle' | 'multiplechoicemultiple' | 'descriptiveImage' | 'image' | 'video' | 'multipleImage' | 'date' | 'linearscale' | 'time';
3
+ export type DescriptiveType = 'text' | 'number' | '';
4
+ export type ValidationType = 'Capture Image' | 'Descriptive Answer' | 'Capture Video' | '';
5
+ export interface ITask {
6
+ alert: {
7
+ usageExceeds: any | null;
8
+ alertsTo: any[];
9
+ };
10
+ _id: string;
11
+ type: string;
12
+ checkListNumber: number;
13
+ checkListName: string;
14
+ checkListDescription: string;
15
+ createdBy: string;
16
+ createdByName: string;
17
+ publish: boolean;
18
+ schedule: string;
19
+ scheduleRepeatedDay: string[];
20
+ scheduleStartTime: string;
21
+ scheduleEndTime: string;
22
+ configStartDate: string | null;
23
+ configEndDate: string | null;
24
+ specificDate: string[];
25
+ scheduleWeekDays: string[];
26
+ scheduleRepeatedMonthSetup: string;
27
+ scheduleRepeatedMonthDate: string;
28
+ allowedOverTime: boolean;
29
+ allowedStoreLocation: boolean;
30
+ detectionArea: any[];
31
+ client_id: string;
32
+ questionCount: number;
33
+ storeCount: number;
34
+ checkListType: string;
35
+ isdeleted: boolean;
36
+ markasread: boolean;
37
+ allowedMultiSubmit: boolean;
38
+ allowOnce: boolean;
39
+ scheduleRepeatedMonthWeek: string;
40
+ scheduleRepeatedType: string;
41
+ scheduleDate: string | null;
42
+ createdAt: string;
43
+ updatedAt: string;
44
+ locationCount: number;
45
+ publishDate: string;
46
+ scheduleEndTimeISO: string;
47
+ scheduleStartTimeISO: string;
48
+ assignedUsers: any[];
49
+ removedUsers: any[];
50
+ sections: Section[];
51
+ }
52
+ export interface Section {
53
+ id: string;
54
+ name: string;
55
+ questions: Question[];
56
+ }
57
+ export interface Question {
58
+ qno?: number;
59
+ qname: string;
60
+ answerType: AnswerType;
61
+ runAI: boolean;
62
+ runAIDescription: string;
63
+ allowUploadfromGallery: boolean;
64
+ linkType: boolean;
65
+ questionReferenceImage: string;
66
+ answers: Answer[];
67
+ descriptivetype?: DescriptiveType;
68
+ }
69
+ export interface Answer {
70
+ answer: string;
71
+ answeroptionNumber?: number;
72
+ sopFlag: boolean;
73
+ validation: boolean;
74
+ validationType: ValidationType;
75
+ referenceImage: string;
76
+ showLinked: boolean;
77
+ linkedQuestion: number;
78
+ nestedQuestion: any[];
79
+ validationAnswer?: string;
80
+ allowUploadfromGallery?: boolean;
81
+ runAI?: boolean;
82
+ rangeStart?: number;
83
+ rangeEnd?: number;
84
+ descriptivetype?: DescriptiveType;
85
+ }
86
+ export interface TaskForm {
87
+ checklistName: FormControl<string | null>;
88
+ checklistDescription: FormControl<string | null>;
89
+ sections: FormArray<FormGroup<SectionForm>>;
90
+ }
91
+ export interface SectionForm {
92
+ id: FormControl<string | null>;
93
+ name: FormControl<string | null>;
94
+ questions: FormArray<FormGroup<QuestionForm>>;
95
+ }
96
+ export interface QuestionForm {
97
+ qno: FormControl<number | null>;
98
+ qname: FormControl<string | null>;
99
+ answerType: FormControl<AnswerType | null>;
100
+ runAI: FormControl<boolean | null>;
101
+ runAIDescription: FormControl<string | null>;
102
+ allowUploadfromGallery: FormControl<boolean | null>;
103
+ linkType: FormControl<boolean | null>;
104
+ questionReferenceImage: FormControl<string | null>;
105
+ descriptivetype?: FormControl<DescriptiveType | null>;
106
+ answers: FormArray<FormGroup<AnswerForm>>;
107
+ }
108
+ export interface AnswerForm {
109
+ answer: FormControl<string | null>;
110
+ answeroptionNumber: FormControl<number | null>;
111
+ sopFlag: FormControl<boolean | null>;
112
+ validation: FormControl<boolean | null>;
113
+ validationType: FormControl<ValidationType | null>;
114
+ referenceImage: FormControl<string | null>;
115
+ showLinked: FormControl<boolean | null>;
116
+ linkedQuestion: FormControl<number | null>;
117
+ nestedQuestion: FormControl<any | null>;
118
+ validationAnswer?: FormControl<string | null>;
119
+ descriptivetype?: FormControl<DescriptiveType | null>;
120
+ allowUploadfromGallery?: FormControl<boolean | null>;
121
+ runAI?: FormControl<boolean | null>;
122
+ rangeStart?: FormControl<number | null>;
123
+ rangeEnd?: FormControl<number | null>;
124
+ }
125
+ interface DateRange {
126
+ startDate: string;
127
+ endDate: string;
128
+ }
129
+ interface Store {
130
+ storeId: string;
131
+ storeName: string;
132
+ checked: boolean;
133
+ }
134
+ interface Group {
135
+ city: string;
136
+ checked: boolean;
137
+ }
138
+ export interface HeaderFilter {
139
+ client: string;
140
+ clientName: string;
141
+ clients: string[];
142
+ store: null | string;
143
+ date: DateRange;
144
+ stores: Store[];
145
+ group: Group[];
146
+ }
147
+ export {};
@@ -65,6 +65,9 @@ export declare class GalleryComponent implements OnInit, OnDestroy {
65
65
  environment: any;
66
66
  showflag: boolean;
67
67
  selectedSection: any;
68
+ tempselectedSection: any;
69
+ showmulti: boolean;
70
+ showsingle: boolean;
68
71
  previewType: any;
69
72
  checkListDescription: any;
70
73
  constructor(fb: FormBuilder, gs: GlobalStateService, traxService: TraxService, cd: ChangeDetectorRef, modalService: NgbModal, route: ActivatedRoute, router: Router, toastService: ToastService, location: Location, pageInfo: PageInfoService);
@@ -78,7 +81,6 @@ export declare class GalleryComponent implements OnInit, OnDestroy {
78
81
  resetValidation(): void;
79
82
  onStartDateChange(event: any): void;
80
83
  selectAllStore(event: any): void;
81
- datashow: boolean;
82
84
  updateCheck(event: any, storedata: any): void;
83
85
  createForm(): void;
84
86
  datechange(event: TimePeriod): void;
@@ -120,7 +122,9 @@ export declare class GalleryComponent implements OnInit, OnDestroy {
120
122
  questionscount(data: any): number;
121
123
  setExportAsPPT(type: any, fileType: any): void;
122
124
  reset(): void;
123
- addTask(type: any): void;
125
+ addTask(type: any, data: any): void;
126
+ selectedTask: any;
127
+ taskTab(task: any): void;
124
128
  static ɵfac: i0.ɵɵFactoryDeclaration<GalleryComponent, never>;
125
129
  static ɵcmp: i0.ɵɵComponentDeclaration<GalleryComponent, "lib-gallery", never, {}, {}, never, never, false, never>;
126
130
  }
@@ -0,0 +1,40 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class TaskLogsComponent {
3
+ viewTicketData: ({
4
+ actionType: string;
5
+ IdentifiedBy: string;
6
+ timeStamp: string;
7
+ actionBy: string;
8
+ attachments: never[];
9
+ reasons: {
10
+ primaryIssue: string;
11
+ secondaryIssue: {
12
+ name: string;
13
+ _id: string;
14
+ }[];
15
+ _id: string;
16
+ }[];
17
+ _id: string;
18
+ statusCheckAlertTime?: undefined;
19
+ } | {
20
+ statusCheckAlertTime: string;
21
+ actionType: string;
22
+ IdentifiedBy: string;
23
+ timeStamp: string;
24
+ actionBy: string;
25
+ attachments: never[];
26
+ reasons: never[];
27
+ _id: string;
28
+ } | {
29
+ actionType: string;
30
+ timeStamp: string;
31
+ actionBy: string;
32
+ attachments: never[];
33
+ reasons: never[];
34
+ _id: string;
35
+ IdentifiedBy?: undefined;
36
+ statusCheckAlertTime?: undefined;
37
+ })[];
38
+ static ɵfac: i0.ɵɵFactoryDeclaration<TaskLogsComponent, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<TaskLogsComponent, "lib-task-logs", never, {}, {}, never, never, false, never>;
40
+ }
@@ -35,15 +35,16 @@ import * as i33 from "./components/task-info/taskinfo-edit/taskinfo-edit.compone
35
35
  import * as i34 from "./components/action-centre/action-centre.component";
36
36
  import * as i35 from "./components/group-select/group-select.component";
37
37
  import * as i36 from "./components/add-task/add-task.component";
38
- import * as i37 from "@angular/common";
39
- import * as i38 from "./tango-analyse-trax-routing.module";
40
- import * as i39 from "tango-app-ui-shared";
41
- import * as i40 from "@angular/forms";
42
- import * as i41 from "@angular/cdk/drag-drop";
43
- import * as i42 from "ngx-daterangepicker-material";
44
- import * as i43 from "@ng-bootstrap/ng-bootstrap";
38
+ import * as i37 from "./components/task-logs/task-logs.component";
39
+ import * as i38 from "@angular/common";
40
+ import * as i39 from "./tango-analyse-trax-routing.module";
41
+ import * as i40 from "tango-app-ui-shared";
42
+ import * as i41 from "@angular/forms";
43
+ import * as i42 from "@angular/cdk/drag-drop";
44
+ import * as i43 from "ngx-daterangepicker-material";
45
+ import * as i44 from "@ng-bootstrap/ng-bootstrap";
45
46
  export declare class TangoAnalyseTraxModule {
46
47
  static ɵfac: i0.ɵɵFactoryDeclaration<TangoAnalyseTraxModule, never>;
47
- static ɵmod: i0.ɵɵNgModuleDeclaration<TangoAnalyseTraxModule, [typeof i1.TangoAnalyseTraxComponent, typeof i2.ChecklistComponent, typeof i3.AddChecklistComponent, typeof i4.TraxpopupComponent, typeof i5.ChecklistConfigureComponent, typeof i6.GalleryComponent, typeof i7.ReactiveSelectComponent, typeof i8.DashboardComponent, typeof i9.DashboardInfoComponent, typeof i7.ReactiveSelectComponent, typeof i10.FlagsComponent, typeof i11.FlagsInfoComponent, typeof i12.UnattendedPieChartComponent, typeof i13.MonthlyperformanceDatepickerComponent, typeof i14.TraxStoreComponent, typeof i15.MultiDateDatepickerComponent, typeof i16.PaginationComponent, typeof i17.ChipDropdownComponent, typeof i18.ReportsComponent, typeof i19.ManagechecklistComponent, typeof i20.ChecklistlayoutComponent, typeof i21.FlagLayoutComponent, typeof i22.DashboardLayoutComponent, typeof i23.CustomSelectComponent, typeof i24.OrdersComponent, typeof i25.ExportGalleryComponent, typeof i26.DatePickerComponent, typeof i27.CreateTaskComponent, typeof i28.TaskConfigureComponent, typeof i29.ActivityLogComponent, typeof i30.TaskComponent, typeof i31.TaskInfoComponent, typeof i32.TaskLayoutComponent, typeof i33.TaskinfoEditComponent, typeof i34.ActionCentreComponent, typeof i35.GroupSelectComponent, typeof i36.AddTaskComponent], [typeof i37.CommonModule, typeof i38.TangoAnalyseTraxRoutingModule, typeof i39.CommonSharedModule, typeof i40.FormsModule, typeof i41.DragDropModule, typeof i40.ReactiveFormsModule, typeof i42.NgxDaterangepickerMd, typeof i43.NgbTooltipModule, typeof i43.NgbModule, typeof i43.NgbAccordionModule], never>;
48
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TangoAnalyseTraxModule, [typeof i1.TangoAnalyseTraxComponent, typeof i2.ChecklistComponent, typeof i3.AddChecklistComponent, typeof i4.TraxpopupComponent, typeof i5.ChecklistConfigureComponent, typeof i6.GalleryComponent, typeof i7.ReactiveSelectComponent, typeof i8.DashboardComponent, typeof i9.DashboardInfoComponent, typeof i7.ReactiveSelectComponent, typeof i10.FlagsComponent, typeof i11.FlagsInfoComponent, typeof i12.UnattendedPieChartComponent, typeof i13.MonthlyperformanceDatepickerComponent, typeof i14.TraxStoreComponent, typeof i15.MultiDateDatepickerComponent, typeof i16.PaginationComponent, typeof i17.ChipDropdownComponent, typeof i18.ReportsComponent, typeof i19.ManagechecklistComponent, typeof i20.ChecklistlayoutComponent, typeof i21.FlagLayoutComponent, typeof i22.DashboardLayoutComponent, typeof i23.CustomSelectComponent, typeof i24.OrdersComponent, typeof i25.ExportGalleryComponent, typeof i26.DatePickerComponent, typeof i27.CreateTaskComponent, typeof i28.TaskConfigureComponent, typeof i29.ActivityLogComponent, typeof i30.TaskComponent, typeof i31.TaskInfoComponent, typeof i32.TaskLayoutComponent, typeof i33.TaskinfoEditComponent, typeof i34.ActionCentreComponent, typeof i35.GroupSelectComponent, typeof i36.AddTaskComponent, typeof i37.TaskLogsComponent], [typeof i38.CommonModule, typeof i39.TangoAnalyseTraxRoutingModule, typeof i40.CommonSharedModule, typeof i41.FormsModule, typeof i42.DragDropModule, typeof i41.ReactiveFormsModule, typeof i43.NgxDaterangepickerMd, typeof i44.NgbTooltipModule, typeof i44.NgbModule, typeof i44.NgbAccordionModule], never>;
48
49
  static ɵinj: i0.ɵɵInjectorDeclaration<TangoAnalyseTraxModule>;
49
50
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-ui-analyse-trax",
3
- "version": "3.3.1-alpha-task.65",
3
+ "version": "3.3.1-alpha-task.66",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0"