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