fw-webbuilder 1.1.233 → 1.1.235
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 +9 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -369,6 +369,7 @@ declare class webBuilderService {
|
|
|
369
369
|
private getVisitorId;
|
|
370
370
|
addAdminUser(data: any): Promise<any>;
|
|
371
371
|
changeTemplate(db: string, id_template: string): Promise<Object>;
|
|
372
|
+
getDetailNews_byLink(link: string): Promise<any>;
|
|
372
373
|
static ɵfac: i0.ɵɵFactoryDeclaration<webBuilderService, never>;
|
|
373
374
|
static ɵprov: i0.ɵɵInjectableDeclaration<webBuilderService>;
|
|
374
375
|
}
|
|
@@ -1749,12 +1750,13 @@ declare class WbFrameProductDetailConfig implements OnInit {
|
|
|
1749
1750
|
static ɵcmp: i0.ɵɵComponentDeclaration<WbFrameProductDetailConfig, "wb-frame-product-detail-config", 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; }; }, {}, never, never, true, never>;
|
|
1750
1751
|
}
|
|
1751
1752
|
|
|
1752
|
-
declare class WbFrameProducts implements OnInit, DoCheck {
|
|
1753
|
+
declare class WbFrameProducts implements OnInit, DoCheck, OnDestroy {
|
|
1753
1754
|
webBuilderService: webBuilderService;
|
|
1754
1755
|
functionService: FunctionService;
|
|
1755
1756
|
elementRef: ElementRef;
|
|
1756
1757
|
authService: AuthService;
|
|
1757
1758
|
map: ComponentMapService;
|
|
1759
|
+
private route;
|
|
1758
1760
|
data: any;
|
|
1759
1761
|
device: any;
|
|
1760
1762
|
class: any;
|
|
@@ -1788,7 +1790,8 @@ declare class WbFrameProducts implements OnInit, DoCheck {
|
|
|
1788
1790
|
oldCols: number;
|
|
1789
1791
|
oldRows: number;
|
|
1790
1792
|
autoSlideInterval: any;
|
|
1791
|
-
|
|
1793
|
+
routeSub: any;
|
|
1794
|
+
constructor(webBuilderService: webBuilderService, functionService: FunctionService, elementRef: ElementRef, authService: AuthService, map: ComponentMapService, route: ActivatedRoute);
|
|
1792
1795
|
ngOnInit(): void;
|
|
1793
1796
|
updateDataClone(): void;
|
|
1794
1797
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -2340,6 +2343,7 @@ declare class WbLineConfig implements OnInit {
|
|
|
2340
2343
|
declare class WbText implements OnInit {
|
|
2341
2344
|
webBuilderService: webBuilderService;
|
|
2342
2345
|
private router;
|
|
2346
|
+
private route;
|
|
2343
2347
|
private authService;
|
|
2344
2348
|
private cart;
|
|
2345
2349
|
private translate;
|
|
@@ -2358,7 +2362,9 @@ declare class WbText implements OnInit {
|
|
|
2358
2362
|
editedContent: string;
|
|
2359
2363
|
editingHeight: string;
|
|
2360
2364
|
animationSub: any;
|
|
2361
|
-
|
|
2365
|
+
routeSub: any;
|
|
2366
|
+
currentTag: string;
|
|
2367
|
+
constructor(webBuilderService: webBuilderService, router: Router, route: ActivatedRoute, authService: AuthService, cart: CartService, translate: TranslateService, el: ElementRef);
|
|
2362
2368
|
ngOnInit(): void;
|
|
2363
2369
|
updateAnimation(): void;
|
|
2364
2370
|
updateDataClone(): void;
|