@skedulo/mex-types 1.31.0 → 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[];
|
|
@@ -536,6 +536,16 @@ export interface MultiSelectEditorViewComponentModel extends CommonEditorViewCom
|
|
|
536
536
|
*/
|
|
537
537
|
validator: ValidatorDefinitionModel;
|
|
538
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
|
+
}
|
|
539
549
|
/**
|
|
540
550
|
* @area Components
|
|
541
551
|
* @value numberEditor
|