lucid-extension-sdk 0.0.260 → 0.0.261

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.
@@ -48,4 +48,8 @@ export declare enum ConnectedShapesCondition {
48
48
  Between = 14,
49
49
  NotBetween = 15
50
50
  }
51
- export type Conditions = TextConditions | ShapeDataConditions | ShapeTypeConditions | ConnectedShapesCondition;
51
+ export declare enum ContainmentConditions {
52
+ TextContains = 2,
53
+ TextDoesNotContain = 3
54
+ }
55
+ export type Conditions = TextConditions | ShapeDataConditions | ShapeTypeConditions | ConnectedShapesCondition | ContainmentConditions;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ConnectedShapesCondition = exports.ShapeTypeConditions = exports.ShapeDataConditions = exports.TextConditions = exports.ConditionCombination = void 0;
3
+ exports.ContainmentConditions = exports.ConnectedShapesCondition = exports.ShapeTypeConditions = exports.ShapeDataConditions = exports.TextConditions = exports.ConditionCombination = void 0;
4
4
  var ConditionCombination;
5
5
  (function (ConditionCombination) {
6
6
  ConditionCombination["AND"] = "AND";
@@ -56,3 +56,8 @@ var ConnectedShapesCondition;
56
56
  ConnectedShapesCondition[ConnectedShapesCondition["Between"] = 14] = "Between";
57
57
  ConnectedShapesCondition[ConnectedShapesCondition["NotBetween"] = 15] = "NotBetween";
58
58
  })(ConnectedShapesCondition || (exports.ConnectedShapesCondition = ConnectedShapesCondition = {}));
59
+ var ContainmentConditions;
60
+ (function (ContainmentConditions) {
61
+ ContainmentConditions[ContainmentConditions["TextContains"] = 2] = "TextContains";
62
+ ContainmentConditions[ContainmentConditions["TextDoesNotContain"] = 3] = "TextDoesNotContain";
63
+ })(ContainmentConditions || (exports.ContainmentConditions = ContainmentConditions = {}));
@@ -3,5 +3,6 @@ export declare enum ConditionType {
3
3
  ShapeData = 1,
4
4
  Formula = 2,
5
5
  ShapeType = 3,
6
- ConnectedShapes = 4
6
+ ConnectedShapes = 4,
7
+ Containment = 5
7
8
  }
@@ -8,4 +8,5 @@ var ConditionType;
8
8
  ConditionType[ConditionType["Formula"] = 2] = "Formula";
9
9
  ConditionType[ConditionType["ShapeType"] = 3] = "ShapeType";
10
10
  ConditionType[ConditionType["ConnectedShapes"] = 4] = "ConnectedShapes";
11
+ ConditionType[ConditionType["Containment"] = 5] = "Containment";
11
12
  })(ConditionType || (exports.ConditionType = ConditionType = {}));
@@ -13,5 +13,6 @@ export declare enum DocumentElementType {
13
13
  TaskCardFieldsConfig = "TaskCardFieldsConfig",
14
14
  GeneratorView = "GeneratorView",
15
15
  ShapeStylePreset = "ShapeStylePreset",
16
- ShapeSpecificDefaultProperties = "ShapeSpecificDefaultProperties"
16
+ ShapeSpecificDefaultProperties = "ShapeSpecificDefaultProperties",
17
+ TrackedFormulaLocation = "TrackedFormulaLocation"
17
18
  }
@@ -18,4 +18,5 @@ var DocumentElementType;
18
18
  DocumentElementType["GeneratorView"] = "GeneratorView";
19
19
  DocumentElementType["ShapeStylePreset"] = "ShapeStylePreset";
20
20
  DocumentElementType["ShapeSpecificDefaultProperties"] = "ShapeSpecificDefaultProperties";
21
+ DocumentElementType["TrackedFormulaLocation"] = "TrackedFormulaLocation";
21
22
  })(DocumentElementType || (exports.DocumentElementType = DocumentElementType = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-extension-sdk",
3
- "version": "0.0.260",
3
+ "version": "0.0.261",
4
4
  "description": "Utility classes for writing Lucid Software editor extensions",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",