ionic-vhframeworks 8.5.9 → 8.6.1
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.
|
@@ -11928,10 +11928,10 @@ export declare class VhQueryAutoWeb {
|
|
|
11928
11928
|
*/
|
|
11929
11929
|
createFlexboxTemplate(id_node: string): Promise<unknown>;
|
|
11930
11930
|
/**
|
|
11931
|
-
|
|
11932
|
-
|
|
11933
|
-
|
|
11934
|
-
|
|
11931
|
+
* Hàm tạo mảng cây nhị nhâp với các node theo chuẩn flexbox từ mảng position
|
|
11932
|
+
* @param id_node
|
|
11933
|
+
* @returns
|
|
11934
|
+
*/
|
|
11935
11935
|
private binarizeAndFlexboxTree;
|
|
11936
11936
|
/**
|
|
11937
11937
|
* Tính và trả về các giá trị {offsetLeft, offsetTop, offsetWidth, offsetHeight} của nhóm các comp trong mang _objects
|
|
@@ -11966,7 +11966,14 @@ export declare class VhQueryAutoWeb {
|
|
|
11966
11966
|
*/
|
|
11967
11967
|
private checkCanArangeHorizontal;
|
|
11968
11968
|
/**
|
|
11969
|
-
|
|
11969
|
+
* Tìm mảng node cha của node con có _id là id_node
|
|
11970
|
+
* @param id_node
|
|
11971
|
+
* @param node
|
|
11972
|
+
* @returns
|
|
11973
|
+
*/
|
|
11974
|
+
private findParentOfNode;
|
|
11975
|
+
/**
|
|
11976
|
+
* Tìm mảng tìm node có _id là id_node
|
|
11970
11977
|
* @param id_node
|
|
11971
11978
|
* @param node
|
|
11972
11979
|
* @returns
|
|
@@ -12899,9 +12906,17 @@ export declare class VhQueryAutoWeb {
|
|
|
12899
12906
|
getDetailFreeBlocks(): Promise<unknown>;
|
|
12900
12907
|
/**
|
|
12901
12908
|
* Người dùng bắt sự kiện scroll chuột, qua hàm này sẽ hiển thị ra những block nhìn thấy, những block ko nhìn thấy sẽ ẩn đi
|
|
12909
|
+
* Hàm này chỉ nên áp dụng ở trang design-web, design-app, design-comp
|
|
12902
12910
|
* this.vhQueryAutoWeb.displayBocksOfPage_byScroll(this, scrollTop);
|
|
12903
12911
|
*/
|
|
12904
12912
|
displayBocksOfPage_byScroll(_this: any, scrollTop: number): void;
|
|
12913
|
+
/**
|
|
12914
|
+
* Người dùng bắt sự kiện scroll chuột, qua hàm này sẽ hiển thị ra những block ở vị trí đang scroll mà trước đây chưa hiển thị
|
|
12915
|
+
* Hàm này chỉ nên áp dụng ở trang preview-web, preview-app, preview-comp và dự án autoweb_build
|
|
12916
|
+
* this.vhQueryAutoWeb.displayBocksOfPage_byScroll(this, scrollTop);
|
|
12917
|
+
*/
|
|
12918
|
+
displayBocksOfPage_byScroll_toEnd(_this: any, scrollTop: number, refresh: boolean): void;
|
|
12919
|
+
detailPage: any;
|
|
12905
12920
|
/**
|
|
12906
12921
|
* Hàm này sẽ bỏ không dùng nữa vì đã có page_detail
|
|
12907
12922
|
* Hàm này trả về 1 page (có đủ thông tin page), trong page có trường blocks (có đủ thông tin từng block),
|
|
@@ -12915,6 +12930,10 @@ export declare class VhQueryAutoWeb {
|
|
|
12915
12930
|
* @return Promise => page = {}
|
|
12916
12931
|
*/
|
|
12917
12932
|
getDetailPage(id_page: any): Promise<unknown>;
|
|
12933
|
+
/**
|
|
12934
|
+
*
|
|
12935
|
+
*/
|
|
12936
|
+
pipeDetailPage_byLink(link: any): Promise<unknown>;
|
|
12918
12937
|
/**
|
|
12919
12938
|
* Hàm kiểm tra block hay object có phải là nhân bản không
|
|
12920
12939
|
* @example:
|
|
@@ -19043,7 +19062,19 @@ export declare class VhDesignAutoWeb {
|
|
|
19043
19062
|
detailPage: any;
|
|
19044
19063
|
detailPage_byscroll: any;
|
|
19045
19064
|
detailFreeBlock: any;
|
|
19065
|
+
/**
|
|
19066
|
+
* vhDesignAutoWeb
|
|
19067
|
+
* @param _this
|
|
19068
|
+
* @param scrollTop
|
|
19069
|
+
*/
|
|
19046
19070
|
displayBocksOfPage_byScroll(_this: any, scrollTop: number): void;
|
|
19071
|
+
/**
|
|
19072
|
+
* vhDesignAutoWeb
|
|
19073
|
+
* @param _this
|
|
19074
|
+
* @param scrollTop
|
|
19075
|
+
* @param refresh
|
|
19076
|
+
*/
|
|
19077
|
+
displayBocksOfPage_byScroll_toEnd(_this: any, scrollTop: number, refresh: boolean): void;
|
|
19047
19078
|
/**
|
|
19048
19079
|
* vhDesignAutoWeb
|
|
19049
19080
|
* @param id_page
|
|
@@ -19065,8 +19096,6 @@ export declare class VhDesignAutoWeb {
|
|
|
19065
19096
|
* vhDesignAutoWeb
|
|
19066
19097
|
*/
|
|
19067
19098
|
startSocketDatabase(): void;
|
|
19068
|
-
receiveSelected(_this: any): any;
|
|
19069
|
-
sendSelected(_this: any): any;
|
|
19070
19099
|
private checkModifiedType;
|
|
19071
19100
|
private addBlockOrObject_fromDetailPage;
|
|
19072
19101
|
private addCloneBlockOrObject_fromDetailPage;
|