lucid-extension-sdk 0.0.65 → 0.0.66

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-extension-sdk",
3
- "version": "0.0.65",
3
+ "version": "0.0.66",
4
4
  "description": "Utility classes for writing Lucid Software editor extensions",
5
5
  "main": "sdk/index.js",
6
6
  "types": "sdk/index.d.ts",
@@ -24,6 +24,10 @@ export declare enum FieldDisplayType {
24
24
  * Given a URL, display a small image cropped into a circle in the lower-left of the card.
25
25
  */
26
26
  ImageBadge = "ImageBadge",
27
+ /**
28
+ * Given a URL, display a small image cropped into a square in the lower-left of the card.
29
+ */
30
+ SquareImageBadge = "SquareImageBadge",
27
31
  /**
28
32
  * Given a date, display a small calendar icon alongside a very short version of the date
29
33
  * as a string, e.g. "Sep 9"
@@ -28,6 +28,10 @@ var FieldDisplayType;
28
28
  * Given a URL, display a small image cropped into a circle in the lower-left of the card.
29
29
  */
30
30
  FieldDisplayType["ImageBadge"] = "ImageBadge";
31
+ /**
32
+ * Given a URL, display a small image cropped into a square in the lower-left of the card.
33
+ */
34
+ FieldDisplayType["SquareImageBadge"] = "SquareImageBadge";
31
35
  /**
32
36
  * Given a date, display a small calendar icon alongside a very short version of the date
33
37
  * as a string, e.g. "Sep 9"