@g1cloud/entity-modeler-next 5.0.0-alpha.20 → 5.0.0-alpha.21
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/inheritedColumns.d.ts +57 -0
- package/dist/core/types.d.ts +46 -0
- package/dist/core/validation.d.ts +8 -1
- package/dist/editor/controller.d.ts +11 -1
- package/dist/entity-modeler-next.css +1 -1
- package/dist/entity-modeler.js +9555 -9360
- package/dist/entity-modeler.umd.cjs +17 -17
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export { synthesizeRestoreOps, deepEqual as restoreDeepEqual, type DiagramSnapsh
|
|
|
14
14
|
export { projectFieldAudit, type FieldAuditRecord, type FieldAuditTarget, type FieldAuditEntry } from './core/projectFieldAudit';
|
|
15
15
|
export { projectEntityAudit, type EntityAuditEntry, type EntityAuditSubject, type EntityAuditSubjectKind } from './core/projectEntityAudit';
|
|
16
16
|
export { projectActionLog, type ActionGroup, type SubjectAction, type ActionSubject, type ActionSubjectKind, type ActionFieldChange } from './core/projectActionLog';
|
|
17
|
+
export { projectInheritedColumns, makeInheritedColumnRef, isInheritedColumnRef, parseInheritedColumnRef, INHERITED_REF_PREFIX, type InheritedColumn, } from './core/inheritedColumns';
|
|
17
18
|
export { newId } from './core/id';
|
|
18
19
|
export * from './command/types';
|
|
19
20
|
export { CommandStack, type CommandDirection, type CommandListener } from './command/stack';
|