@skedulo/mex-types 1.6.1 → 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
|
/**
|
|
@@ -398,10 +399,12 @@ export interface BaseSelectEditor {
|
|
|
398
399
|
* @value selectEditor
|
|
399
400
|
* @description Allow selecting a single value from a pre-defined list of options
|
|
400
401
|
* @label Picklist
|
|
402
|
+
* @fieldOrders ['title', 'placeholder', 'mandatory', 'readonly']
|
|
401
403
|
*/
|
|
402
404
|
export interface SelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
|
|
403
405
|
/**
|
|
404
|
-
* @label
|
|
406
|
+
* @label Caption
|
|
407
|
+
*
|
|
405
408
|
*/
|
|
406
409
|
caption: LocalizedKey;
|
|
407
410
|
/**
|
|
@@ -425,6 +428,7 @@ export interface SelectEditorViewComponentModel extends CommonEditorViewComponen
|
|
|
425
428
|
* @value multiSelectEditor
|
|
426
429
|
* @description Allow selecting one or more values from a pre-defined list of options
|
|
427
430
|
* @label Multi-picklist
|
|
431
|
+
* @fieldOrders ['title', 'placeholder', 'mandatory', 'readonly']
|
|
428
432
|
*/
|
|
429
433
|
export interface MultiSelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
|
|
430
434
|
/**
|