fw-webbuilder 1.1.219 → 1.1.220
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 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -122,6 +122,8 @@ declare class webBuilderService {
|
|
|
122
122
|
FONTS: any;
|
|
123
123
|
ctrlZ: any;
|
|
124
124
|
ctrlY: any;
|
|
125
|
+
productDetail: any;
|
|
126
|
+
categoryDetail: any;
|
|
125
127
|
constructor(http: HttpClient, socketService: SocketService);
|
|
126
128
|
closeConnection(): void;
|
|
127
129
|
onNotifyChange(callback: (data: any) => void): any;
|
|
@@ -1885,8 +1887,8 @@ declare class WbFrameProductsByCategory implements OnInit, OnDestroy, DoCheck {
|
|
|
1885
1887
|
updateDataClone(): void;
|
|
1886
1888
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1887
1889
|
ngOnDestroy(): void;
|
|
1888
|
-
ngDoCheck(): void;
|
|
1889
1890
|
handleGetProduct(): void;
|
|
1891
|
+
ngDoCheck(): void;
|
|
1890
1892
|
calcProducts(): void;
|
|
1891
1893
|
gotoPreviousPage(): void;
|
|
1892
1894
|
gotoNextPage(): void;
|
|
@@ -2109,6 +2111,8 @@ declare class WbBreadcumb implements OnInit {
|
|
|
2109
2111
|
product: any;
|
|
2110
2112
|
segments: any;
|
|
2111
2113
|
pageName: string;
|
|
2114
|
+
itemName: string;
|
|
2115
|
+
routeSub?: Subscription;
|
|
2112
2116
|
constructor(route: ActivatedRoute, webBuilderService: webBuilderService);
|
|
2113
2117
|
ngOnInit(): void;
|
|
2114
2118
|
updateDataClone(): void;
|