@skedulo/mex-types 1.16.3 → 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.
|
@@ -28,6 +28,11 @@ export type UIDefinition = {
|
|
|
28
28
|
settings?: {
|
|
29
29
|
fullOnlineMode: boolean;
|
|
30
30
|
};
|
|
31
|
+
/**
|
|
32
|
+
* @label Entry Validator
|
|
33
|
+
* @version 1.10.0
|
|
34
|
+
*/
|
|
35
|
+
entryValidator?: ValidatorDefinitionModel;
|
|
31
36
|
};
|
|
32
37
|
export interface BasePageComponentModel extends BaseComponentModel {
|
|
33
38
|
/**
|
|
@@ -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
|