@elyx-code/project-logic-tree 0.0.6050 → 0.0.6052
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 +6774 -6854
- package/dist/index.umd.cjs +144 -144
- package/dist/tree/built-in/operations/custom-entity/validate-data.test.d.ts +1 -0
- package/dist/tree/utils/names.d.ts +2 -6
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,16 +1,12 @@
|
|
|
1
1
|
import { BaseEntityNames, ElementGenerationTarget, ElementShallowTransfer, ElementTransfer, IArgumentDeclarationGenerationTarget, IArgumentDeclarationShallowTransfer, IArgumentDeclarationTransfer, ICustomEntityGenerationTarget, ICustomEntityShallowTransfer, ICustomEntityTransfer, IFunctionDeclarationGenerationTarget, IFunctionDeclarationShallowTransfer, IFunctionDeclarationTransfer, IPropertyGenerationTarget, IPropertyShallowTransfer, IPropertyTransfer, IReturnDeclarationGenerationTarget, IReturnDeclarationShallowTransfer, IReturnDeclarationTransfer, IVariableDeclarationGenerationTarget, IVariableDeclarationShallowTransfer, IVariableDeclarationTransfer, PrimitiveTypes } from '../../definitions';
|
|
2
|
-
import { ArgumentDeclarationState, BuiltInBaseEntityState, ConditionState, CustomEntityState, DataTypeState, EntityPayloadUnion, EntityWithValueState, FunctionDeclarationState, ActionDescriptorState, ProjectState, PropertyState, ReturnDeclarationState, SearchState, VariableDeclarationState,
|
|
2
|
+
import { ArgumentDeclarationState, BuiltInBaseEntityState, ConditionState, CustomEntityState, DataTypeState, EntityPayloadUnion, EntityWithValueState, FunctionDeclarationState, ActionDescriptorState, ProjectState, PropertyState, ReturnDeclarationState, SearchState, VariableDeclarationState, ValueDescriptorState } from '../state';
|
|
3
3
|
import { EntityGenerationError } from '../state/error';
|
|
4
4
|
|
|
5
5
|
export declare function toCamelCase(str: string): string;
|
|
6
6
|
export declare function toPascalCase(str: string): string;
|
|
7
7
|
export declare function toKebabCase(str: string): string;
|
|
8
8
|
export declare function toLowerCaseKebabCase(str: string): string;
|
|
9
|
-
export declare function
|
|
10
|
-
export declare function resolveVariableInstanceDataTypeLabel(varInstance: VariableInstanceState): string;
|
|
11
|
-
export declare function resolveVariableDataTypeLabel(variable: VariableDeclarationState | ReturnDeclarationState | ArgumentDeclarationState | VariableInstanceState): string;
|
|
12
|
-
export declare function resolveDataTypeLabel(dataType: DataTypeState): string;
|
|
13
|
-
export declare function resolvePropertyDataTypeLabel(property: PropertyState): string;
|
|
9
|
+
export declare function resolveDataTypeLabel(dataType: DataTypeState | null): string;
|
|
14
10
|
export declare function resolveEntityDataTypeLabel(entity: PropertyState | EntityWithValueState | ValueDescriptorState): string;
|
|
15
11
|
export declare function resolveConditionOperatorLabel(condition: ConditionState): "and" | "or" | "is equal to" | "is not equal to" | "is greater than" | "is greater than or equal to" | "is less than" | "is less than or equal to" | "is empty" | "is not empty" | undefined;
|
|
16
12
|
export declare function resolveBaseEntityName(baseEntities: BaseEntityNames[]): string;
|
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.6052",
|
|
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",
|