@skedulo/mex-types 1.6.10 → 1.6.12
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.
|
@@ -408,7 +408,8 @@ export interface BaseSelectEditor {
|
|
|
408
408
|
* Apply for Mex survey only
|
|
409
409
|
* This property is used to allow users add choices to the picklist, multi picklist
|
|
410
410
|
* @typeAdhoc textarea
|
|
411
|
-
* @label Add choices
|
|
411
|
+
* @label Add your drop down choices.
|
|
412
|
+
* @placeholder Each choice must be on a separate line
|
|
412
413
|
*/
|
|
413
414
|
options?: string;
|
|
414
415
|
}
|
|
@@ -417,7 +418,7 @@ export interface BaseSelectEditor {
|
|
|
417
418
|
* @value selectEditor
|
|
418
419
|
* @description Select a single item from a list
|
|
419
420
|
* @label Drop down
|
|
420
|
-
* @fieldOrders ['title', 'mandatory', 'options']
|
|
421
|
+
* @fieldOrders ['title', 'placeholder', 'mandatory', 'options']
|
|
421
422
|
*/
|
|
422
423
|
export interface SelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
|
|
423
424
|
/**
|
|
@@ -446,7 +447,7 @@ export interface SelectEditorViewComponentModel extends CommonEditorViewComponen
|
|
|
446
447
|
* @value multiSelectEditor
|
|
447
448
|
* @description Select one or more items from a list
|
|
448
449
|
* @label Multi-select drop down
|
|
449
|
-
* @fieldOrders ['title', 'mandatory', 'options']
|
|
450
|
+
* @fieldOrders ['title', 'placeholder', 'mandatory', 'options']
|
|
450
451
|
*/
|
|
451
452
|
export interface MultiSelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
|
|
452
453
|
/**
|