fw-webbuilder 1.1.280 → 1.1.281
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
|
@@ -6,7 +6,7 @@ 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';
|
|
8
8
|
import { Overlay } from '@angular/cdk/overlay';
|
|
9
|
-
import {
|
|
9
|
+
import { NzModalService, NzModalRef } from 'ng-zorro-antd/modal';
|
|
10
10
|
import { TranslateService } from '@ngx-translate/core';
|
|
11
11
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
12
12
|
import { Router, ActivatedRoute } from '@angular/router';
|
|
@@ -710,6 +710,7 @@ declare class WbDragDrop implements OnInit {
|
|
|
710
710
|
webBuilderService: webBuilderService;
|
|
711
711
|
el: ElementRef;
|
|
712
712
|
private renderer;
|
|
713
|
+
private modal;
|
|
713
714
|
/**
|
|
714
715
|
* DOM phần tử cha
|
|
715
716
|
*/
|
|
@@ -756,7 +757,7 @@ declare class WbDragDrop implements OnInit {
|
|
|
756
757
|
private mouseUpListener;
|
|
757
758
|
private getSnapTargets;
|
|
758
759
|
updateMinHeightSub: any;
|
|
759
|
-
constructor(webBuilderService: webBuilderService, el: ElementRef, renderer: Renderer2);
|
|
760
|
+
constructor(webBuilderService: webBuilderService, el: ElementRef, renderer: Renderer2, modal: NzModalService);
|
|
760
761
|
ngOnInit(): void;
|
|
761
762
|
ngAfterViewInit(): void;
|
|
762
763
|
/**
|
|
@@ -789,6 +790,7 @@ declare class WbDragDrop implements OnInit {
|
|
|
789
790
|
handleChooseItems(): void;
|
|
790
791
|
handleChooseItem(): void;
|
|
791
792
|
getLeftDrag(): 0 | -24;
|
|
793
|
+
initialRect: any;
|
|
792
794
|
handleResizePointerDown(e: any, direction: any): void;
|
|
793
795
|
handleResizePointerMove(e: any): void;
|
|
794
796
|
handleResizePointerUp(e: any): void;
|