ionic-vhframeworks 8.3.4 → 8.3.6
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.
|
@@ -11913,13 +11913,14 @@ export declare class VhQueryAutoWeb {
|
|
|
11913
11913
|
* @param object
|
|
11914
11914
|
* @param divComponent
|
|
11915
11915
|
*/
|
|
11916
|
-
createComponent(object: any, divComponent: any): void;
|
|
11916
|
+
createComponent(object: any, divComponent: any, componentlist: any): void;
|
|
11917
|
+
getComponentList(): Promise<unknown>;
|
|
11917
11918
|
/**
|
|
11918
11919
|
* Hàm tạo các thẻ div thêm vào file HTML từ dữ liệu của trang design
|
|
11919
11920
|
* @param objects
|
|
11920
11921
|
* @param container
|
|
11921
11922
|
*/
|
|
11922
|
-
createHTMLandCSSandJS(objects: any, container: any): void;
|
|
11923
|
+
createHTMLandCSSandJS(objects: any, container: any, componentlist: any): void;
|
|
11923
11924
|
/**
|
|
11924
11925
|
* Khi người dùng vô web,app thì cần load chi nhánh về trước để người dùng chọn chi nhánh trải nghiệm
|
|
11925
11926
|
* Lưu ý: hàm này chỉ dùng cho dự án Build
|
|
@@ -12837,6 +12838,13 @@ export declare class VhQueryAutoWeb {
|
|
|
12837
12838
|
* @return Promise => page = {}
|
|
12838
12839
|
*/
|
|
12839
12840
|
getDetailPage(id_page: any): Promise<unknown>;
|
|
12841
|
+
/**
|
|
12842
|
+
* Hàm kiểm tra block hay object có phải là nhân bản không
|
|
12843
|
+
* this.vhQueryAutoWeb.isCloneBlockOrObject(block_or_object)
|
|
12844
|
+
* @param block_or_object
|
|
12845
|
+
* @returns
|
|
12846
|
+
*/
|
|
12847
|
+
isCloneBlockOrObject(block_or_object: any): boolean;
|
|
12840
12848
|
/**
|
|
12841
12849
|
* this.vhQueryAutoWeb.getCanBeClonedBlockOrObject(null, 'root')
|
|
12842
12850
|
.then((array)=>{
|
|
@@ -19376,6 +19384,13 @@ export declare class VhDesignAutoWeb {
|
|
|
19376
19384
|
* @return Promise => bool = true or false
|
|
19377
19385
|
*/
|
|
19378
19386
|
static_deleteDoc_fromDatabase(database: string, colname: string, id_doc: string): Promise<unknown>;
|
|
19387
|
+
/**
|
|
19388
|
+
* @example:
|
|
19389
|
+
* this.vhDesignAutoWeb.isCloneBlockOrObject(block_or_object)
|
|
19390
|
+
* @param block_or_object
|
|
19391
|
+
* @returns
|
|
19392
|
+
*/
|
|
19393
|
+
isCloneBlockOrObject(block_or_object: any): boolean;
|
|
19379
19394
|
/**
|
|
19380
19395
|
* @example
|
|
19381
19396
|
* this.vhDesignAutoWeb.static_getDoc_fromService('a3y5AmtZEjx0FcRfGP7k', 'categories', '5fb67fda87c0f21d484cbdf3')
|