lucid-extension-sdk 0.0.184 → 0.0.186
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.
|
@@ -51,7 +51,11 @@ export declare enum OnClickHandlerKeys {
|
|
|
51
51
|
/**
|
|
52
52
|
* Open a new browser window to a URL specified by linkFormula
|
|
53
53
|
*/
|
|
54
|
-
OpenBrowserWindow = "OpenBrowserWindow"
|
|
54
|
+
OpenBrowserWindow = "OpenBrowserWindow",
|
|
55
|
+
/**
|
|
56
|
+
* Display a custom UI panel to edit non-standard fields on the data associated with the card
|
|
57
|
+
*/
|
|
58
|
+
CustomEditAction = "CustomEditAction"
|
|
55
59
|
}
|
|
56
60
|
export declare const isOnClickHandlerKey: (x: unknown) => x is OnClickHandlerKeys;
|
|
57
61
|
export type ImageBadgeSettings = {
|
|
@@ -57,6 +57,10 @@ var OnClickHandlerKeys;
|
|
|
57
57
|
* Open a new browser window to a URL specified by linkFormula
|
|
58
58
|
*/
|
|
59
59
|
OnClickHandlerKeys["OpenBrowserWindow"] = "OpenBrowserWindow";
|
|
60
|
+
/**
|
|
61
|
+
* Display a custom UI panel to edit non-standard fields on the data associated with the card
|
|
62
|
+
*/
|
|
63
|
+
OnClickHandlerKeys["CustomEditAction"] = "CustomEditAction";
|
|
60
64
|
})(OnClickHandlerKeys = exports.OnClickHandlerKeys || (exports.OnClickHandlerKeys = {}));
|
|
61
65
|
exports.isOnClickHandlerKey = (0, validators_1.enumValidator)(OnClickHandlerKeys);
|
|
62
66
|
/** @ignore */
|
package/core/dataerrortype.d.ts
CHANGED
|
@@ -34,5 +34,9 @@ export declare const enum DataErrorType {
|
|
|
34
34
|
/**
|
|
35
35
|
* The formula contains an attribute reference to an entity that does not exist.
|
|
36
36
|
*/
|
|
37
|
-
AttributeNotFound = 7
|
|
37
|
+
AttributeNotFound = 7,
|
|
38
|
+
/**
|
|
39
|
+
* The formula contains an interface reference that does not exist.
|
|
40
|
+
*/
|
|
41
|
+
InterfaceNotFound = 8
|
|
38
42
|
}
|