fw-webbuilder 1.1.22 → 1.1.24
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
|
@@ -2407,6 +2407,7 @@ declare class WbProductImageList implements OnInit {
|
|
|
2407
2407
|
changeNumberImgsSub: any;
|
|
2408
2408
|
constructor(webBuilderService: webBuilderService, functionService: FunctionService);
|
|
2409
2409
|
ngOnInit(): void;
|
|
2410
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2410
2411
|
onChangeImgs(): void;
|
|
2411
2412
|
handleNext(): void;
|
|
2412
2413
|
handlePrev(): void;
|
|
@@ -2417,6 +2418,7 @@ declare class WbProductImageList implements OnInit {
|
|
|
2417
2418
|
|
|
2418
2419
|
declare class WbProductImageListConfig implements OnInit {
|
|
2419
2420
|
webBuilderService: webBuilderService;
|
|
2421
|
+
map: CommonConfigMapService;
|
|
2420
2422
|
data: any;
|
|
2421
2423
|
device: any;
|
|
2422
2424
|
class: any;
|
|
@@ -2424,11 +2426,11 @@ declare class WbProductImageListConfig implements OnInit {
|
|
|
2424
2426
|
animation: any;
|
|
2425
2427
|
type: any;
|
|
2426
2428
|
tabs: any[];
|
|
2427
|
-
constructor(webBuilderService: webBuilderService);
|
|
2429
|
+
constructor(webBuilderService: webBuilderService, map: CommonConfigMapService);
|
|
2428
2430
|
ngOnInit(): void;
|
|
2429
2431
|
ngOnChanges(changes: SimpleChanges): void;
|
|
2430
2432
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbProductImageListConfig, never>;
|
|
2431
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WbProductImageListConfig, "wb-product-image-list-config", 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; }; }, {}, never, never,
|
|
2433
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WbProductImageListConfig, "wb-product-image-list-config", 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; }; }, {}, never, never, true, never>;
|
|
2432
2434
|
}
|
|
2433
2435
|
|
|
2434
2436
|
declare class WbProductSelectAttribute implements OnInit {
|