@dineug/erd-editor 3.2.1 → 3.2.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/toolbar/Toolbar.styles.d.ts +1 -0
- package/dist/constants/schema.d.ts +4 -0
- package/dist/engine/modules/settings/actions.d.ts +5 -0
- package/dist/engine/modules/settings/atom.actions.d.ts +23 -0
- package/dist/engine.js +2 -2
- package/dist/erd-editor.js +5496 -5449
- package/dist/{schemaGCService-tEI4URA5.js → schemaGCService-J8vtSEfz.js} +2871 -2844
- package/package.json +2 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export declare const root: import("@dineug/r-html").CSSTemplateLiterals;
|
|
2
2
|
export declare const vertical: import("@dineug/r-html").CSSTemplateLiterals;
|
|
3
3
|
export declare const menu: import("@dineug/r-html").CSSTemplateLiterals;
|
|
4
|
+
export declare const tableCount: import("@dineug/r-html").CSSTemplateLiterals;
|
|
@@ -94,6 +94,10 @@ export declare const OrderType: {
|
|
|
94
94
|
readonly DESC: 2;
|
|
95
95
|
};
|
|
96
96
|
export declare const OrderTypeList: readonly number[];
|
|
97
|
+
export declare const SaveSettingType: {
|
|
98
|
+
scroll: number;
|
|
99
|
+
zoomLevel: number;
|
|
100
|
+
};
|
|
97
101
|
export declare const CANVAS_SIZE_MAX: 20000;
|
|
98
102
|
export declare const CANVAS_SIZE_MIN: 2000;
|
|
99
103
|
export declare const CANVAS_ZOOM_MAX: 1;
|
|
@@ -20,6 +20,7 @@ export declare const ActionType: {
|
|
|
20
20
|
readonly changeRelationshipOptimization: "settings.changeRelationshipOptimization";
|
|
21
21
|
readonly changeColumnOrder: "settings.changeColumnOrder";
|
|
22
22
|
readonly changeMaxWidthComment: "settings.changeMaxWidthComment";
|
|
23
|
+
readonly changeIgnoreSaveSettings: "settings.changeIgnoreSaveSettings";
|
|
23
24
|
};
|
|
24
25
|
export type ActionType = ValuesType<typeof ActionType>;
|
|
25
26
|
export type ActionMap = {
|
|
@@ -79,5 +80,9 @@ export type ActionMap = {
|
|
|
79
80
|
[ActionType.changeMaxWidthComment]: {
|
|
80
81
|
value: number;
|
|
81
82
|
};
|
|
83
|
+
[ActionType.changeIgnoreSaveSettings]: {
|
|
84
|
+
saveSettingType: number;
|
|
85
|
+
value: boolean;
|
|
86
|
+
};
|
|
82
87
|
};
|
|
83
88
|
export type ReducerType<T extends keyof ActionMap> = Reducer<RootState, T, ActionMap, EngineContext>;
|
|
@@ -162,6 +162,17 @@ export declare const changeMaxWidthCommentAction: {
|
|
|
162
162
|
toString(): string;
|
|
163
163
|
type: string;
|
|
164
164
|
};
|
|
165
|
+
export declare const changeIgnoreSaveSettingsAction: {
|
|
166
|
+
(payload: {
|
|
167
|
+
saveSettingType: number;
|
|
168
|
+
value: boolean;
|
|
169
|
+
}): import("@dineug/r-html").AnyAction<{
|
|
170
|
+
saveSettingType: number;
|
|
171
|
+
value: boolean;
|
|
172
|
+
}>;
|
|
173
|
+
toString(): string;
|
|
174
|
+
type: string;
|
|
175
|
+
};
|
|
165
176
|
export declare const settingsReducers: {
|
|
166
177
|
"settings.changeDatabaseName": ReducerType<"settings.changeDatabaseName">;
|
|
167
178
|
"settings.resize": ReducerType<"settings.resize">;
|
|
@@ -180,6 +191,7 @@ export declare const settingsReducers: {
|
|
|
180
191
|
"settings.changeRelationshipOptimization": ReducerType<"settings.changeRelationshipOptimization">;
|
|
181
192
|
"settings.changeColumnOrder": ReducerType<"settings.changeColumnOrder">;
|
|
182
193
|
"settings.changeMaxWidthComment": ReducerType<"settings.changeMaxWidthComment">;
|
|
194
|
+
"settings.changeIgnoreSaveSettings": ReducerType<"settings.changeIgnoreSaveSettings">;
|
|
183
195
|
};
|
|
184
196
|
export declare const actions: {
|
|
185
197
|
changeDatabaseNameAction: {
|
|
@@ -345,4 +357,15 @@ export declare const actions: {
|
|
|
345
357
|
toString(): string;
|
|
346
358
|
type: string;
|
|
347
359
|
};
|
|
360
|
+
changeIgnoreSaveSettingsAction: {
|
|
361
|
+
(payload: {
|
|
362
|
+
saveSettingType: number;
|
|
363
|
+
value: boolean;
|
|
364
|
+
}): import("@dineug/r-html").AnyAction<{
|
|
365
|
+
saveSettingType: number;
|
|
366
|
+
value: boolean;
|
|
367
|
+
}>;
|
|
368
|
+
toString(): string;
|
|
369
|
+
type: string;
|
|
370
|
+
};
|
|
348
371
|
};
|
package/dist/engine.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { D as A, E as w, u as x, O as E, G as d, K as G, p as I,
|
|
1
|
+
import { D as A, E as w, u as x, O as E, G as d, K as G, p as I, bt as l, J as p, Y as O, d2 as T, bs as V, aB as $, d7 as j, d8 as k, V as J, d9 as R, cW as z } from "./schemaGCService-J8vtSEfz.js";
|
|
2
2
|
/*!
|
|
3
3
|
* @dineug/erd-editor
|
|
4
|
-
* @version 3.2.
|
|
4
|
+
* @version 3.2.3 | Sat Apr 13 2024
|
|
5
5
|
* @author SeungHwan-Lee <dineug2@gmail.com>
|
|
6
6
|
* @license MIT
|
|
7
7
|
*/
|