ionic-vhframeworks 8.6.0 → 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.
|
@@ -12906,9 +12906,17 @@ export declare class VhQueryAutoWeb {
|
|
|
12906
12906
|
getDetailFreeBlocks(): Promise<unknown>;
|
|
12907
12907
|
/**
|
|
12908
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
|
|
12909
12910
|
* this.vhQueryAutoWeb.displayBocksOfPage_byScroll(this, scrollTop);
|
|
12910
12911
|
*/
|
|
12911
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;
|
|
12912
12920
|
/**
|
|
12913
12921
|
* Hàm này sẽ bỏ không dùng nữa vì đã có page_detail
|
|
12914
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),
|
|
@@ -12922,6 +12930,10 @@ export declare class VhQueryAutoWeb {
|
|
|
12922
12930
|
* @return Promise => page = {}
|
|
12923
12931
|
*/
|
|
12924
12932
|
getDetailPage(id_page: any): Promise<unknown>;
|
|
12933
|
+
/**
|
|
12934
|
+
*
|
|
12935
|
+
*/
|
|
12936
|
+
pipeDetailPage_byLink(link: any): Promise<unknown>;
|
|
12925
12937
|
/**
|
|
12926
12938
|
* Hàm kiểm tra block hay object có phải là nhân bản không
|
|
12927
12939
|
* @example:
|
|
@@ -19050,7 +19062,19 @@ export declare class VhDesignAutoWeb {
|
|
|
19050
19062
|
detailPage: any;
|
|
19051
19063
|
detailPage_byscroll: any;
|
|
19052
19064
|
detailFreeBlock: any;
|
|
19065
|
+
/**
|
|
19066
|
+
* vhDesignAutoWeb
|
|
19067
|
+
* @param _this
|
|
19068
|
+
* @param scrollTop
|
|
19069
|
+
*/
|
|
19053
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;
|
|
19054
19078
|
/**
|
|
19055
19079
|
* vhDesignAutoWeb
|
|
19056
19080
|
* @param id_page
|