@g1cloud/entity-modeler-next 5.1.4 → 5.1.5
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/core/scaffoldJava.d.ts +35 -1
- package/dist/core/types.d.ts +14 -0
- package/dist/entity-modeler-next.css +1 -1
- package/dist/entity-modeler.js +10319 -10227
- package/dist/entity-modeler.umd.cjs +19 -19
- package/dist/i18n/ko.d.ts +1 -0
- package/dist/view/useAttributeEditing.d.ts +4 -0
- package/package.json +1 -1
package/dist/i18n/ko.d.ts
CHANGED
|
@@ -195,6 +195,7 @@ export declare const ko: {
|
|
|
195
195
|
readonly 'em.attr.scaleTypeHint': "소수부(scale)는 NUMERIC·DECIMAL 타입에만 적용됩니다.";
|
|
196
196
|
readonly 'em.attr.embedFixedHint': "임베더블 정의에서 고정된 값입니다.";
|
|
197
197
|
readonly 'em.attr.embedSharedHint': "다른 컬럼과 공유하는 통화 컬럼입니다 — 대상에서 파생(읽기 전용).";
|
|
198
|
+
readonly 'em.attr.derivedIdNote': "파생 식별(@MapsId) 스칼라 @Id 필드명입니다. 연관 필드명은 관계선을 클릭해 편집하며, 비우면 부모 PK 물리명에서 파생됩니다.";
|
|
198
199
|
readonly 'em.attr.namePlaceholder': "이름";
|
|
199
200
|
readonly 'em.attr.typePlaceholder': "타입";
|
|
200
201
|
readonly 'em.attr.customTypePlaceholder': "커스텀 타입명";
|
|
@@ -10,6 +10,10 @@ export declare function useAttributeEditing(c: EditorController, entityId: () =>
|
|
|
10
10
|
piiLabel: (v: string) => string;
|
|
11
11
|
idn: <T>(s: T) => T;
|
|
12
12
|
setAttr: (a: Attribute, patch: Partial<Attribute>) => void;
|
|
13
|
+
isDerivedIdRow: (a: Attribute) => boolean;
|
|
14
|
+
rowName: (a: Attribute) => string;
|
|
15
|
+
rowNamePlaceholder: (a: Attribute) => string;
|
|
16
|
+
setRowName: (a: Attribute, v: string) => void;
|
|
13
17
|
isManagedFk: (a: Attribute) => boolean;
|
|
14
18
|
setNaturalId: (a: Attribute, v: boolean) => void;
|
|
15
19
|
clearNaturalIdPatch: () => Partial<Attribute>;
|