@skedulo/mex-types 1.16.0 → 1.16.2
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.
|
@@ -13,11 +13,17 @@ export interface BaseFlatPageViewComponentModel extends BaseComponentModel {
|
|
|
13
13
|
* @area Components
|
|
14
14
|
* @value textView
|
|
15
15
|
* @description Content for users to read
|
|
16
|
-
* @label
|
|
16
|
+
* @label Read-only
|
|
17
17
|
* @fieldOrders ['title', 'text', 'showIfExpression']
|
|
18
18
|
*/
|
|
19
19
|
export interface TextViewComponentModel extends BaseFlatPageViewComponentModel {
|
|
20
|
+
/**
|
|
21
|
+
* @label Title
|
|
22
|
+
*/
|
|
20
23
|
title?: LocalizedKey;
|
|
24
|
+
/**
|
|
25
|
+
* @label Text
|
|
26
|
+
*/
|
|
21
27
|
text: LocalizedKey;
|
|
22
28
|
}
|
|
23
29
|
export type KeyboardType = 'default' | 'email-address' | 'numeric' | 'phone-pad' | 'number-pad' | 'decimal-pad';
|