@skedulo/mex-types 1.30.2 → 1.32.0
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.
|
@@ -125,6 +125,12 @@ export interface RoutingBehaviorComponentModel extends ButtonBehaviorComponentMo
|
|
|
125
125
|
destination: RoutingType;
|
|
126
126
|
type: 'routing';
|
|
127
127
|
}
|
|
128
|
+
export type AddressSelectPageConfig = {
|
|
129
|
+
header?: {
|
|
130
|
+
title?: LocalizedKey;
|
|
131
|
+
hasClearBtn: boolean;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
128
134
|
export type SelectPageConfig = {
|
|
129
135
|
searchBar: {
|
|
130
136
|
filterOnProperties?: string[];
|
|
@@ -100,6 +100,10 @@ export interface TextEditorViewComponentModel extends CommonEditorViewComponentM
|
|
|
100
100
|
* @version 1.10.15
|
|
101
101
|
*/
|
|
102
102
|
dataType?: TextEditorDataType;
|
|
103
|
+
/**
|
|
104
|
+
* @version 1.13.0
|
|
105
|
+
*/
|
|
106
|
+
invalidDataTypeErrorMessage?: LocalizedKey;
|
|
103
107
|
/**
|
|
104
108
|
* @label Value expression
|
|
105
109
|
*/
|
|
@@ -532,6 +536,16 @@ export interface MultiSelectEditorViewComponentModel extends CommonEditorViewCom
|
|
|
532
536
|
*/
|
|
533
537
|
validator: ValidatorDefinitionModel;
|
|
534
538
|
}
|
|
539
|
+
/**
|
|
540
|
+
* @version 1.14.0
|
|
541
|
+
*/
|
|
542
|
+
export interface AddressSelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder {
|
|
543
|
+
structureExpression: DataExpressionType;
|
|
544
|
+
displayExpression: DataExpressionType;
|
|
545
|
+
selectPage?: {
|
|
546
|
+
title?: LocalizedKey;
|
|
547
|
+
};
|
|
548
|
+
}
|
|
535
549
|
/**
|
|
536
550
|
* @area Components
|
|
537
551
|
* @value numberEditor
|