@elyx-code/project-logic-tree 0.0.6626 → 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 +12 -1
- package/dist/index.js +2135 -2104
- package/dist/index.umd.cjs +45 -45
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -17440,7 +17440,18 @@ export declare function getIntegrationIdFromDefinitionEntity(entity: DefinitionE
|
|
|
17440
17440
|
|
|
17441
17441
|
export declare function getIntegrationIdFromEntity(entity: DefinitionEntityState | BuiltInBaseEntityState | ActionDescriptorState | OperationState): ExternalIntegrationNames | null;
|
|
17442
17442
|
|
|
17443
|
-
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;
|
|
17444
17455
|
|
|
17445
17456
|
export declare const getIsoWdDateArg: IValueDescriptorTransfer;
|
|
17446
17457
|
|