@skedulo/mex-types 1.6.7 → 1.6.9

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.
@@ -218,8 +218,9 @@ export interface SignatureEditorViewComponentModel extends CommonEditorViewCompo
218
218
  /**
219
219
  * @area Components
220
220
  * @value toggleEditor
221
- * @description Allow users to toggle between two states
221
+ * @description Switch between two opposing states
222
222
  * @label Toggle
223
+ * @fieldOrders []
223
224
  */
224
225
  export interface ToggleEditorViewComponentModel extends CommonEditorViewComponentModel {
225
226
  /**
@@ -255,7 +256,7 @@ export interface ToggleEditorItemModel {
255
256
  */
256
257
  offValue: any;
257
258
  /**
258
- * @label Text
259
+ * @label Title
259
260
  */
260
261
  text: LocalizedKey;
261
262
  }
@@ -407,15 +408,16 @@ export interface BaseSelectEditor {
407
408
  * Apply for Mex survey only
408
409
  * This property is used to allow users add choices to the picklist, multi picklist
409
410
  * @typeAdhoc textarea
411
+ * @label Add choices
410
412
  */
411
413
  options?: string;
412
414
  }
413
415
  /**
414
416
  * @area Components
415
417
  * @value selectEditor
416
- * @description Allow selecting a single value from a pre-defined list of options
417
- * @label Picklist
418
- * @fieldOrders ['title', 'placeholder', 'mandatory', 'readonly', 'options']
418
+ * @description Select a single item from a list
419
+ * @label Drop down
420
+ * @fieldOrders ['title', 'mandatory', 'options']
419
421
  */
420
422
  export interface SelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
421
423
  /**
@@ -442,8 +444,8 @@ export interface SelectEditorViewComponentModel extends CommonEditorViewComponen
442
444
  /**
443
445
  * @area Components
444
446
  * @value multiSelectEditor
445
- * @description Allow selecting one or more values from a pre-defined list of options
446
- * @label Multi-picklist
447
+ * @description Select one or more items from a list
448
+ * @label Multi-select drop down
447
449
  * @fieldOrders ['title', 'placeholder', 'mandatory', 'readonly', 'options']
448
450
  */
449
451
  export interface MultiSelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skedulo/mex-types",
3
- "version": "1.6.7",
3
+ "version": "1.6.9",
4
4
  "engines": {
5
5
  "node": "18"
6
6
  },