@skedulo/mex-types 1.6.8 → 1.6.10

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,15 +408,16 @@ 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
412
  */
412
413
  options?: string;
413
414
  }
414
415
  /**
415
416
  * @area Components
416
417
  * @value selectEditor
417
- * @description Allow selecting a single value from a pre-defined list of options
418
- * @label Picklist
419
- * @fieldOrders ['title', 'placeholder', 'mandatory', 'readonly', 'options']
418
+ * @description Select a single item from a list
419
+ * @label Drop down
420
+ * @fieldOrders ['title', 'mandatory', 'options']
420
421
  */
421
422
  export interface SelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
422
423
  /**
@@ -443,9 +444,9 @@ export interface SelectEditorViewComponentModel extends CommonEditorViewComponen
443
444
  /**
444
445
  * @area Components
445
446
  * @value multiSelectEditor
446
- * @description Allow selecting one or more values from a pre-defined list of options
447
- * @label Multi-picklist
448
- * @fieldOrders ['title', 'placeholder', 'mandatory', 'readonly', 'options']
447
+ * @description Select one or more items from a list
448
+ * @label Multi-select drop down
449
+ * @fieldOrders ['title', 'mandatory', 'options']
449
450
  */
450
451
  export interface MultiSelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
451
452
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skedulo/mex-types",
3
- "version": "1.6.8",
3
+ "version": "1.6.10",
4
4
  "engines": {
5
5
  "node": "18"
6
6
  },