fw-webbuilder 1.1.246 → 1.1.248
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 +6 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1020,6 +1020,7 @@ declare class WbGridConfig implements OnInit {
|
|
|
1020
1020
|
classGrid: string;
|
|
1021
1021
|
constructor(webBuilderService: webBuilderService);
|
|
1022
1022
|
ngOnInit(): void;
|
|
1023
|
+
private notifyGridChange;
|
|
1023
1024
|
updateClassAndConfig(): void;
|
|
1024
1025
|
onChangeGrid(): void;
|
|
1025
1026
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbGridConfig, never>;
|
|
@@ -1805,12 +1806,17 @@ declare class WbFrameProducts implements OnInit, OnDestroy {
|
|
|
1805
1806
|
*/
|
|
1806
1807
|
products2D: any;
|
|
1807
1808
|
changeGridSub: any;
|
|
1809
|
+
private lastGridSignature;
|
|
1808
1810
|
autoSlideInterval: any;
|
|
1809
1811
|
constructor(webBuilderService: webBuilderService, functionService: FunctionService, elementRef: ElementRef, authService: AuthService, map: ComponentMapService);
|
|
1810
1812
|
ngOnInit(): void;
|
|
1811
1813
|
updateDataClone(): void;
|
|
1812
1814
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1815
|
+
ngDoCheck(): void;
|
|
1813
1816
|
ngOnDestroy(): void;
|
|
1817
|
+
private getGridConfig;
|
|
1818
|
+
private getGridSignature;
|
|
1819
|
+
private rebuildGridLayout;
|
|
1814
1820
|
calcProducts(): void;
|
|
1815
1821
|
onMouseDown(event: any, type: 'mouse' | 'touch'): void;
|
|
1816
1822
|
onMouseMove(event: any, type: 'mouse' | 'touch'): void;
|