@elyx-code/project-logic-tree 0.0.6622 → 0.0.6624
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 +3 -2
- package/dist/index.js +4414 -4193
- package/dist/index.umd.cjs +108 -108
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9273,6 +9273,7 @@ export declare class ChangeSet extends Events {
|
|
|
9273
9273
|
open: boolean;
|
|
9274
9274
|
dirty: boolean;
|
|
9275
9275
|
startedClose: boolean;
|
|
9276
|
+
lockedVersions: boolean;
|
|
9276
9277
|
type: ChangeSetChangeCaptureType;
|
|
9277
9278
|
autoclose: boolean;
|
|
9278
9279
|
autoCloseActionName: string;
|
|
@@ -29188,7 +29189,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
29188
29189
|
|
|
29189
29190
|
export declare function resolveClonedEntityProject(newParent: EntityState | null, self: EntityState): ProjectState;
|
|
29190
29191
|
|
|
29191
|
-
export declare function resolveConditionOperatorLabel(condition: ConditionState): "is equal to" | "is not equal to" | "is
|
|
29192
|
+
export declare function resolveConditionOperatorLabel(condition: ConditionState): "is equal to" | "is not equal to" | "is empty" | "is present" | "is greater than" | "is greater than or equal to" | "is less than" | "is less than or equal to" | "contains" | "starts with" | "ends with" | "is false" | "is true" | "and" | "or" | undefined;
|
|
29192
29193
|
|
|
29193
29194
|
export declare function resolveDataType(entity: EntityWithValueState | PropertyState | ValueDescriptorState | TerminationEntityState, changeSet?: ChangeSet | null): DataTypeState | null;
|
|
29194
29195
|
|
|
@@ -31622,7 +31623,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
31622
31623
|
visitAsync(callback: (entity: Element_2 | ElementTransfer | EntityState | ElementShallowTransfer, knownEntitiesRecord: Record<EntityId, Element_2 | ElementTransfer | EntityState | ElementShallowTransfer>) => any, { yieldEvery }?: {
|
|
31623
31624
|
yieldEvery?: number;
|
|
31624
31625
|
}): Promise<Traverser>;
|
|
31625
|
-
reverseVisitAsync(callback: (entity: Element_2 | ElementTransfer | EntityState | ElementShallowTransfer, knownEntitiesRecord: Record<EntityId, Element_2 | ElementTransfer | EntityState | ElementShallowTransfer>) =>
|
|
31626
|
+
reverseVisitAsync(callback: (entity: Element_2 | ElementTransfer | EntityState | ElementShallowTransfer, knownEntitiesRecord: Record<EntityId, Element_2 | ElementTransfer | EntityState | ElementShallowTransfer>) => any, { yieldEvery }?: {
|
|
31626
31627
|
yieldEvery?: number;
|
|
31627
31628
|
}): Promise<Traverser>;
|
|
31628
31629
|
}
|