tango-app-ui-analyse-trax 3.7.20 → 3.7.22
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/gallery/gallery.component.mjs +26 -3
- package/esm2022/lib/components/tango-analyse-trax/tango-analyse-trax.component.mjs +3 -3
- package/fesm2022/tango-app-ui-analyse-trax.mjs +28 -5
- package/fesm2022/tango-app-ui-analyse-trax.mjs.map +1 -1
- package/lib/components/add-checklist/add-checklist.component.d.ts +1 -1
- package/lib/components/gallery/gallery.component.d.ts +4 -0
- package/package.json +1 -1
|
@@ -87,7 +87,7 @@ export declare class AddChecklistComponent implements OnInit, OnDestroy {
|
|
|
87
87
|
getFormArrayQuestionsAnswer(sectionIndex: number, questionIndex: number, formArrayName: string, ansIndex?: number, linkquestionIndex?: number): FormArray<any>;
|
|
88
88
|
getFormArrayLinkedQuestions(sectionIndex: number, questionIndex: number, answerIndex: number): FormArray<any>;
|
|
89
89
|
getQuestionsFormArrayValues(sectionIndex: number): any[];
|
|
90
|
-
getAnswerFormGroup_FormControl(sectionIndex: number, questionIndex: number, formControlName: string, ansIdx?: number):
|
|
90
|
+
getAnswerFormGroup_FormControl(sectionIndex: number, questionIndex: number, formControlName: string, ansIdx?: number): FormControl<any> | FormArray<any> | null;
|
|
91
91
|
removedNestedQuestion(sectionindex: number, qno: any): void;
|
|
92
92
|
updateQuestionQnos(sectionindex: number): void;
|
|
93
93
|
getQuestionsAnswerFormGroup(sectionIndex: number, questionIndex: number, ansIndex: number): FormGroup<any>;
|
|
@@ -22,6 +22,8 @@ export declare class GalleryComponent implements OnInit, OnDestroy, AfterViewIni
|
|
|
22
22
|
private location;
|
|
23
23
|
private pageInfo;
|
|
24
24
|
private sanitizer;
|
|
25
|
+
isFullscreen: boolean;
|
|
26
|
+
fullscreenVideoElement: HTMLVideoElement | null;
|
|
25
27
|
dayjs: typeof dayjs;
|
|
26
28
|
notifyCount: number;
|
|
27
29
|
selectedDateRange: any;
|
|
@@ -237,6 +239,8 @@ export declare class GalleryComponent implements OnInit, OnDestroy, AfterViewIni
|
|
|
237
239
|
keyValue: boolean;
|
|
238
240
|
};
|
|
239
241
|
getchecklistDetails(): void;
|
|
242
|
+
onFullscreenChange(): void;
|
|
243
|
+
isVideoFullscreen(videoElement: HTMLVideoElement | null | undefined): boolean;
|
|
240
244
|
static ɵfac: i0.ɵɵFactoryDeclaration<GalleryComponent, never>;
|
|
241
245
|
static ɵcmp: i0.ɵɵComponentDeclaration<GalleryComponent, "lib-gallery", never, {}, {}, never, never, false, never>;
|
|
242
246
|
}
|