fw-webbuilder 1.1.214 → 1.1.215
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 +4 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1578,9 +1578,11 @@ declare class WbFrameBlank implements OnInit {
|
|
|
1578
1578
|
refPosBounding: any;
|
|
1579
1579
|
scrollbarEle: any;
|
|
1580
1580
|
dataClone: any;
|
|
1581
|
+
animationSub: any;
|
|
1581
1582
|
constructor(webBuilderService: webBuilderService, map: ComponentMapService, el: ElementRef);
|
|
1582
1583
|
ngOnInit(): void;
|
|
1583
1584
|
ngAfterViewInit(): void;
|
|
1585
|
+
updateAnimation(): void;
|
|
1584
1586
|
updateDataClone(): void;
|
|
1585
1587
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1586
1588
|
ngOnDestroy(): void;
|
|
@@ -2333,8 +2335,10 @@ declare class WbText implements OnInit {
|
|
|
2333
2335
|
isEditingContent: boolean;
|
|
2334
2336
|
editedContent: string;
|
|
2335
2337
|
editingHeight: string;
|
|
2338
|
+
animationSub: any;
|
|
2336
2339
|
constructor(webBuilderService: webBuilderService, router: Router, authService: AuthService, cart: CartService, translate: TranslateService, el: ElementRef);
|
|
2337
2340
|
ngOnInit(): void;
|
|
2341
|
+
updateAnimation(): void;
|
|
2338
2342
|
updateDataClone(): void;
|
|
2339
2343
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2340
2344
|
onClick(e: any): void;
|