@g1cloud/entity-modeler-next 5.0.0-beta.39 → 5.0.0-beta.40

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/index.d.ts CHANGED
@@ -1,18 +1,18 @@
1
- export * from './core/types';
2
- export * from './core/resolve';
3
- export * from './core/routing';
4
- export * from './core/autolayout';
5
- export * from './core/text';
6
- export * from './core/mermaid';
7
- export * from './core/parseMermaid';
8
- export * from './core/parseSqlDdl';
9
- export * from './core/ddl';
10
- export * from './core/jsonModel';
11
- export * from './core/svg';
12
- export * from './core/validation';
13
- export * from './core/columnResolve';
14
- export * from './core/quickFix';
15
- export * from './core/sharedColumn';
1
+ export type { Association, AssociationEnd, AssociationLayout, Attribute, AttributeType, ClassStereotype, DbColumn, DiagramLayout, DisplayMode, EmbeddableCatalog, EmbeddableCatalogEntry, EmbeddableCatalogField, Entity, EntityIndex, EntityJpaAttrs, EntityLayout, Geo, GroupCodeCatalog, GroupCodeCatalogEntry, GroupCodeValue, GroupLayout, IndexColumn, JpaCascadeType, JpaFetchType, LangCode, LogicalGroup, LogicalModel, ModelId, MultiLangText, Multiplicity, Note, NoteConnection, Operation, OperationVisibility, Point, PredefinedCustomTypeCatalog, PredefinedCustomTypeEntry, Size, Style, SuperClassCatalog, SuperClassColumnDef, SuperClassDef, } from './core/types';
2
+ export { resolveDiagram, type AutoLayoutOptions, type ResolvedAssociation, type ResolvedDiagram, type ResolvedEntity, type ResolvedGroup, type ResolvedNote, type ResolvedNoteConnection, } from './core/resolve';
3
+ export type { Rect, RoutingMode, SegmentMid, Side } from './core/routing';
4
+ export { computeAutoLayout, packEntityBoxes, type AutoLayoutGrid, type EntityBoxSpec, type PackBoxesOptions, type PackedEntityBox, } from './core/autolayout';
5
+ export { displayLabel, entityModelToText } from './core/text';
6
+ export { defaultMermaidDialect, entityModelToMermaid, type MermaidDialect } from './core/mermaid';
7
+ export { mermaidErToImportSource, parseMermaidEr } from './core/parseMermaid';
8
+ export { parseSqlDdl, sqlDdlToImportSource, type ParseSqlDdlResult } from './core/parseSqlDdl';
9
+ export { defaultSqlDialect, entityModelToDdl, type DdlContext, type SqlDialect, } from './core/ddl';
10
+ export { DIAGRAM_JSON_FORMAT, DIAGRAM_JSON_VERSION, InvalidDiagramJsonError, diagramToJson, parseDiagramJson, type DiagramJsonEnvelope, } from './core/jsonModel';
11
+ export { renderDiagramSvg, type Corners, type DiagramGeometry, type SvgBox, type SvgEdge, type SvgHLine, type SvgTextFrag, } from './core/svg';
12
+ export { PHYSICAL_NAME_MAX_LENGTH, validateModel, type IssueSeverity, type IssueTargetKind, type ValidationContext, type ValidationIssue, } from './core/validation';
13
+ export { resolveColumnPhysicalName, resolveEffectiveColumn, type ColumnResolveContext } from './core/columnResolve';
14
+ export { resolveQuickFix, type QuickFixPlan } from './core/quickFix';
15
+ export { collectSharedColumns, resolveSharedColumn, sharedColumnScopeEntities, type ResolvedSharedColumn, } from './core/sharedColumn';
16
16
  export { JAVA_TYPES, SELECTABLE_JAVA_TYPES, javaTypeLabel, CUSTOM_TYPE_VALUE, GROUP_CODE_ENUM_VALUE, DEFAULT_JAVA_TYPE, type JavaTypeDef, } from './core/javaTypes';
17
17
  export { scaffoldEntityJava, isGeneratable, type ScaffoldOptions, type ScaffoldedEntity, } from './core/scaffoldJava';
18
18
  export { migrateLegacyMoney } from './core/migrateLegacyMoney';
@@ -26,18 +26,18 @@ export { projectActionLog, type ActionGroup, type SubjectAction, type ActionSubj
26
26
  export { projectSeqDiff, buildDiffMarks, type SeqDiff, type SeqDiffEntry, type DiffMark } from './core/projectSeqDiff';
27
27
  export { projectInheritedColumns, makeInheritedColumnRef, isInheritedColumnRef, parseInheritedColumnRef, INHERITED_REF_PREFIX, type InheritedColumn, } from './core/inheritedColumns';
28
28
  export { newId } from './core/id';
29
- export * from './command/types';
29
+ export type { Command, EditorState } from './command/types';
30
30
  export { CommandStack, type CommandDirection, type CommandListener } from './command/stack';
31
31
  export * as commands from './command/commands';
32
- export * from './command/op';
32
+ export type { CasUnit, OpCas, OpConflict, OpEmission, OpOrigin, OpResult, OpShape, PersistedOpBatch, } from './command/op';
33
33
  export { OpSyncAdapter, RevCache, type OpSyncOptions, type OpSyncTransport } from './command/opSync';
34
- export * from './agent/symbolicOp';
35
- export * from './agent/resolver';
36
- export * from './agent/schema';
37
- export * from './agent/buildAgentBatch';
38
- export * from './adapter/diagramAdapter';
34
+ export { SYMBOLIC_OP_KINDS, type AssocHandle, type AssocSpec, type AttrSpec, type EmbeddableColumnOverride, type EntitySpec, type GroupSpec, type Handle, type IndexColumnSpec, type IndexSpec, type OperationSpec, type SymbolicOp, type SymbolicOpKind, } from './agent/symbolicOp';
35
+ export { resolveSymbolicOps, type ResolveError, type ResolveResult, type ResolverOptions, } from './agent/resolver';
36
+ export { APPLY_MODEL_OPS_INPUT_SCHEMA, SYMBOLIC_OP_SCHEMA } from './agent/schema';
37
+ export { buildAgentBatch, type BuildAgentBatchOptions } from './agent/buildAgentBatch';
38
+ export { fromPersisted, toPersisted, toPersistedV2, type DiagramMeta, } from './adapter/diagramAdapter';
39
39
  export { planHealBackfillOps, type HealBackfillPlan } from './adapter/healBackfill';
40
- export type * from './adapter/persisted';
40
+ export type { PAssocEnd, PAssociation, PAttribute, PDbAttr, PDiagram, PDiagramV2, PEntity, PGeo, PGroup, PIndex, PInlineAttribute, PJpaAttrs, PNote, POperation, PStyle, PV2Association, PV2Entity, PV2Group, PV2Layout, PV2Logical, } from './adapter/persisted';
41
41
  export { default as EntityNode } from './view/EntityNode.vue';
42
42
  export { default as GroupNode } from './view/GroupNode.vue';
43
43
  export { default as NoteNode } from './view/NoteNode.vue';
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.39",
4
+ "version": "5.0.0-beta.40",
5
5
  "description": "Vue 3 visual entity-modeling / class-diagram editor",
6
6
  "type": "module",
7
7
  "files": [