fw-webbuilder 1.1.209 → 1.1.210
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 -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;
|
|
@@ -1675,6 +1675,8 @@ declare class WbFrameProductDetail implements OnInit {
|
|
|
1675
1675
|
webBuilderService: webBuilderService;
|
|
1676
1676
|
private route;
|
|
1677
1677
|
map: ComponentMapService;
|
|
1678
|
+
private titleService;
|
|
1679
|
+
private metaService;
|
|
1678
1680
|
data: any;
|
|
1679
1681
|
device: any;
|
|
1680
1682
|
class: any;
|
|
@@ -1683,10 +1685,11 @@ declare class WbFrameProductDetail implements OnInit {
|
|
|
1683
1685
|
type: any;
|
|
1684
1686
|
product: any;
|
|
1685
1687
|
loading: boolean;
|
|
1686
|
-
constructor(webBuilderService: webBuilderService, route: ActivatedRoute, map: ComponentMapService);
|
|
1688
|
+
constructor(webBuilderService: webBuilderService, route: ActivatedRoute, map: ComponentMapService, titleService: Title, metaService: Meta);
|
|
1687
1689
|
ngOnInit(): void;
|
|
1688
1690
|
updateDataClone(): void;
|
|
1689
1691
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1692
|
+
updateSEO(productDetail: any): void;
|
|
1690
1693
|
handleGetProduct(): void;
|
|
1691
1694
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbFrameProductDetail, never>;
|
|
1692
1695
|
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>;
|