@elyx-code/project-logic-tree 0.0.6625 → 0.0.6627
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 +14 -2
- package/dist/index.js +2143 -2109
- package/dist/index.umd.cjs +45 -45
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9271,8 +9271,9 @@ export declare class ChangeSet extends Events {
|
|
|
9271
9271
|
author: string;
|
|
9272
9272
|
timestamp: string;
|
|
9273
9273
|
open: boolean;
|
|
9274
|
-
dirty: boolean;
|
|
9275
9274
|
startedClose: boolean;
|
|
9275
|
+
dirty: boolean;
|
|
9276
|
+
submitting: boolean;
|
|
9276
9277
|
lockedVersions: boolean;
|
|
9277
9278
|
type: ChangeSetChangeCaptureType;
|
|
9278
9279
|
autoclose: boolean;
|
|
@@ -17439,7 +17440,18 @@ export declare function getIntegrationIdFromDefinitionEntity(entity: DefinitionE
|
|
|
17439
17440
|
|
|
17440
17441
|
export declare function getIntegrationIdFromEntity(entity: DefinitionEntityState | BuiltInBaseEntityState | ActionDescriptorState | OperationState): ExternalIntegrationNames | null;
|
|
17441
17442
|
|
|
17442
|
-
export declare function getIsInteractive(entity: DefinitionEntityState | BuiltInBaseEntityState | PrimitiveEntityState): boolean;
|
|
17443
|
+
export declare function getIsInteractive(entity: DefinitionEntityState | BuiltInBaseEntityState | PrimitiveEntityState | PropertyState | InputMapState | OutputMapState): boolean;
|
|
17444
|
+
|
|
17445
|
+
/**
|
|
17446
|
+
* If the given entity is one of type: DefinitionEntity, BuiltInBaseEntity, PrimitiveEntity, Property, InputMap, OutputMap
|
|
17447
|
+
* Returns true if it is interactive
|
|
17448
|
+
*
|
|
17449
|
+
* Otherwise, for all other entity types, returns true
|
|
17450
|
+
*
|
|
17451
|
+
* @param {EntityState} entity
|
|
17452
|
+
* @returns boolean
|
|
17453
|
+
*/
|
|
17454
|
+
export declare function getIsInteractiveOrTrue(entity: EntityState): boolean;
|
|
17443
17455
|
|
|
17444
17456
|
export declare const getIsoWdDateArg: IValueDescriptorTransfer;
|
|
17445
17457
|
|