@libs-ui/services-grid-layout 0.2.357-23 → 0.2.357-24

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.
@@ -128,6 +128,11 @@ export declare class LibsUiGridLayoutCanvasComponent implements AfterViewInit, O
128
128
  */
129
129
  protected readonly toolbarContexts: import("@angular/core").Signal<T_gridLayout_toolbarContext[]>;
130
130
  protected readonly isNestedCanvas: import("@angular/core").Signal<boolean>;
131
+ /**
132
+ * Khe nhìn thấy giữa các khối CẤP GỐC. Mặt phẳng lồng trả 0 — khối con là các dòng của cùng một
133
+ * thẻ, tách chúng ra làm chúng trông như thẻ rời.
134
+ */
135
+ protected readonly visualGap: import("@angular/core").Signal<number>;
131
136
  /** trần lồng container — khối đã chạm trần thì không cho chuyển thành container */
132
137
  protected readonly maxContainerDepth: import("@angular/core").Signal<number>;
133
138
  /**
@@ -27,7 +27,7 @@ export declare const findHoveredGroup: (elements: Element[], canvasContainer: HT
27
27
  /**
28
28
  * Calculates snapped spatial coordinates and pixel dimensions for drop ghost preview box.
29
29
  */
30
- export declare const calculateDropGhost: (event: DragEvent, canvasContainer: HTMLElement, root: T_gridLayout_node, payload: T_gridLayout_externalDragPayload, totalCols?: number) => T_gridLayout_dropGhost | undefined;
30
+ export declare const calculateDropGhost: (event: DragEvent, canvasContainer: HTMLElement, root: T_gridLayout_node, payload: T_gridLayout_externalDragPayload, totalCols?: number, rowStep?: number) => T_gridLayout_dropGhost | undefined;
31
31
  /** Tìm khối theo id trong cây, đi sâu vào mọi container. */
32
32
  export declare const findNodeRecursive: (root: T_gridLayout_node, id: string) => T_gridLayout_node | undefined;
33
33
  /** Tìm khối CHA trực tiếp của một khối, đi sâu vào mọi container. */
@@ -28,7 +28,7 @@ export declare class LibsUiGridLayoutDragController {
28
28
  * Gọi ở `dragover` của khung chứa mặt phẳng. Trả ghost để nơi dùng vẽ khung xem trước, đồng thời
29
29
  * tự bật ô li của lưới đang được kéo tới.
30
30
  */
31
- onDragOver(event: DragEvent, container: HTMLElement | undefined, root: T_gridLayout_node | undefined, totalCols?: number): T_gridLayout_dropGhost | undefined;
31
+ onDragOver(event: DragEvent, container: HTMLElement | undefined, root: T_gridLayout_node | undefined, totalCols?: number, rowStep?: number): T_gridLayout_dropGhost | undefined;
32
32
  /** Bật ô li của lưới CẤP TRANG trong suốt lượt kéo, tắt lưới cũ nếu khung chứa đã đổi. */
33
33
  private showRootGrid;
34
34
  }