fw-webbuilder 1.1.256 → 1.1.257
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 +19 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Subject, Observable, Subscription } from 'rxjs';
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
|
-
import { OnInit, ElementRef, Renderer2, SimpleChanges,
|
|
4
|
+
import { OnInit, ElementRef, Renderer2, SimpleChanges, OnDestroy, DoCheck, ChangeDetectorRef, AfterViewInit, InjectionToken } from '@angular/core';
|
|
5
5
|
import { SocialAuthService } from '@abacritt/angularx-social-login';
|
|
6
6
|
import * as ng_zorro_antd_message from 'ng-zorro-antd/message';
|
|
7
7
|
import { NzMessageService } from 'ng-zorro-antd/message';
|
|
@@ -701,7 +701,14 @@ declare class WbDragDrop implements OnInit {
|
|
|
701
701
|
*/
|
|
702
702
|
updateInitBottomAndRight(): void;
|
|
703
703
|
onPointerDown(e: any): void;
|
|
704
|
+
private vGuideEle;
|
|
705
|
+
private hGuideEle;
|
|
706
|
+
private gapEles;
|
|
704
707
|
private onMouseMove;
|
|
708
|
+
private createOrUpdateGuideLines;
|
|
709
|
+
private updateGapBadges;
|
|
710
|
+
private clearGapBadges;
|
|
711
|
+
private removeGuideLines;
|
|
705
712
|
private onMouseUp;
|
|
706
713
|
ngOnDestroy(): void;
|
|
707
714
|
private cleanupListeners;
|
|
@@ -726,9 +733,10 @@ declare class WbDragDrop implements OnInit {
|
|
|
726
733
|
static ɵcmp: i0.ɵɵComponentDeclaration<WbDragDrop, "[wbdragdrop]", never, { "boundaryEle": { "alias": "boundaryEle"; "required": false; }; "parent": { "alias": "parent"; "required": false; }; "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "top": { "alias": "top"; "required": false; }; "left": { "alias": "left"; "required": false; }; "position": { "alias": "position"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
727
734
|
}
|
|
728
735
|
|
|
729
|
-
declare class WbVirtualSelected implements OnInit {
|
|
736
|
+
declare class WbVirtualSelected implements OnInit, OnDestroy {
|
|
730
737
|
webBuilderService: webBuilderService;
|
|
731
738
|
el: ElementRef;
|
|
739
|
+
private renderer;
|
|
732
740
|
boundaryEle: any;
|
|
733
741
|
isDragging: boolean;
|
|
734
742
|
parentEleRect: any;
|
|
@@ -740,11 +748,19 @@ declare class WbVirtualSelected implements OnInit {
|
|
|
740
748
|
idParent: string;
|
|
741
749
|
changed: boolean;
|
|
742
750
|
keyPosition: any;
|
|
743
|
-
|
|
751
|
+
private vGuideEle;
|
|
752
|
+
private hGuideEle;
|
|
753
|
+
private gapEles;
|
|
754
|
+
constructor(webBuilderService: webBuilderService, el: ElementRef, renderer: Renderer2);
|
|
744
755
|
ngOnInit(): void;
|
|
745
756
|
onHostMouseDown(e: any): void;
|
|
746
757
|
onPointerMove(event: any): void;
|
|
758
|
+
private createOrUpdateGuideLines;
|
|
759
|
+
private updateGapBadges;
|
|
760
|
+
private clearGapBadges;
|
|
761
|
+
private removeGuideLines;
|
|
747
762
|
onPointerUp(e: any): void;
|
|
763
|
+
ngOnDestroy(): void;
|
|
748
764
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbVirtualSelected, never>;
|
|
749
765
|
static ɵcmp: i0.ɵɵComponentDeclaration<WbVirtualSelected, "[wbVirtualSelected]", never, { "boundaryEle": { "alias": "boundaryEle"; "required": false; }; }, {}, never, never, true, never>;
|
|
750
766
|
}
|