@dineug/erd-editor 3.1.2 → 3.1.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.
- package/dist/components/erd/virtual-scroll/VirtualScroll.d.ts +4 -0
- package/dist/components/erd/virtual-scroll/VirtualScroll.styles.d.ts +5 -0
- package/dist/components/erd/virtual-scroll/useVirtualScroll.d.ts +10 -0
- package/dist/engine.js +2 -2
- package/dist/erd-editor.js +5620 -5442
- package/dist/{schemaGCService-L2WKQw4y.js → schemaGCService-SoMd6Ovy.js} +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export declare const vertical: import("@dineug/r-html").CSSTemplateLiterals;
|
|
2
|
+
export declare const horizontal: import("@dineug/r-html").CSSTemplateLiterals;
|
|
3
|
+
export declare const ghostThumb: import("@dineug/r-html").CSSTemplateLiterals;
|
|
4
|
+
export declare const verticalThumb: import("@dineug/r-html").CSSTemplateLiterals;
|
|
5
|
+
export declare const horizontalThumb: import("@dineug/r-html").CSSTemplateLiterals;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Ctx } from "../../../internal-types";
|
|
2
|
+
export declare function useVirtualScroll(ctx: Ctx): {
|
|
3
|
+
state: {
|
|
4
|
+
selected: "vertical" | "horizontal" | null;
|
|
5
|
+
};
|
|
6
|
+
onScrollLeftStart: (event: MouseEvent) => void;
|
|
7
|
+
onScrollTopStart: (event: MouseEvent) => void;
|
|
8
|
+
getWidthRatio: () => number;
|
|
9
|
+
getHeightRatio: () => number;
|
|
10
|
+
};
|
package/dist/engine.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { D as A, E as w, u as x, O as E, F as l, J as $, p as G, bs as d, I as p, Y as I, c$ as O, br as T, aA as j, d5 as k, U as F, cY as J, cS as R } from "./schemaGCService-
|
|
1
|
+
import { D as A, E as w, u as x, O as E, F as l, J as $, p as G, bs as d, I as p, Y as I, c$ as O, br as T, aA as j, d5 as k, U as F, cY as J, cS as R } from "./schemaGCService-SoMd6Ovy.js";
|
|
2
2
|
/*!
|
|
3
3
|
* @dineug/erd-editor
|
|
4
|
-
* @version 3.1.
|
|
4
|
+
* @version 3.1.3 | Sat Jan 13 2024
|
|
5
5
|
* @author SeungHwan-Lee <dineug2@gmail.com>
|
|
6
6
|
* @license MIT
|
|
7
7
|
*/
|