fw-webbuilder 1.1.80 → 1.1.82
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 +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1661,6 +1661,7 @@ declare class WbFrameProducts implements OnInit {
|
|
|
1661
1661
|
declare class WbFrameProductsConfig implements OnInit {
|
|
1662
1662
|
webBuilderService: webBuilderService;
|
|
1663
1663
|
map: CommonConfigMapService;
|
|
1664
|
+
translate: TranslateService;
|
|
1664
1665
|
data: any;
|
|
1665
1666
|
device: any;
|
|
1666
1667
|
class: any;
|
|
@@ -1668,7 +1669,7 @@ declare class WbFrameProductsConfig implements OnInit {
|
|
|
1668
1669
|
animation: any;
|
|
1669
1670
|
type: any;
|
|
1670
1671
|
tabs: any[];
|
|
1671
|
-
constructor(webBuilderService: webBuilderService, map: CommonConfigMapService);
|
|
1672
|
+
constructor(webBuilderService: webBuilderService, map: CommonConfigMapService, translate: TranslateService);
|
|
1672
1673
|
ngOnInit(): void;
|
|
1673
1674
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1674
1675
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbFrameProductsConfig, never>;
|