fw-webbuilder 1.1.208 → 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 +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;
|
|
@@ -947,6 +947,7 @@ declare class WbFixedConfig implements OnInit {
|
|
|
947
947
|
ngOnInit(): void;
|
|
948
948
|
updateClass(): void;
|
|
949
949
|
updateConfig(): void;
|
|
950
|
+
updateConfigAndClass(): void;
|
|
950
951
|
onChangePosition(): void;
|
|
951
952
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbFixedConfig, never>;
|
|
952
953
|
static ɵcmp: i0.ɵɵComponentDeclaration<WbFixedConfig, "wb-fixed-config", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "classFixed": { "alias": "classFixed"; "required": false; }; "configFixed": { "alias": "configFixed"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -1674,6 +1675,8 @@ declare class WbFrameProductDetail implements OnInit {
|
|
|
1674
1675
|
webBuilderService: webBuilderService;
|
|
1675
1676
|
private route;
|
|
1676
1677
|
map: ComponentMapService;
|
|
1678
|
+
private titleService;
|
|
1679
|
+
private metaService;
|
|
1677
1680
|
data: any;
|
|
1678
1681
|
device: any;
|
|
1679
1682
|
class: any;
|
|
@@ -1682,10 +1685,11 @@ declare class WbFrameProductDetail implements OnInit {
|
|
|
1682
1685
|
type: any;
|
|
1683
1686
|
product: any;
|
|
1684
1687
|
loading: boolean;
|
|
1685
|
-
constructor(webBuilderService: webBuilderService, route: ActivatedRoute, map: ComponentMapService);
|
|
1688
|
+
constructor(webBuilderService: webBuilderService, route: ActivatedRoute, map: ComponentMapService, titleService: Title, metaService: Meta);
|
|
1686
1689
|
ngOnInit(): void;
|
|
1687
1690
|
updateDataClone(): void;
|
|
1688
1691
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1692
|
+
updateSEO(productDetail: any): void;
|
|
1689
1693
|
handleGetProduct(): void;
|
|
1690
1694
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbFrameProductDetail, never>;
|
|
1691
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>;
|