fw-webbuilder 1.1.284 → 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 +5 -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>;
|
|
@@ -1245,6 +1246,7 @@ declare class WbLinkPageConfig implements OnInit, OnChanges {
|
|
|
1245
1246
|
initSelectedPage(): void;
|
|
1246
1247
|
onSelectPage(pageId: string): void;
|
|
1247
1248
|
getPages(): void;
|
|
1249
|
+
getBlockName(item: any): string;
|
|
1248
1250
|
getBlocks(pageId?: string): void;
|
|
1249
1251
|
updateClass(): void;
|
|
1250
1252
|
updateConfig(): void;
|
|
@@ -3045,6 +3047,9 @@ declare class ManageImgsComponent implements OnInit {
|
|
|
3045
3047
|
typeImgs: any;
|
|
3046
3048
|
typeVideos: any;
|
|
3047
3049
|
typeFiles: any;
|
|
3050
|
+
isImg(extension: string): boolean;
|
|
3051
|
+
isVideo(extension: string): boolean;
|
|
3052
|
+
isDocFile(extension: string): boolean;
|
|
3048
3053
|
constructor(webbuilderService: webBuilderService, msg: NzMessageService, translate: TranslateService, modal: NzModalService, modalRef: NzModalRef<ManageImgsComponent>);
|
|
3049
3054
|
ngOnInit(): void;
|
|
3050
3055
|
getFiles(): void;
|