@skedulo/mex-types 1.36.5 → 1.37.0
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.
|
@@ -569,7 +569,7 @@ export interface AddressSelectEditorViewComponentModel extends CommonEditorViewC
|
|
|
569
569
|
* @label Number input
|
|
570
570
|
* @fieldOrders ['title', 'caption', 'placeholder', 'mandatory', 'showIfExpression']
|
|
571
571
|
*/
|
|
572
|
-
export interface NumberEditorViewComponentModel extends CommonEditorViewComponentModel, WithPlaceholder {
|
|
572
|
+
export interface NumberEditorViewComponentModel extends CommonEditorViewComponentModel, WithPlaceholder, WithTitle {
|
|
573
573
|
/**
|
|
574
574
|
* @label Value expression
|
|
575
575
|
*/
|
|
@@ -22,7 +22,20 @@ export interface ListItemHeaderContent {
|
|
|
22
22
|
image?: SkedRemoteAttachment;
|
|
23
23
|
}
|
|
24
24
|
export interface SkedRemoteAttachment {
|
|
25
|
+
/**
|
|
26
|
+
* @description: Fetching image from a Skedulo FilePtr
|
|
27
|
+
*/
|
|
25
28
|
filePtr?: DataExpressionType;
|
|
29
|
+
/**
|
|
30
|
+
* @version: 1.14.x
|
|
31
|
+
* @description: Fetching image from an absolute url
|
|
32
|
+
*/
|
|
33
|
+
imageUrl?: DataExpressionType;
|
|
34
|
+
/**
|
|
35
|
+
* @version: 1.14.x
|
|
36
|
+
* @description: Fetching image from a resource id, this approach will fetch resource profile picture
|
|
37
|
+
*/
|
|
38
|
+
profilePicFromResourceId?: DataExpressionType;
|
|
26
39
|
}
|
|
27
40
|
export interface UseAttachments {
|
|
28
41
|
/**
|