@elyx-code/project-logic-tree 0.0.6999 → 0.0.7001
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.cjs +290 -290
- package/dist/index.d.ts +1 -7
- package/dist/index.js +37420 -37580
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -316,10 +316,6 @@ export declare function afterLiteralValueAsTypeChangeSideEffects(newValue: Value
|
|
|
316
316
|
|
|
317
317
|
export declare function afterLiteralValueAsTypeDeleteSideEffects(entity: EntityWithValueState, project: ProjectState, storage: ChangeSet | IValueStoreClient): ChangeSet | null;
|
|
318
318
|
|
|
319
|
-
export declare function afterLiteralValueChangeSideEffects(newValue: LiteralValueType, entity: EntityWithValueState, project: ProjectState, storage: ChangeSet | IValueStoreClient): ChangeSet | null;
|
|
320
|
-
|
|
321
|
-
export declare function afterLiteralValueDeleteSideEffects(entity: EntityWithValueState, project: ProjectState, storage: ChangeSet | IValueStoreClient): ChangeSet | null;
|
|
322
|
-
|
|
323
319
|
export declare function aggregateVariableInputsNextValues(objectData: UntypedObjectValue, entity: VariableDeclarationState, context: IValueResolutionContext, onlyDefault?: boolean): UntypedObjectValue;
|
|
324
320
|
|
|
325
321
|
export declare function aggregateVariableInputsValues(objectData: UntypedObjectValue, entity: VariableDeclarationState | TerminationEntityState, context: IValueResolutionContext, onlyDefault?: boolean): UntypedObjectValue;
|
|
@@ -17416,7 +17412,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
17416
17412
|
newEntities: EntityState[];
|
|
17417
17413
|
};
|
|
17418
17414
|
|
|
17419
|
-
export declare function handleLiteralValueChange(newValue: LiteralValueType, entity: EntityWithValueState, project: ProjectState, storage: ChangeSet | IValueStoreClient, asCastedType?: PrimitiveTypes): ChangeSet | null;
|
|
17415
|
+
export declare function handleLiteralValueChange(newValue: LiteralValueType, entity: EntityWithValueState, project: ProjectState, storage: ChangeSet | IValueStoreClient, asCastedType?: PrimitiveTypes, rawString?: string | null): ChangeSet | null;
|
|
17420
17416
|
|
|
17421
17417
|
export declare function handleLiteralValueDelete(entity: EntityWithValueState, project: ProjectState, storage: ChangeSet | IValueStoreClient): ChangeSet | null;
|
|
17422
17418
|
|
|
@@ -27604,8 +27600,6 @@ export declare enum BaseValueDescriptorIds {
|
|
|
27604
27600
|
|
|
27605
27601
|
export declare function propagateNewStaticPropertyValueAsTypeToVariables(entity: PropertyState, project: ProjectState, newValue: ValueAsTypeState | ValueAsTypeState[] | null, storage: ChangeSet | IValueStoreClient): ChangeSet | null;
|
|
27606
27602
|
|
|
27607
|
-
export declare function propagateNewStaticPropertyValueToVariables(entity: PropertyState, project: ProjectState, newValue: LiteralValueType, storage: ChangeSet | IValueStoreClient): ChangeSet | null;
|
|
27608
|
-
|
|
27609
27603
|
export declare const PROPERTY_HEIGHT = 39;
|
|
27610
27604
|
|
|
27611
27605
|
export declare const PROPERTY_IMPLEMENTATION_AND_EXTENSION_AUTO_ENRICHMENT_EXPLANATION = "When a 'property' entity is added to a 'definition-entity', the system will automatically enrich the property based on the parent definition-entity's implemented and extended entities.\nThis means that if a property is required, the parent 'definition-entity' will have auto-generated it. If a manually added property can fit into a parent, it will be auto-enriched with any required 'implementation' or 'extension' references, and the data-type will be recalculated or constrained based on said extensions and implementations.\nThis means that manually adding an 'extends' field to a new property is not necessary, and only specific, non-required 'implements' references need to be added manually if needed.";
|