@elyx-code/project-logic-tree 0.0.6024 → 0.0.6026
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/definitions/built-in-base-entities/ids.d.ts +157 -39
- package/dist/index.js +10563 -9974
- package/dist/index.umd.cjs +199 -199
- package/dist/tree/state/loop/loop.d.ts +9 -1
- package/package.json +1 -1
|
@@ -39,10 +39,14 @@ export declare class LoopState implements ILoop, BaseState, UserManagedEntitySta
|
|
|
39
39
|
calledByEntry: EntryPointEntityState[];
|
|
40
40
|
parent: EntityWithLogicScopeState | ProjectState;
|
|
41
41
|
detachedChildren: CanvasEntityState[];
|
|
42
|
+
currentIterationNumberArgumentDeclaration: ArgumentDeclarationState;
|
|
43
|
+
currentValueArgumentDeclaration: ArgumentDeclarationState | null;
|
|
42
44
|
errors: EntityError[];
|
|
43
45
|
project: ProjectState;
|
|
44
46
|
initialized: boolean;
|
|
45
47
|
constructor(initialOperationData: ILoop | ILoopTransfer, parentProjectState: ProjectState);
|
|
48
|
+
static CURRENT_ITERATION_NUMBER_ARG_NAME: string;
|
|
49
|
+
static CURRENT_VALUE_ARG_NAME: string;
|
|
46
50
|
static MUTABLE_BASE_PROPERTIES: string[];
|
|
47
51
|
static INMUTABLE_BASE_PROPERTIES: string[];
|
|
48
52
|
static BASE_PROPERTIES: string[];
|
|
@@ -141,7 +145,11 @@ export declare class LoopState implements ILoop, BaseState, UserManagedEntitySta
|
|
|
141
145
|
syncBodyArgumentsDeclarations(): IChangeSet<LoopState>;
|
|
142
146
|
syncOutputsDeclarations(): IChangeSet<LoopState>;
|
|
143
147
|
syncOutputMaps(): IChangeSet<LoopState>;
|
|
144
|
-
|
|
148
|
+
createCurrentIterationNumberArgumentDeclaration(): IChangeSet<LoopState>;
|
|
149
|
+
removeExtraBodyArgumentDeclarations(): IChangeSet<LoopState>;
|
|
150
|
+
createCurrentValueInputBasedOnInputMap(): IChangeSet<LoopState>;
|
|
151
|
+
syncFixedBodyArgumentDeclarations(): IChangeSet<LoopState>;
|
|
152
|
+
syncInputMaps(): IChangeSet<LoopState>;
|
|
145
153
|
syncChildren(): IChangeSet<LoopState>;
|
|
146
154
|
}
|
|
147
155
|
export type LoopPayloadUnion = LoopState | LoopTypesUnion;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6026",
|
|
4
4
|
"author": "Sergio Herrero",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",
|