@elyx-code/project-logic-tree 0.0.6097 → 0.0.6099
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.js +6355 -6309
- package/dist/index.umd.cjs +202 -202
- package/dist/tree/state/data-type/data-type.d.ts +2 -1
- package/dist/tree/utils/names.test.d.ts +1 -0
- package/package.json +1 -1
|
@@ -59,6 +59,8 @@ export declare class DataTypeState implements IDataType, UserManagedEntityStateF
|
|
|
59
59
|
errors: EntityGenerationError[];
|
|
60
60
|
modifiedData: IDataTypeGenerationTarget;
|
|
61
61
|
};
|
|
62
|
+
get isGroup(): boolean;
|
|
63
|
+
get isResolved(): boolean;
|
|
62
64
|
validateGeneratedUpdate(data: Partial<IDataTypeGenerationTarget>): {
|
|
63
65
|
errors: EntityGenerationError[];
|
|
64
66
|
modifiedData: Partial<IDataTypeGenerationTarget>;
|
|
@@ -110,7 +112,6 @@ export declare class DataTypeState implements IDataType, UserManagedEntityStateF
|
|
|
110
112
|
getDefaultValue(): PrimitiveValueState | null;
|
|
111
113
|
setDefaultValue(value: PrimitiveValueState): DataTypeState;
|
|
112
114
|
setEntity(entity: CustomEntityState | PrimitiveEntityState | ActionDescriptorState | BuiltInBaseEntityState | PrimitiveValueState | null): DataTypeState;
|
|
113
|
-
isResolved(): boolean;
|
|
114
115
|
isObject(): boolean;
|
|
115
116
|
hasStrictObjectStructure(): boolean;
|
|
116
117
|
inferFromInputs(inputs: VariableInputMapState[]): DataTypeState;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
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.6099",
|
|
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",
|