fw-webbuilder 1.1.220 → 1.1.221
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 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1578,16 +1578,18 @@ declare class WbFrameBlank implements OnInit {
|
|
|
1578
1578
|
rectTop: number;
|
|
1579
1579
|
height: number;
|
|
1580
1580
|
bottomParent: number;
|
|
1581
|
-
oldMarginTop:
|
|
1581
|
+
oldMarginTop: any;
|
|
1582
|
+
oldMarginLeft: any;
|
|
1582
1583
|
refPosBounding: any;
|
|
1583
1584
|
scrollbarEle: any;
|
|
1584
1585
|
dataClone: any;
|
|
1586
|
+
placeholderEle: HTMLDivElement | null;
|
|
1585
1587
|
animationSub: any;
|
|
1586
1588
|
constructor(webBuilderService: webBuilderService, map: ComponentMapService, el: ElementRef);
|
|
1587
1589
|
ngOnInit(): void;
|
|
1588
1590
|
ngAfterViewInit(): void;
|
|
1589
|
-
updateAnimation(): void;
|
|
1590
1591
|
updateDataClone(): void;
|
|
1592
|
+
updateAnimation(): void;
|
|
1591
1593
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1592
1594
|
ngOnDestroy(): void;
|
|
1593
1595
|
handleScroll: (e: Event) => void;
|