@elyx-code/project-logic-tree 0.0.6559 → 0.0.6561
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 +19 -12
- package/dist/index.js +26948 -26312
- package/dist/index.umd.cjs +233 -233
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -388,8 +388,9 @@ export declare class Area {
|
|
|
388
388
|
}
|
|
389
389
|
|
|
390
390
|
export declare enum ArgumentDeclarationDependencyField {
|
|
391
|
-
|
|
392
|
-
|
|
391
|
+
ArgumentDataTypeEntityField = "data-type-entity-field",
|
|
392
|
+
ArgumentDataTypeField = "data-type-field",
|
|
393
|
+
ArgumentImplementsField = "argument-implements-field"
|
|
393
394
|
}
|
|
394
395
|
|
|
395
396
|
export declare type ArgumentDeclarationPayloadUnion = ArgumentDeclarationState | ArgumentDeclarationTypesUnion;
|
|
@@ -407,7 +408,7 @@ export declare class ArgumentDeclarationState extends UserManagedVersionedState
|
|
|
407
408
|
defaultValue: LiteralValueState | null;
|
|
408
409
|
dataType: DataTypeState | null;
|
|
409
410
|
writesValues: ValueReadingEntityState[];
|
|
410
|
-
implements: ValueDescriptorState |
|
|
411
|
+
implements: (ValueDescriptorState | PropertyState)[];
|
|
411
412
|
project: ProjectState;
|
|
412
413
|
errors: EntityError[];
|
|
413
414
|
parent: EntryPointEntityState;
|
|
@@ -459,7 +460,7 @@ export declare class ArgumentDeclarationState extends UserManagedVersionedState
|
|
|
459
460
|
field: string;
|
|
460
461
|
}[]): UserManagedEntityState;
|
|
461
462
|
syncDependents(changeSet?: ChangeSet | null): IChangeSet<UserManagedEntityState>;
|
|
462
|
-
onDetachedDependencyRemoved(
|
|
463
|
+
onDetachedDependencyRemoved(dependency: UserManagedEntityState, field: string, changeSet: ChangeSet | null): IChangeSet<UserManagedEntityState>;
|
|
463
464
|
onDetachedDependencyRestored(dependency: UserManagedEntityState, field: string, changeSet: ChangeSet | null): IChangeSet<UserManagedEntityState>;
|
|
464
465
|
unsubscribeFromDependencies(): UserManagedEntityState;
|
|
465
466
|
subscribeToDependencies(): UserManagedEntityState;
|
|
@@ -474,7 +475,8 @@ export declare class ArgumentDeclarationState extends UserManagedVersionedState
|
|
|
474
475
|
addValueReader(entity: ValueReadingEntityState, changeSet?: ChangeSet | null): ArgumentDeclarationState;
|
|
475
476
|
removeValueReader(valueReader: ValueReadingEntityState, changeSet?: ChangeSet | null): ArgumentDeclarationState;
|
|
476
477
|
setParent(parent: EntryPointEntityState, changeSet?: ChangeSet | null): ArgumentDeclarationState;
|
|
477
|
-
|
|
478
|
+
addImplementation(entity: PropertyState | ValueDescriptorState, changeSet?: ChangeSet | null): ArgumentDeclarationState;
|
|
479
|
+
removeImplementation(entity: PropertyState | ValueDescriptorState, changeSet?: ChangeSet | null): ArgumentDeclarationState;
|
|
478
480
|
initChildren(changeSet?: ChangeSet | null): ArgumentDeclarationState;
|
|
479
481
|
subscribe(): ArgumentDeclarationState;
|
|
480
482
|
unsubscribe(): ArgumentDeclarationState;
|
|
@@ -12034,6 +12036,8 @@ export declare class GlobalEventState extends UserManagedVersionedState implemen
|
|
|
12034
12036
|
getVariableInstances(): VariableInstanceState[];
|
|
12035
12037
|
addReturnStatement(statement: ReturnStatementState): GlobalEventState;
|
|
12036
12038
|
removeReturnStatement(statement: ReturnStatementState): GlobalEventState;
|
|
12039
|
+
removeUnrecognizedInputs(changeSet?: ChangeSet | null): IChangeSet<GlobalEventState>;
|
|
12040
|
+
syncInputs(changeSet?: ChangeSet | null): IChangeSet<GlobalEventState>;
|
|
12037
12041
|
}
|
|
12038
12042
|
|
|
12039
12043
|
export declare type GlobalEventTypesUnion = IGlobalEvent | IGlobalEventTransfer | IGlobalEventShallowTransfer | IGlobalEventGenerationTarget;
|
|
@@ -12720,7 +12724,7 @@ export declare interface IActiveBranchHeadResult {
|
|
|
12720
12724
|
export declare interface IArgumentDeclaration extends IArgumentDeclaration_meta, IBaseVariable, IChildEntity, IValueWritingEntity {
|
|
12721
12725
|
type: EntityType.ArgumentDeclaration;
|
|
12722
12726
|
constant: true;
|
|
12723
|
-
implements: IValueDescriptor |
|
|
12727
|
+
implements: (IValueDescriptor | IProperty)[];
|
|
12724
12728
|
parent: EntryPointEntity | ISearch;
|
|
12725
12729
|
}
|
|
12726
12730
|
|
|
@@ -12742,7 +12746,7 @@ export declare interface IArgumentDeclarationGenerationTarget extends IArgumentD
|
|
|
12742
12746
|
type: EntityType.ArgumentDeclaration;
|
|
12743
12747
|
required: boolean;
|
|
12744
12748
|
constant: true;
|
|
12745
|
-
implements?: EntityId;
|
|
12749
|
+
implements?: EntityId[];
|
|
12746
12750
|
parent: EntityId;
|
|
12747
12751
|
}
|
|
12748
12752
|
|
|
@@ -12753,13 +12757,13 @@ export declare interface IArgumentDeclarationReference extends IGenericReference
|
|
|
12753
12757
|
export declare interface IArgumentDeclarationShallowTransfer extends IArgumentDeclaration_meta, IChildEntityShallowTransfer, IBaseVariableShallowTransfer, IValueWritingEntityShallowTransfer {
|
|
12754
12758
|
type: EntityType.ArgumentDeclaration;
|
|
12755
12759
|
constant: true;
|
|
12756
|
-
implements: IValueDescriptorReference |
|
|
12760
|
+
implements: (IValueDescriptorReference | IPropertyReference)[];
|
|
12757
12761
|
parent: EntryPointEntityReference | ISearchReference;
|
|
12758
12762
|
}
|
|
12759
12763
|
|
|
12760
12764
|
export declare interface IArgumentDeclarationTransfer extends IArgumentDeclaration_meta, IChildEntityTransfer, IBaseVariableTransfer, IValueWritingEntityTransfer {
|
|
12761
12765
|
type: EntityType.ArgumentDeclaration;
|
|
12762
|
-
implements: IValueDescriptor | IValueDescriptorTransfer |
|
|
12766
|
+
implements: (IValueDescriptor | IValueDescriptorTransfer | IProperty | IPropertyTransfer)[];
|
|
12763
12767
|
constant: true;
|
|
12764
12768
|
parent: EntryPointEntity | EntryPointEntityReference | ISearch | ISearchReference;
|
|
12765
12769
|
}
|
|
@@ -17697,9 +17701,10 @@ export declare const PROPERTY_HEIGHT = 39;
|
|
|
17697
17701
|
export declare const PROPERTY_NOT_VALUE_READER_WRITTER_EXPLANATION = "A property entity, is neither a value reading, or a value writting entity, but they are often confused with one.\nA 'property' can have a default value through its nested 'data-type' entity.\nThe 'property' entity only represents the data field in the declaration, and it can't write or read values.\nWhen a 'definition-entity' is instantiated as a variable, any writes or reads to its properties are done through 'input-map's and 'output-map's.";
|
|
17698
17702
|
|
|
17699
17703
|
export declare enum PropertyDependencyField {
|
|
17700
|
-
PropertyImplements = "property-implements",
|
|
17701
|
-
PropertyExtends = "property-extends",
|
|
17702
|
-
|
|
17704
|
+
PropertyImplements = "property-implements-field",
|
|
17705
|
+
PropertyExtends = "property-extends-field",
|
|
17706
|
+
PropertyDataTypeEntity = "property-data-type-entity-field",
|
|
17707
|
+
PropertyDataType = "property-data-type-field"
|
|
17703
17708
|
}
|
|
17704
17709
|
|
|
17705
17710
|
export declare enum PropertyParentChildRelation {
|
|
@@ -17708,6 +17713,8 @@ export declare enum PropertyParentChildRelation {
|
|
|
17708
17713
|
|
|
17709
17714
|
export declare type PropertyPayloadUnion = PropertyState | PropertyTypesUnion;
|
|
17710
17715
|
|
|
17716
|
+
export declare function propertyShouldBePartOfFinalVariableObjectValue(entity: PropertyState): boolean;
|
|
17717
|
+
|
|
17711
17718
|
export declare class PropertyState extends UserManagedVersionedState implements IProperty, UserManagedEntityStateTemplate, UserManagedBaseState, ChildEntityBaseClass, EntityWithDefaultValueClass {
|
|
17712
17719
|
initialData: IProperty | IPropertyTransfer;
|
|
17713
17720
|
readonly id: EntityId;
|