@g1cloud/entity-modeler-next 5.0.0-beta.41 → 5.0.0-beta.43
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/embedSlots.d.ts +18 -0
- package/dist/editor/clipboardImport.d.ts +23 -0
- package/dist/editor/commandPlans.d.ts +67 -0
- package/dist/editor/hostSync.d.ts +30 -0
- package/dist/editor/selection.d.ts +27 -0
- package/dist/entity-modeler-next.css +1 -1
- package/dist/entity-modeler.js +10895 -10730
- package/dist/entity-modeler.umd.cjs +26 -26
- package/dist/i18n/ko.d.ts +2 -0
- package/package.json +1 -1
package/dist/i18n/ko.d.ts
CHANGED
|
@@ -398,6 +398,8 @@ export declare const ko: {
|
|
|
398
398
|
readonly 'em.check.jpa18': "cascade가 관계 양쪽(부모·자식)에 모두 설정되어 양방향 전파됩니다 — 의도치 않은 연쇄 저장/삭제·전파 사이클 위험. 보통 cascade는 한쪽에만 둡니다";
|
|
399
399
|
readonly 'em.check.jpa19': "부모에 컬렉션/참조 필드가 있으나 자식({child})에 대응 관계 속성이 없어 JPA 매핑(mappedBy)을 만들 수 없습니다 — 코드젠이 이 관계를 방출하지 못합니다. 자식에 FK 속성을 만들거나 관계를 단방향으로 정리하세요";
|
|
400
400
|
readonly 'em.check.jpa20': "복합 PK(@IdClass/@EmbeddedId)에는 채번(@GeneratedValue)을 쓸 수 없습니다 — 속성 \"{name}\"에 설정되어 있습니다";
|
|
401
|
+
readonly 'em.check.jpa21Missing': "임베드 \"{name}\"의 컬럼이 임베더블({embeddable}) 선언보다 적습니다 — 슬롯 {slots} / 선언 {declared}. 뒤에 추가된 컬럼이 반영되지 않아 DDL에서 빠집니다(JPA는 임베더블 선언대로 컬럼을 만듭니다)";
|
|
402
|
+
readonly 'em.check.jpa21Extra': "임베드 \"{name}\"의 컬럼이 임베더블({embeddable}) 선언보다 많습니다 — 슬롯 {slots} / 선언 {declared}. 임베더블에서 지워진 컬럼이 남아 DDL에 없는 컬럼을 방출합니다";
|
|
401
403
|
readonly 'em.check.type1': "타겟 DB가 지원하지 않는 컬럼 타입입니다: \"{dataType}\"";
|
|
402
404
|
readonly 'em.check.type2': "{dataType} 타입에 length가 지정되지 않았습니다";
|
|
403
405
|
readonly 'em.check.type3': "공유 대상 컬럼의 타입({targetType})이 {metaName} 정의({metaType})와 다릅니다";
|