@elyx-code/project-logic-tree 0.0.6567 → 0.0.6569

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
@@ -4378,6 +4378,8 @@ export declare enum DataTypeParentChildRelation {
4378
4378
  AndDataTypeGroup = "and-data-type-group"
4379
4379
  }
4380
4380
 
4381
+ export declare type DataTypeParentEntityState = UserManagedDataTypeParentEntityState | BuiltInBaseEntityState;
4382
+
4381
4383
  export declare type DataTypePayloadUnion = DataTypeState | DataTypeTypesUnion;
4382
4384
 
4383
4385
  export declare class DataTypeState extends UserManagedVersionedState implements IDataType, UserManagedEntityStateTemplate, UserManagedBaseState, ChildEntityBaseClass {
@@ -4400,7 +4402,7 @@ export declare class DataTypeState extends UserManagedVersionedState implements
4400
4402
  orChildrenGroup: DataTypeState[] | null;
4401
4403
  project: ProjectState;
4402
4404
  errors: EntityError[];
4403
- parent: PropertyState | ArgumentDeclarationState | ReturnStatementState | BreakStatementState | ContinueStatementState | VariableDeclarationState | ValueDescriptorState | InputMapState | OutputMapState | DataTypeState | FunctionDeclarationState | ActionDescriptorState | LoopState | SearchState | DefinitionEntityState | BuiltInBaseEntityState;
4405
+ parent: DataTypeParentEntityState;
4404
4406
  detachedDependents: Record<EntityId, {
4405
4407
  entity: UserManagedEntityState;
4406
4408
  field: string;
@@ -4460,7 +4462,7 @@ export declare class DataTypeState extends UserManagedVersionedState implements
4460
4462
  hydrateAncestors(): IChangeSet<DataTypeState>;
4461
4463
  afterAllChildrenInitialized(changeSet?: ChangeSet | null): IChangeSet<DataTypeState>;
4462
4464
  addSelfToProject(changeSet?: ChangeSet | null): IChangeSet<DataTypeState>;
4463
- setParent(parent: PropertyState | ArgumentDeclarationState | ReturnStatementState | BreakStatementState | ContinueStatementState | VariableDeclarationState | ValueDescriptorState | InputMapState | OutputMapState | DataTypeState | FunctionDeclarationState | ActionDescriptorState | LoopState | SearchState | DefinitionEntityState | BuiltInBaseEntityState, changeSet?: ChangeSet | null): DataTypeState;
4465
+ setParent(parent: DataTypeParentEntityState, changeSet?: ChangeSet | null): DataTypeState;
4464
4466
  removeChildGroup(child: DataTypeState, changeSet?: ChangeSet | null): DataTypeState;
4465
4467
  initChildren(changeSet?: ChangeSet | null): DataTypeState;
4466
4468
  subscribe(): DataTypeState;
@@ -4493,7 +4495,7 @@ export declare class DataTypeState extends UserManagedVersionedState implements
4493
4495
  };
4494
4496
  getErrors(): EntityError[];
4495
4497
  getShallowErrors(): EntityError[];
4496
- clone(changeSet?: ChangeSet | null, parent?: PropertyState | VariableDeclarationState | ArgumentDeclarationState | ReturnStatementState | BreakStatementState | ContinueStatementState | ValueDescriptorState | InputMapState | OutputMapState | DataTypeState | FunctionDeclarationState | ActionDescriptorState | LoopState | SearchState | DefinitionEntityState | BuiltInBaseEntityState | null, newId?: string | null, subscribe?: boolean): DataTypeState;
4498
+ clone(changeSet?: ChangeSet | null, parent?: DataTypeParentEntityState | null, newId?: string | null, subscribe?: boolean): DataTypeState;
4497
4499
  merge(sourceEntity: DataTypeState, changeSet?: ChangeSet | null): IChangeSet<DataTypeState>;
4498
4500
  addToAndGroup(child: DataTypeState, changeSet?: ChangeSet | null): DataTypeState;
4499
4501
  addToOrGroup(child: DataTypeState, changeSet?: ChangeSet | null): DataTypeState;
@@ -16101,6 +16103,18 @@ export declare const MAIN_VALUE_PROPERTY_HEADER_HEIGHT = 44;
16101
16103
 
16102
16104
  export declare const MAIN_VALUE_SUB_PROPERTY_HEIGHT = 35;
16103
16105
 
16106
+ export declare function makeAllChangeSetEntitiesDeletable(changeSet: ChangeSet): void;
16107
+
16108
+ export declare function makeAllChangeSetEntitiesEditable(changeSet: ChangeSet): void;
16109
+
16110
+ export declare function makeAllChangeSetEntitiesEditableAndDeletable(changeSet: ChangeSet): void;
16111
+
16112
+ export declare function makeAllChangeSetEntitiesNonDeletable(changeSet: ChangeSet): void;
16113
+
16114
+ export declare function makeAllChangeSetEntitiesNonEditable(changeSet: ChangeSet): void;
16115
+
16116
+ export declare function makeAllChangeSetEntitiesNonEditableAndNonDeletable(changeSet: ChangeSet): void;
16117
+
16104
16118
  export declare const manualFlowActionDescriptorDeclarationArgumentDeclaration: IValueDescriptorTransfer;
16105
16119
 
16106
16120
  export declare const manualFlowActionDescriptorDeclarationArgumentDeclarationDataType: IDataTypeTransfer;
@@ -18096,6 +18110,10 @@ export declare function readValueFromWritter(entity: ValueReadingEntityState, co
18096
18110
 
18097
18111
  export declare function rebaseStack<T = any>(undoableStackValueIndex: number, history: T[], newItem: T): number;
18098
18112
 
18113
+ export declare function recursivelyMakeAllEditableAndDeletableFromGiven(entity: UserManagedEntityState, changeSet: ChangeSet | null): void;
18114
+
18115
+ export declare function recursivelyMakeAllNonEditableAndNonDeletableFromGiven(entity: UserManagedEntityState, changeSet: ChangeSet | null): void;
18116
+
18099
18117
  export declare type Reference = IGenericReference | IFunctionDeclarationReference | IInstalledProjectReference | IDataTypeReference | IVariableDeclarationReference | IVariableInstanceReference | IOperationReference | IDefinitionEntityReference | IPrimitiveEntityReference | IProjectReference | IGlobalEventReference | IFunctionDeclarationReference | IFunctionDeclarationReference | IPropertyReference | IFunctionCallReference | IArgumentDeclarationReference | IInputMapReference | IOutputMapReference | IConditionReference | IReturnStatementReference | IBreakStatementReference | IContinueStatementReference | ILoopReference | IActionDescriptorReference | ISearchReference | ILiteralValueReference | IBuiltInBaseEntityReference | IValueDescriptorReference | IInternalCallReference;
18100
18118
 
18101
18119
  export declare const relationalDatabaseBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
@@ -19767,6 +19785,8 @@ export declare abstract class UserManagedBaseState extends BaseState implements
19767
19785
  abstract deletable: boolean;
19768
19786
  }
19769
19787
 
19788
+ export declare type UserManagedDataTypeParentEntityState = PropertyState | ArgumentDeclarationState | ReturnStatementState | BreakStatementState | ContinueStatementState | VariableDeclarationState | ValueDescriptorState | InputMapState | OutputMapState | DataTypeState | FunctionDeclarationState | ActionDescriptorState | LoopState | SearchState | DefinitionEntityState;
19789
+
19770
19790
  export declare type UserManagedElement = IProject | IInstalledProject | IDefinitionEntity | IFunctionDeclaration | IArgumentDeclaration | IProperty | IVariableDeclaration | IGlobalEvent | ISearch | ILoop | IActionDescriptor | IValueDescriptor | IInputMap | IDataType | IOutputMap | ILiteralValue | IFunctionCall | IOperation | ICondition | IReturnStatement | IBreakStatement | IContinueStatement | IVariableInstance | IInternalCall;
19771
19791
 
19772
19792
  export declare type UserManagedElement_meta = IProject_meta | IInstalledProject_meta | IDefinitionEntity_meta | IFunctionDeclaration_meta | IArgumentDeclaration_meta | IProperty_meta | IVariableDeclaration_meta | IGlobalEvent_meta | ISearch_meta | ILoop_meta | IActionDescriptor_meta | IValueDescriptor_meta | IInputMap_meta | IDataType_meta | IOutputMap_meta | ILiteralValue_meta | IFunctionCall_meta | IOperation_meta | ICondition_meta | IReturnStatement_meta | IBreakStatement_meta | IContinueStatement_meta | IVariableInstance_meta | IInternalCall_meta;