@skedulo/mex-types 1.6.4 → 1.6.5
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.
|
@@ -403,13 +403,19 @@ export interface BaseSelectEditor {
|
|
|
403
403
|
*/
|
|
404
404
|
orderBy?: OrderByModel;
|
|
405
405
|
};
|
|
406
|
+
/**
|
|
407
|
+
* Apply for Mex survey only
|
|
408
|
+
* This property is used to allow users add choices to the picklist, multi picklist
|
|
409
|
+
* @typeAdhoc textarea
|
|
410
|
+
*/
|
|
411
|
+
options: string;
|
|
406
412
|
}
|
|
407
413
|
/**
|
|
408
414
|
* @area Components
|
|
409
415
|
* @value selectEditor
|
|
410
416
|
* @description Allow selecting a single value from a pre-defined list of options
|
|
411
417
|
* @label Picklist
|
|
412
|
-
* @fieldOrders ['title', 'placeholder', 'mandatory', 'readonly']
|
|
418
|
+
* @fieldOrders ['title', 'placeholder', 'mandatory', 'readonly', 'options']
|
|
413
419
|
*/
|
|
414
420
|
export interface SelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
|
|
415
421
|
/**
|
|
@@ -438,7 +444,7 @@ export interface SelectEditorViewComponentModel extends CommonEditorViewComponen
|
|
|
438
444
|
* @value multiSelectEditor
|
|
439
445
|
* @description Allow selecting one or more values from a pre-defined list of options
|
|
440
446
|
* @label Multi-picklist
|
|
441
|
-
* @fieldOrders ['title', 'placeholder', 'mandatory', 'readonly']
|
|
447
|
+
* @fieldOrders ['title', 'placeholder', 'mandatory', 'readonly', 'options']
|
|
442
448
|
*/
|
|
443
449
|
export interface MultiSelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
|
|
444
450
|
/**
|