fw-webbuilder 1.1.260 → 1.1.261
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 +7 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -697,8 +697,11 @@ declare class WbDragDrop implements OnInit {
|
|
|
697
697
|
parentEleRect: any;
|
|
698
698
|
keyPosition: string;
|
|
699
699
|
private isDragging;
|
|
700
|
+
private resizeGuideX;
|
|
701
|
+
private resizeGuideY;
|
|
700
702
|
private mouseMoveListener;
|
|
701
703
|
private mouseUpListener;
|
|
704
|
+
private getSnapTargets;
|
|
702
705
|
updateMinHeightSub: any;
|
|
703
706
|
constructor(webBuilderService: webBuilderService, el: ElementRef, renderer: Renderer2);
|
|
704
707
|
ngOnInit(): void;
|
|
@@ -725,6 +728,7 @@ declare class WbDragDrop implements OnInit {
|
|
|
725
728
|
private createOrUpdateGuideLines;
|
|
726
729
|
private updateGapBadges;
|
|
727
730
|
private clearGapBadges;
|
|
731
|
+
private clearGuideLines;
|
|
728
732
|
private removeGuideLines;
|
|
729
733
|
private onMouseUp;
|
|
730
734
|
ngOnDestroy(): void;
|
|
@@ -3011,8 +3015,11 @@ declare class WbMapConfig implements OnInit {
|
|
|
3011
3015
|
data: any;
|
|
3012
3016
|
device: any;
|
|
3013
3017
|
configIframeCode: any;
|
|
3018
|
+
isVisibleGuide: boolean;
|
|
3014
3019
|
constructor(webBuilderService: webBuilderService);
|
|
3015
3020
|
ngOnInit(): void;
|
|
3021
|
+
openGuideModal(): void;
|
|
3022
|
+
closeGuideModal(): void;
|
|
3016
3023
|
updateConfig(): void;
|
|
3017
3024
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbMapConfig, never>;
|
|
3018
3025
|
static ɵcmp: i0.ɵɵComponentDeclaration<WbMapConfig, "wb-map-config", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "configIframeCode": { "alias": "configIframeCode"; "required": false; }; }, {}, never, never, true, never>;
|