@skedulo/mex-types 1.17.0 → 1.17.1

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.
@@ -498,6 +498,19 @@ export interface MultiSelectEditorViewComponentModel extends CommonEditorViewCom
498
498
  */
499
499
  validator: ValidatorDefinitionModel;
500
500
  }
501
+ /**
502
+ * @area Components
503
+ * @value numberEditor
504
+ * @description Standard number input field
505
+ * @label Number input
506
+ * @fieldOrders ['title', 'placeholder', 'mandatory', 'showIfExpression']
507
+ */
508
+ export interface NumberEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder {
509
+ /**
510
+ * @label Value expression
511
+ */
512
+ valueExpression: DataExpressionType;
513
+ }
501
514
  export interface ConstructResultObject {
502
515
  /**
503
516
  * @label Data
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skedulo/mex-types",
3
- "version": "1.17.0",
3
+ "version": "1.17.1",
4
4
  "engines": {
5
5
  "node": "18"
6
6
  },