ionic-vhframeworks 8.3.1 → 8.3.3

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.
@@ -11845,13 +11845,80 @@ export declare class VhQueryAutoWeb {
11845
11845
  private configChanged;
11846
11846
  private renderer;
11847
11847
  constructor(vhMGDB_database: VhMGDB_database, vhMGDB_socketMongoDB: VhMGDB_socketMongoDB, vhQuery: VhQuery, vhAuth: VhAuth, vhMGDB_rootdatabase: VhMGDB_rootdatabase, vhMGDB_auth: VhMGDB_auth, vhOTP: VhOTP, vhAlgorithm: VhAlgorithm, vhBuildAutoWeb: VhBuildAutoWeb, vhDesignAutoWeb: VhDesignAutoWeb, vhEventMediator: VhEventMediator, http: HttpClient, renderFactory: RendererFactory2);
11848
+ /**
11849
+ * Hàm tạo template theo chuẩn flexbox từ tempplate theo chuẩn position
11850
+ * @param id_node
11851
+ * @returns
11852
+ */
11848
11853
  createFlexboxTemplate(id_node: string): Promise<unknown>;
11854
+ /**
11855
+ * Hàm tạo mảng cây nhị nhâp với các node theo chuẩn flexbox từ mảng position
11856
+ * @param id_node
11857
+ * @returns
11858
+ */
11849
11859
  binarizeAndFlexboxNode(id_node: string): Promise<unknown>;
11860
+ /**
11861
+ * Tính và trả về các giá trị {offsetLeft, offsetTop, offsetWidth, offsetHeight} của nhóm các comp trong mang _objects
11862
+ * @param _objects
11863
+ * @returns
11864
+ */
11865
+ getOffset_Left_Top_Width_Height(_objects: any): {
11866
+ offsetLeft: any;
11867
+ offsetTop: any;
11868
+ offsetWidth: number;
11869
+ offsetHeight: number;
11870
+ };
11871
+ /**
11872
+ * Hàm kiểm trả và sắp xếp các comp, nhóm comp theo chiều dọc
11873
+ * @param arrayPosition
11874
+ * @param dataPositionNode
11875
+ * @returns
11876
+ */
11850
11877
  checkAndArangeVertical(arrayPosition: any, dataPositionNode: any): any[];
11878
+ /**
11879
+ * Hàm kiểm trả và sắp xếp các comp, nhóm comp theo chiều ngang
11880
+ * @param arrayPosition
11881
+ * @param dataPositionNode
11882
+ * @returns
11883
+ */
11851
11884
  checkAndArangeHorizontal(arrayPosition: any, dataPositionNode: any): any[];
11885
+ /**
11886
+ * Hàm kiểm tra nhóm comp arrayPosition có thể đc sắp xếp theo chiều dọc không?
11887
+ * @param arrayPosition
11888
+ * @returns
11889
+ */
11890
+ checkCanArangeVertical(arrayPosition: any): boolean;
11891
+ /**
11892
+ * Hàm kiểm tra nhóm comp arrayPosition có thể đc sắp xếp theo chiều ngang không?
11893
+ * @param arrayPosition
11894
+ * @returns
11895
+ */
11852
11896
  checkCanArangeHorizontal(arrayPosition: any): boolean;
11897
+ /**
11898
+ * Tìm mảng objects của node có _id là id_node
11899
+ * @param id_node
11900
+ * @param node
11901
+ * @returns
11902
+ */
11853
11903
  findObjectsOfNode(id_node: any, node: any): any;
11904
+ /**
11905
+ * Hàm tìm node cha cho đối tượng con có _id là id_node_child
11906
+ * @param id_node_child
11907
+ * @param node
11908
+ * @returns
11909
+ */
11910
+ findParentNode(id_node_child: any, node: any): any;
11911
+ /**
11912
+ * Hàm tạo component <ewa->
11913
+ * @param object
11914
+ * @param divComponent
11915
+ */
11854
11916
  createComponent(object: any, divComponent: any): void;
11917
+ /**
11918
+ * Hàm tạo các thẻ div thêm vào file HTML từ dữ liệu của trang design
11919
+ * @param objects
11920
+ * @param container
11921
+ */
11855
11922
  createHTMLandCSSandJS(objects: any, container: any): void;
11856
11923
  /**
11857
11924
  * 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ionic-vhframeworks",
3
- "version": "8.3.1",
3
+ "version": "8.3.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^12.2.0",
6
6
  "@angular/core": "^12.2.0"