@skedulo/mex-types 1.17.1 → 1.18.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.
|
@@ -27,6 +27,7 @@ export interface TextViewComponentModel extends BaseFlatPageViewComponentModel {
|
|
|
27
27
|
text: LocalizedKey;
|
|
28
28
|
}
|
|
29
29
|
export type KeyboardType = 'default' | 'email-address' | 'numeric' | 'phone-pad' | 'number-pad' | 'decimal-pad';
|
|
30
|
+
export type TextEditorDataType = 'string' | 'integer' | 'decimal';
|
|
30
31
|
export interface CommonEditorViewComponentModel extends BaseFlatPageViewComponentModel {
|
|
31
32
|
/**
|
|
32
33
|
* @label Title
|
|
@@ -86,6 +87,10 @@ export interface TextEditorViewComponentModel extends CommonEditorViewComponentM
|
|
|
86
87
|
* ]
|
|
87
88
|
*/
|
|
88
89
|
keyboardType?: KeyboardType;
|
|
90
|
+
/**
|
|
91
|
+
* @version 1.10.15
|
|
92
|
+
*/
|
|
93
|
+
dataType?: TextEditorDataType;
|
|
89
94
|
/**
|
|
90
95
|
* @label Value expression
|
|
91
96
|
*/
|