@skedulo/mex-types 1.4.2 → 1.5.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.
|
@@ -53,6 +53,7 @@ export interface CommonEditorWithPlaceholder {
|
|
|
53
53
|
* @value textEditor
|
|
54
54
|
* @description Enable users to input data from mobile app
|
|
55
55
|
* @label Text input
|
|
56
|
+
* @fieldOrders ['title', 'keyboardType', 'placeholder', 'mandatory', 'readonly', 'multiline']
|
|
56
57
|
*/
|
|
57
58
|
export interface TextEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder {
|
|
58
59
|
/**
|
|
@@ -412,7 +413,8 @@ export interface SelectEditorViewComponentModel extends CommonEditorViewComponen
|
|
|
412
413
|
*/
|
|
413
414
|
export interface MultiSelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
|
|
414
415
|
displayDataInSearchPageExpression: DataExpressionType;
|
|
415
|
-
constructResultObject
|
|
416
|
+
constructResultObject?: ConstructResultObject;
|
|
417
|
+
valueExpression?: DataExpressionType;
|
|
416
418
|
/**
|
|
417
419
|
* TODO: Remove typeAdhoc for union type, and dynamic form need to support Array of object
|
|
418
420
|
* @label Validator
|