@skedulo/mex-types 1.6.2 → 1.6.3
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.
|
@@ -86,14 +86,15 @@ export interface TextEditorViewComponentModel extends CommonEditorViewComponentM
|
|
|
86
86
|
/**
|
|
87
87
|
* @area Components
|
|
88
88
|
* @value readonlyTextView
|
|
89
|
-
* @description
|
|
90
|
-
* @label
|
|
89
|
+
* @description Content for users to read
|
|
90
|
+
* @label Read-only label
|
|
91
|
+
* @fieldOrders ['title', 'text']
|
|
91
92
|
*/
|
|
92
93
|
export interface ReadonlyTextViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder {
|
|
93
94
|
/**
|
|
94
95
|
* @label Text
|
|
95
96
|
*/
|
|
96
|
-
text
|
|
97
|
+
text?: LocalizedKey;
|
|
97
98
|
}
|
|
98
99
|
export type SkedButtonTheme = 'success' | 'primary' | 'default';
|
|
99
100
|
/**
|