fw-webbuilder 1.1.24 → 1.1.26
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 +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -79,7 +79,7 @@ declare class webBuilderService {
|
|
|
79
79
|
* thiết bị hiện tại đang thiết kế
|
|
80
80
|
*/
|
|
81
81
|
device: string | 'desktop' | 'tablet_landscape' | 'tablet_portrait' | 'mobile_landscape' | 'mobile_portrait';
|
|
82
|
-
type: string | 'design' | 'preview' | '
|
|
82
|
+
type: string | 'design' | 'preview' | 'build';
|
|
83
83
|
loading: boolean;
|
|
84
84
|
group_frames: any;
|
|
85
85
|
group_objects: any;
|
|
@@ -2403,7 +2403,7 @@ declare class WbProductImageList implements OnInit {
|
|
|
2403
2403
|
type: any;
|
|
2404
2404
|
isClone: any;
|
|
2405
2405
|
product: any;
|
|
2406
|
-
imgs: any
|
|
2406
|
+
imgs: any;
|
|
2407
2407
|
changeNumberImgsSub: any;
|
|
2408
2408
|
constructor(webBuilderService: webBuilderService, functionService: FunctionService);
|
|
2409
2409
|
ngOnInit(): void;
|
|
@@ -2411,7 +2411,7 @@ declare class WbProductImageList implements OnInit {
|
|
|
2411
2411
|
onChangeImgs(): void;
|
|
2412
2412
|
handleNext(): void;
|
|
2413
2413
|
handlePrev(): void;
|
|
2414
|
-
handleImgClick(item: any): void;
|
|
2414
|
+
handleImgClick(item: any, index: number): void;
|
|
2415
2415
|
static ɵfac: i0.ɵɵFactoryDeclaration<WbProductImageList, never>;
|
|
2416
2416
|
static ɵcmp: i0.ɵɵComponentDeclaration<WbProductImageList, "wb-product-image-list", 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; }; "isClone": { "alias": "isClone"; "required": false; }; "product": { "alias": "product"; "required": false; }; }, {}, never, never, true, never>;
|
|
2417
2417
|
}
|