fw-webbuilder 1.1.216 → 1.1.218
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
|
@@ -696,6 +696,7 @@ declare class WbBlockBlank implements OnInit {
|
|
|
696
696
|
webBuilderService: webBuilderService;
|
|
697
697
|
map: ComponentMapService;
|
|
698
698
|
modalRef: NzModalRef<WbBlockBlank>;
|
|
699
|
+
el: ElementRef;
|
|
699
700
|
data: any;
|
|
700
701
|
device: any;
|
|
701
702
|
class: any;
|
|
@@ -710,13 +711,14 @@ declare class WbBlockBlank implements OnInit {
|
|
|
710
711
|
right: null;
|
|
711
712
|
bottom: null;
|
|
712
713
|
};
|
|
713
|
-
constructor(webBuilderService: webBuilderService, map: ComponentMapService, modalRef: NzModalRef<WbBlockBlank
|
|
714
|
+
constructor(webBuilderService: webBuilderService, map: ComponentMapService, modalRef: NzModalRef<WbBlockBlank>, el: ElementRef);
|
|
714
715
|
ngOnInit(): void;
|
|
715
716
|
updateDataClone(): void;
|
|
716
717
|
ngOnChanges(changes: SimpleChanges): void;
|
|
717
718
|
updatePoisitionBlockChatBox(is_first: boolean): void;
|
|
718
719
|
ngOnDestroy(): void;
|
|
719
|
-
|
|
720
|
+
handleScroll: (e: Event) => void;
|
|
721
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WbBlockBlank, [null, null, { optional: true; }, null]>;
|
|
720
722
|
static ɵcmp: i0.ɵɵComponentDeclaration<WbBlockBlank, "wb-block-blank", never, { "data": { "alias": "data"; "required": false; }; "device": { "alias": "device"; "required": false; }; "class": { "alias": "class"; "required": false; }; "config": { "alias": "config"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "type": { "alias": "type"; "required": false; }; "product": { "alias": "product"; "required": false; }; }, {}, never, never, true, never>;
|
|
721
723
|
}
|
|
722
724
|
|