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

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
@@ -16101,6 +16101,18 @@ export declare const MAIN_VALUE_PROPERTY_HEADER_HEIGHT = 44;
16101
16101
 
16102
16102
  export declare const MAIN_VALUE_SUB_PROPERTY_HEIGHT = 35;
16103
16103
 
16104
+ export declare function makeAllChangeSetEntitiesDeletable(changeSet: ChangeSet): void;
16105
+
16106
+ export declare function makeAllChangeSetEntitiesEditable(changeSet: ChangeSet): void;
16107
+
16108
+ export declare function makeAllChangeSetEntitiesEditableAndDeletable(changeSet: ChangeSet): void;
16109
+
16110
+ export declare function makeAllChangeSetEntitiesNonDeletable(changeSet: ChangeSet): void;
16111
+
16112
+ export declare function makeAllChangeSetEntitiesNonEditable(changeSet: ChangeSet): void;
16113
+
16114
+ export declare function makeAllChangeSetEntitiesNonEditableAndNonDeletable(changeSet: ChangeSet): void;
16115
+
16104
16116
  export declare const manualFlowActionDescriptorDeclarationArgumentDeclaration: IValueDescriptorTransfer;
16105
16117
 
16106
16118
  export declare const manualFlowActionDescriptorDeclarationArgumentDeclarationDataType: IDataTypeTransfer;
@@ -18096,6 +18108,10 @@ export declare function readValueFromWritter(entity: ValueReadingEntityState, co
18096
18108
 
18097
18109
  export declare function rebaseStack<T = any>(undoableStackValueIndex: number, history: T[], newItem: T): number;
18098
18110
 
18111
+ export declare function recursivelyMakeAllEditableAndDeletableFromGiven(entity: UserManagedEntityState, changeSet: ChangeSet | null): void;
18112
+
18113
+ export declare function recursivelyMakeAllNonEditableAndNonDeletableFromGiven(entity: UserManagedEntityState, changeSet: ChangeSet | null): void;
18114
+
18099
18115
  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
18116
 
18101
18117
  export declare const relationalDatabaseBuiltInBaseEntity: IBuiltInBaseEntityTransfer;