@skedulo/mex-types 1.31.0 → 1.33.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.
|
@@ -16,6 +16,13 @@ export type AsyncExpressionType = {
|
|
|
16
16
|
expression: DataExpressionType;
|
|
17
17
|
query: OnlineFetchDataQuery;
|
|
18
18
|
};
|
|
19
|
+
/**
|
|
20
|
+
* @version: 1.14.0
|
|
21
|
+
*/
|
|
22
|
+
export interface DynamicContent {
|
|
23
|
+
type: 'dynamicContent';
|
|
24
|
+
contentDataExpression: DataExpressionType;
|
|
25
|
+
}
|
|
19
26
|
export type TimezoneType = 'none' | 'job' | 'local';
|
|
20
27
|
export type ValueExpressionLogic = {
|
|
21
28
|
condition?: DataExpressionType;
|
|
@@ -125,6 +132,12 @@ export interface RoutingBehaviorComponentModel extends ButtonBehaviorComponentMo
|
|
|
125
132
|
destination: RoutingType;
|
|
126
133
|
type: 'routing';
|
|
127
134
|
}
|
|
135
|
+
export type AddressSelectPageConfig = {
|
|
136
|
+
header?: {
|
|
137
|
+
title?: LocalizedKey;
|
|
138
|
+
hasClearBtn: boolean;
|
|
139
|
+
};
|
|
140
|
+
};
|
|
128
141
|
export type SelectPageConfig = {
|
|
129
142
|
searchBar: {
|
|
130
143
|
filterOnProperties?: string[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ButtonGroupItemComponentModel, DataExpressionType, FunctionExpressionType, GroupByFeatureModel, ListPageAddNewDefaultDataType, LocalizedKey, OneLevelBindingObject, OnlineDeleteDataQuery, OnlineFetchDataQuery, OnlineFetchListDataQuery, OnlineUpsertDataQuery, OrderByModel, RoutingType, ValueExpressionType } from '../common';
|
|
1
|
+
import { ButtonGroupItemComponentModel, DataExpressionType, DynamicContent, FunctionExpressionType, GroupByFeatureModel, ListPageAddNewDefaultDataType, LocalizedKey, OneLevelBindingObject, OnlineDeleteDataQuery, OnlineFetchDataQuery, OnlineFetchListDataQuery, OnlineUpsertDataQuery, OrderByModel, RoutingType, ValueExpressionType } from '../common';
|
|
2
2
|
import { BaseListPageViewComponentModel } from '../view';
|
|
3
3
|
import { BaseComponentModel } from '../common';
|
|
4
4
|
import { BaseFlatPageViewComponentModel } from '../view';
|
|
@@ -11,15 +11,24 @@ export type UIDefinition = {
|
|
|
11
11
|
* @label First page
|
|
12
12
|
* @placeholder Enter a page name
|
|
13
13
|
* @tooltip Enter the name of the page you want to set as the initial page for the form
|
|
14
|
+
* @deprecated Use content from { UIDefinition.content.firstPage }
|
|
14
15
|
*/
|
|
15
|
-
firstPage
|
|
16
|
+
firstPage?: string;
|
|
16
17
|
/**
|
|
18
|
+
* @deprecated Use content from { UIDefinition.content.readonly }
|
|
17
19
|
* @label Prevent form submission on job statuses
|
|
18
20
|
* @placeholder Select job statuses
|
|
19
21
|
* @tooltip Users will not be able to submit this form when the job is in any of the chosen job statuses
|
|
20
22
|
*/
|
|
21
23
|
readonly?: boolean;
|
|
22
|
-
|
|
24
|
+
/**
|
|
25
|
+
* @deprecated Use content from { UIDefinition.content.pages }
|
|
26
|
+
*/
|
|
27
|
+
pages?: AllPageComponentModel[];
|
|
28
|
+
/**
|
|
29
|
+
* @version 1.14.0
|
|
30
|
+
*/
|
|
31
|
+
content?: UIDefinitionContent | DynamicContent;
|
|
23
32
|
events?: {
|
|
24
33
|
onDataInitialized?: FunctionExpressionType;
|
|
25
34
|
};
|
|
@@ -34,7 +43,34 @@ export type UIDefinition = {
|
|
|
34
43
|
* @version 1.10.0
|
|
35
44
|
*/
|
|
36
45
|
entryValidator?: ValidatorDefinitionModel;
|
|
46
|
+
/**
|
|
47
|
+
* This property is used to trigger form data fetch when user first enter the form
|
|
48
|
+
* @availability: online
|
|
49
|
+
* @version 1.14.0
|
|
50
|
+
*/
|
|
51
|
+
formDataExpression?: AdvancedPageDataExpression;
|
|
52
|
+
/**
|
|
53
|
+
* @version 1.14.0
|
|
54
|
+
*/
|
|
55
|
+
extras?: {
|
|
56
|
+
localesDataExpression?: DataExpressionType;
|
|
57
|
+
};
|
|
37
58
|
};
|
|
59
|
+
/**
|
|
60
|
+
* @version 1.14.0
|
|
61
|
+
*/
|
|
62
|
+
export interface UIDefinitionContent {
|
|
63
|
+
pages: {
|
|
64
|
+
[key: string]: AllPageComponentModel;
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* @label Prevent form submission on job statuses
|
|
68
|
+
* @placeholder Select job statuses
|
|
69
|
+
* @tooltip Users will not be able to submit this form when the job is in any of the chosen job statuses
|
|
70
|
+
*/
|
|
71
|
+
readonly?: boolean;
|
|
72
|
+
firstPage: string;
|
|
73
|
+
}
|
|
38
74
|
export interface BasePageComponentModel extends BaseComponentModel {
|
|
39
75
|
/**
|
|
40
76
|
* @label Title
|
|
@@ -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
|