ctt-babylon 0.23.6 → 0.23.7
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/core/babylon-lis-c2-img-vid-dl/babylon-lis-c2-img-vid-dl.component.mjs +162 -0
- package/esm2022/lib/components/core/babylon-lis-c2-img-vid-dl/index.mjs +2 -0
- package/esm2022/lib/components/core/index.mjs +2 -1
- package/fesm2022/ctt-babylon.mjs +155 -1
- package/fesm2022/ctt-babylon.mjs.map +1 -1
- package/lib/components/core/babylon-lis-c2-img-vid-dl/babylon-lis-c2-img-vid-dl.component.d.ts +37 -0
- package/lib/components/core/babylon-lis-c2-img-vid-dl/index.d.ts +1 -0
- package/lib/components/core/index.d.ts +1 -0
- package/package.json +1 -1
package/lib/components/core/babylon-lis-c2-img-vid-dl/babylon-lis-c2-img-vid-dl.component.d.ts
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
3
|
+
import { Subject } from 'rxjs';
|
|
4
|
+
import { BabylonImageI, BabylonMultimediaI, BabylonTextInfoI } from '../../../interfaces';
|
|
5
|
+
import { HeadingTagUtils } from '../../../utils/heading-tag.utils';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class BabylonLisC2ImgVidDlComponent implements OnInit, OnDestroy {
|
|
8
|
+
private platformId;
|
|
9
|
+
private sanitizer;
|
|
10
|
+
headingTagUtils: typeof HeadingTagUtils;
|
|
11
|
+
texts?: BabylonTextInfoI;
|
|
12
|
+
title?: string;
|
|
13
|
+
imagesData: import("@angular/core").WritableSignal<BabylonImageI[]>;
|
|
14
|
+
imagesDisplayed: import("@angular/core").Signal<any[]>;
|
|
15
|
+
set multimedia(val: BabylonMultimediaI);
|
|
16
|
+
selectedIndices: import("@angular/core").WritableSignal<Set<number>>;
|
|
17
|
+
selectedCount: import("@angular/core").Signal<number>;
|
|
18
|
+
toggleSelection(index: number): void;
|
|
19
|
+
isSelected(index: number): boolean;
|
|
20
|
+
selectAll(): void;
|
|
21
|
+
deselectAll(): void;
|
|
22
|
+
downloadSelected(): Promise<void>;
|
|
23
|
+
destroy$: Subject<boolean>;
|
|
24
|
+
imagesModal: ElementRef<HTMLElement>;
|
|
25
|
+
activeModal: string | null;
|
|
26
|
+
clickedIndex: number;
|
|
27
|
+
constructor(platformId: object, sanitizer: DomSanitizer);
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
ngOnDestroy(): void;
|
|
30
|
+
openModal(name: string, index?: number): void;
|
|
31
|
+
goToSlide(index: number): void;
|
|
32
|
+
closeModal(name: string): void;
|
|
33
|
+
private syncBodyClasses;
|
|
34
|
+
private extractVideoUrl;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BabylonLisC2ImgVidDlComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BabylonLisC2ImgVidDlComponent, "lib-babylon-lis-c2-img-vid-dl", never, { "texts": { "alias": "texts"; "required": false; }; "title": { "alias": "title"; "required": false; }; "multimedia": { "alias": "multimedia"; "required": false; }; }, {}, never, never, true, never>;
|
|
37
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './babylon-lis-c2-img-vid-dl.component';
|