@g1cloud/entity-modeler-next 5.0.0-beta.13 → 5.0.0-beta.15

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/i18n/ko.d.ts CHANGED
@@ -136,6 +136,7 @@ export declare const ko: {
136
136
  readonly 'em.assoc.cascadeAllNote': "ALL이 개별 cascade를 모두 포함합니다 (CHK-JPA-5).";
137
137
  readonly 'em.assoc.orphanRemovalNote': "반대편이 컬렉션(@ManyToOne/@ManyToMany)이라 orphanRemoval이 무효입니다 (CHK-JPA-14).";
138
138
  readonly 'em.assoc.navRequiredNote': "이 방향에 nav 속성이 없어(navigable 꺼짐) cascade·fetch가 적용되지 않습니다.";
139
+ readonly 'em.assoc.ownerNavFixed': "JPA 소유측 참조(@ManyToOne)는 관계 존재와 동치라 항상 켜집니다 — 참조 없는 FK는 관계 대신 일반 컬럼으로 모델링하세요.";
139
140
  readonly 'em.assoc.orderByPlaceholder': "예: name ASC";
140
141
  readonly 'em.assoc.jpaDetails': "JPA 상세";
141
142
  readonly 'em.embed.legend': "임베드";
@@ -332,6 +333,11 @@ export declare const ko: {
332
333
  readonly 'em.history.diff.empty': "이 구간의 누적 변경이 없습니다.";
333
334
  readonly 'em.history.diff.restorePreview': "되돌아갈 변경 {n}건";
334
335
  readonly 'em.history.diff.restorePreviewNone': "되돌아갈 변경이 없습니다.";
336
+ readonly 'em.history.loadMore': "이전 기록 더 보기 ({n})";
337
+ readonly 'em.history.periodLabel': "기간";
338
+ readonly 'em.history.periodFrom': "시작일";
339
+ readonly 'em.history.periodTo': "종료일";
340
+ readonly 'em.history.periodReset': "기간 해제";
335
341
  readonly 'em.check.catName': "이름";
336
342
  readonly 'em.check.catJpa': "JPA";
337
343
  readonly 'em.check.catType': "타입";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@g1cloud/entity-modeler-next",
3
3
  "private": false,
4
- "version": "5.0.0-beta.13",
4
+ "version": "5.0.0-beta.15",
5
5
  "description": "Vue 3 visual entity-modeling / class-diagram editor",
6
6
  "type": "module",
7
7
  "files": [
@@ -55,7 +55,8 @@
55
55
  "preview": "vite preview",
56
56
  "test": "vitest run",
57
57
  "test:watch": "vitest",
58
- "verify:m0": "node scripts/verify-m0.mjs",
59
- "typecheck": "vue-tsc --noEmit"
58
+ "verify": "node scripts/verify-all.mjs",
59
+ "typecheck": "vue-tsc --noEmit",
60
+ "check": "pnpm run test && pnpm run build"
60
61
  }
61
62
  }