lucid-extension-sdk
Advanced tools
Comparing version 0.0.260 to 0.0.261
@@ -51,2 +51,6 @@ export declare enum ConditionCombination { | ||
} | ||
export type Conditions = TextConditions | ShapeDataConditions | ShapeTypeConditions | ConnectedShapesCondition; | ||
export declare enum ContainmentConditions { | ||
TextContains = 2, | ||
TextDoesNotContain = 3 | ||
} | ||
export type Conditions = TextConditions | ShapeDataConditions | ShapeTypeConditions | ConnectedShapesCondition | ContainmentConditions; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ConnectedShapesCondition = exports.ShapeTypeConditions = exports.ShapeDataConditions = exports.TextConditions = exports.ConditionCombination = void 0; | ||
exports.ContainmentConditions = exports.ConnectedShapesCondition = exports.ShapeTypeConditions = exports.ShapeDataConditions = exports.TextConditions = exports.ConditionCombination = void 0; | ||
var ConditionCombination; | ||
@@ -59,1 +59,6 @@ (function (ConditionCombination) { | ||
})(ConnectedShapesCondition || (exports.ConnectedShapesCondition = ConnectedShapesCondition = {})); | ||
var ContainmentConditions; | ||
(function (ContainmentConditions) { | ||
ContainmentConditions[ContainmentConditions["TextContains"] = 2] = "TextContains"; | ||
ContainmentConditions[ContainmentConditions["TextDoesNotContain"] = 3] = "TextDoesNotContain"; | ||
})(ContainmentConditions || (exports.ContainmentConditions = ContainmentConditions = {})); |
@@ -6,3 +6,4 @@ export declare enum ConditionType { | ||
ShapeType = 3, | ||
ConnectedShapes = 4 | ||
ConnectedShapes = 4, | ||
Containment = 5 | ||
} |
@@ -11,2 +11,3 @@ "use strict"; | ||
ConditionType[ConditionType["ConnectedShapes"] = 4] = "ConnectedShapes"; | ||
ConditionType[ConditionType["Containment"] = 5] = "Containment"; | ||
})(ConditionType || (exports.ConditionType = ConditionType = {})); |
@@ -16,3 +16,4 @@ /** | ||
ShapeStylePreset = "ShapeStylePreset", | ||
ShapeSpecificDefaultProperties = "ShapeSpecificDefaultProperties" | ||
ShapeSpecificDefaultProperties = "ShapeSpecificDefaultProperties", | ||
TrackedFormulaLocation = "TrackedFormulaLocation" | ||
} |
@@ -21,2 +21,3 @@ "use strict"; | ||
DocumentElementType["ShapeSpecificDefaultProperties"] = "ShapeSpecificDefaultProperties"; | ||
DocumentElementType["TrackedFormulaLocation"] = "TrackedFormulaLocation"; | ||
})(DocumentElementType || (exports.DocumentElementType = DocumentElementType = {})); |
{ | ||
"name": "lucid-extension-sdk", | ||
"version": "0.0.260", | ||
"version": "0.0.261", | ||
"description": "Utility classes for writing Lucid Software editor extensions", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
752964
17477