@elyx-code/project-logic-tree 0.0.6262 → 0.0.6265
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/types/function.d.ts +7 -3
- package/dist/definitions/types/property.d.ts +5 -1
- package/dist/index.js +12093 -11867
- package/dist/index.umd.cjs +109 -109
- package/dist/tree/state/definition-entity/definition-entity.d.ts +1 -0
- package/dist/tree/state/function-declaration/function-declaration.d.ts +4 -1
- package/dist/tree/state/property/property.d.ts +4 -1
- package/package.json +1 -1
|
@@ -124,6 +124,7 @@ export declare class DefinitionEntityState extends VersionedState implements Bas
|
|
|
124
124
|
removeUnrecognizedMethods(changeSet?: ChangeSet | null): IChangeSet<DefinitionEntityState>;
|
|
125
125
|
syncImplementationMethods(changeSet?: ChangeSet | null): IChangeSet<DefinitionEntityState>;
|
|
126
126
|
syncImplementationProperties(changeSet?: ChangeSet | null): IChangeSet<DefinitionEntityState>;
|
|
127
|
+
addExtendedMethods(changeSet?: ChangeSet | null): IChangeSet<DefinitionEntityState>;
|
|
127
128
|
addExtendedProperties(changeSet?: ChangeSet | null): IChangeSet<DefinitionEntityState>;
|
|
128
129
|
addSuggestions(): DefinitionEntityState;
|
|
129
130
|
subscribe(): DefinitionEntityState;
|
|
@@ -20,7 +20,8 @@ import { VersionedState } from '../version';
|
|
|
20
20
|
import { ChangeSet, IChangeSet } from '../change-set';
|
|
21
21
|
|
|
22
22
|
export declare enum FunctionDeclarationDependencyField {
|
|
23
|
-
|
|
23
|
+
FunctionDeclarationImplements = "function-declaration-implements",
|
|
24
|
+
FunctionDeclarationExtends = "function-declaration-extends"
|
|
24
25
|
}
|
|
25
26
|
export declare class FunctionDeclarationState extends VersionedState implements IFunctionDeclaration, BaseState, UserManagedEntityStateTemplate, BaseCanvasDraggableState, ChildEntityState, EntityWithLogicScopeClass, EntryPointEntityClass {
|
|
26
27
|
initialData: IFunctionDeclarationTransfer | IFunctionDeclaration;
|
|
@@ -34,6 +35,7 @@ export declare class FunctionDeclarationState extends VersionedState implements
|
|
|
34
35
|
index: number | null;
|
|
35
36
|
readonly type: EntityType.FunctionDeclaration;
|
|
36
37
|
implements: ActionDescriptorState | null;
|
|
38
|
+
extends: FunctionDeclarationState | null;
|
|
37
39
|
inputs: ArgumentDeclarationState[];
|
|
38
40
|
calls: CallableEntityState[];
|
|
39
41
|
parent: ProjectState | InstalledProjectState | DefinitionEntityState | LoopState | BuiltInBaseEntityState | PrimitiveEntityState;
|
|
@@ -105,6 +107,7 @@ export declare class FunctionDeclarationState extends VersionedState implements
|
|
|
105
107
|
removeInputDeclaration(input: ArgumentDeclarationState, changeSet?: ChangeSet | null): FunctionDeclarationState;
|
|
106
108
|
setParent(parent: ProjectState | InstalledProjectState | DefinitionEntityState | LoopState | BuiltInBaseEntityState | PrimitiveEntityState, changeSet?: ChangeSet | null): FunctionDeclarationState;
|
|
107
109
|
setImplements(implementsEntity: ActionDescriptorState | null, changeSet?: ChangeSet | null): FunctionDeclarationState;
|
|
110
|
+
setExtends(extendsEntity: FunctionDeclarationState | null, changeSet?: ChangeSet | null): FunctionDeclarationState;
|
|
108
111
|
addCall(entity: CallableEntityState, changeSet?: ChangeSet | null): FunctionDeclarationState;
|
|
109
112
|
removeCall(entity: CallableEntityState, changeSet?: ChangeSet | null): FunctionDeclarationState;
|
|
110
113
|
initChildren(changeSet?: ChangeSet | null): FunctionDeclarationState;
|
|
@@ -13,7 +13,8 @@ import { VersionedState } from '../version';
|
|
|
13
13
|
import { ChangeSet, IChangeSet } from '../change-set';
|
|
14
14
|
|
|
15
15
|
export declare enum PropertyDependencyField {
|
|
16
|
-
|
|
16
|
+
PropertyImplements = "property-implements",
|
|
17
|
+
PropertyExtends = "property-extends",
|
|
17
18
|
DataTypeEntity = "data-type-entity"
|
|
18
19
|
}
|
|
19
20
|
export declare class PropertyState extends VersionedState implements IProperty, UserManagedEntityStateTemplate, BaseState, ChildEntityState, EntityWithValueClass {
|
|
@@ -32,6 +33,7 @@ export declare class PropertyState extends VersionedState implements IProperty,
|
|
|
32
33
|
defaultValue: LiteralValueState | null;
|
|
33
34
|
dataType: DataTypeState | null;
|
|
34
35
|
implements: PropertyState | null;
|
|
36
|
+
extends: PropertyState | null;
|
|
35
37
|
project: ProjectState;
|
|
36
38
|
errors: EntityError[];
|
|
37
39
|
parent: DefinitionEntityState | PrimitiveEntityState | BuiltInBaseEntityState;
|
|
@@ -97,6 +99,7 @@ export declare class PropertyState extends VersionedState implements IProperty,
|
|
|
97
99
|
addSelfToProject(changeSet?: ChangeSet | null): IChangeSet<PropertyState>;
|
|
98
100
|
setParent(parent: DefinitionEntityState | PrimitiveEntityState | BuiltInBaseEntityState, changeSet?: ChangeSet | null): PropertyState;
|
|
99
101
|
setImplements(implementsEntity: PropertyState | null, changeSet?: ChangeSet | null): PropertyState;
|
|
102
|
+
setExtends(extendsEntity: PropertyState | null, changeSet?: ChangeSet | null): PropertyState;
|
|
100
103
|
initChildren(changeSet?: ChangeSet | null): PropertyState;
|
|
101
104
|
subscribe(): PropertyState;
|
|
102
105
|
unsubscribe(): PropertyState;
|
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.6265",
|
|
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",
|