fw-webbuilder 1.1.209 → 1.1.211
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 +6 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -10,8 +10,8 @@ import { NzModalRef, NzModalService } from 'ng-zorro-antd/modal';
|
|
|
10
10
|
import { TranslateService } from '@ngx-translate/core';
|
|
11
11
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
12
12
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
13
|
+
import { Title, Meta, SafeHtml, SafeUrl, DomSanitizer } from '@angular/platform-browser';
|
|
13
14
|
import { NzTableQueryParams } from 'ng-zorro-antd/table';
|
|
14
|
-
import { SafeHtml, SafeUrl, DomSanitizer } from '@angular/platform-browser';
|
|
15
15
|
|
|
16
16
|
declare class SocketService {
|
|
17
17
|
private apiUrl;
|
|
@@ -375,6 +375,7 @@ declare class webBuilderService {
|
|
|
375
375
|
generateAndWait(requestUrl: string): Observable<any>;
|
|
376
376
|
getProjectsByIdUser(query: any, sort: any, page: any, limit: any): Promise<any>;
|
|
377
377
|
updateExpiredAt(id_project: string, expired_at: string): Promise<any>;
|
|
378
|
+
getDashboard(startDate: string, endDate: string): Promise<Object>;
|
|
378
379
|
static ɵfac: i0.ɵɵFactoryDeclaration<webBuilderService, never>;
|
|
379
380
|
static ɵprov: i0.ɵɵInjectableDeclaration<webBuilderService>;
|
|
380
381
|
}
|
|
@@ -1675,6 +1676,8 @@ declare class WbFrameProductDetail implements OnInit {
|
|
|
1675
1676
|
webBuilderService: webBuilderService;
|
|
1676
1677
|
private route;
|
|
1677
1678
|
map: ComponentMapService;
|
|
1679
|
+
private titleService;
|
|
1680
|
+
private metaService;
|
|
1678
1681
|
data: any;
|
|
1679
1682
|
device: any;
|
|
1680
1683
|
class: any;
|
|
@@ -1683,10 +1686,11 @@ declare class WbFrameProductDetail implements OnInit {
|
|
|
1683
1686
|
type: any;
|
|
1684
1687
|
product: any;
|
|
1685
1688
|
loading: boolean;
|
|
1686
|
-
constructor(webBuilderService: webBuilderService, route: ActivatedRoute, map: ComponentMapService);
|
|
1689
|
+
constructor(webBuilderService: webBuilderService, route: ActivatedRoute, map: ComponentMapService, titleService: Title, metaService: Meta);
|
|
1687
1690
|
ngOnInit(): void;
|
|
1688
1691
|
updateDataClone(): void;
|
|
1689
1692
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1693
|
+
updateSEO(productDetail: any): void;
|
|
1690
1694
|
handleGetProduct(): void;
|
|
1691
1695
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbFrameProductDetail, never>;
|
|
1692
1696
|
static ɵcmp: i0.ɵɵComponentDeclaration<WbFrameProductDetail, "wb-frame-product-detail", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "class": { "alias": "class"; "required": false; }; "config": { "alias": "config"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "type": { "alias": "type"; "required": false; }; "product": { "alias": "product"; "required": false; }; }, {}, never, never, true, never>;
|