fw-webbuilder 1.1.285 → 1.1.286
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/fesm2022/fw-webbuilder.mjs +1 -1
- package/index.d.ts +4 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -462,6 +462,7 @@ declare class webBuilderService {
|
|
|
462
462
|
getDashboard(startDate: string, endDate: string): Promise<Object>;
|
|
463
463
|
private getVisitorId;
|
|
464
464
|
changeTemplate(db: string, id_template: string): Promise<Object>;
|
|
465
|
+
moveToTemplate(id_project: string, data?: any): Promise<Object>;
|
|
465
466
|
pasteFormatStyle(item: any): void;
|
|
466
467
|
exportProjectBackup(type: 'template' | 'content'): Promise<any>;
|
|
467
468
|
importProjectBackup(file: File): Promise<any>;
|
|
@@ -3046,6 +3047,9 @@ declare class ManageImgsComponent implements OnInit {
|
|
|
3046
3047
|
typeImgs: any;
|
|
3047
3048
|
typeVideos: any;
|
|
3048
3049
|
typeFiles: any;
|
|
3050
|
+
isImg(extension: string): boolean;
|
|
3051
|
+
isVideo(extension: string): boolean;
|
|
3052
|
+
isDocFile(extension: string): boolean;
|
|
3049
3053
|
constructor(webbuilderService: webBuilderService, msg: NzMessageService, translate: TranslateService, modal: NzModalService, modalRef: NzModalRef<ManageImgsComponent>);
|
|
3050
3054
|
ngOnInit(): void;
|
|
3051
3055
|
getFiles(): void;
|