lucid-extension-sdk 0.0.396 → 0.0.399
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.
|
@@ -44,8 +44,14 @@ export declare enum FieldDisplayType {
|
|
|
44
44
|
UserProfile = "UserProfile",
|
|
45
45
|
/**
|
|
46
46
|
* Given an enum value, display the string representation of the enum value.
|
|
47
|
+
* Truncates value to be a maximum of 20 chars, appending '...' to the given value.
|
|
47
48
|
*/
|
|
48
|
-
CustomSingleSelectField = "CustomSingleSelectField"
|
|
49
|
+
CustomSingleSelectField = "CustomSingleSelectField",
|
|
50
|
+
/**
|
|
51
|
+
* A simple text badge stylized for short text custom fields.
|
|
52
|
+
* Truncates value to be a maximum of 20 chars, appending '...' to the given value.
|
|
53
|
+
*/
|
|
54
|
+
CustomTextField = "CustomTextField"
|
|
49
55
|
}
|
|
50
56
|
export declare const isFieldDisplayType: (x: unknown) => x is FieldDisplayType;
|
|
51
57
|
/**
|
|
@@ -49,8 +49,14 @@ var FieldDisplayType;
|
|
|
49
49
|
FieldDisplayType["UserProfile"] = "UserProfile";
|
|
50
50
|
/**
|
|
51
51
|
* Given an enum value, display the string representation of the enum value.
|
|
52
|
+
* Truncates value to be a maximum of 20 chars, appending '...' to the given value.
|
|
52
53
|
*/
|
|
53
54
|
FieldDisplayType["CustomSingleSelectField"] = "CustomSingleSelectField";
|
|
55
|
+
/**
|
|
56
|
+
* A simple text badge stylized for short text custom fields.
|
|
57
|
+
* Truncates value to be a maximum of 20 chars, appending '...' to the given value.
|
|
58
|
+
*/
|
|
59
|
+
FieldDisplayType["CustomTextField"] = "CustomTextField";
|
|
54
60
|
})(FieldDisplayType || (exports.FieldDisplayType = FieldDisplayType = {}));
|
|
55
61
|
exports.isFieldDisplayType = (0, validators_1.enumValidator)(FieldDisplayType);
|
|
56
62
|
/**
|