@skedulo/mex-types 1.6.3 → 1.6.5
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.
|
@@ -140,14 +140,14 @@ export interface ListPageSearchComponentModel {
|
|
|
140
140
|
* @label Advanced filter
|
|
141
141
|
*/
|
|
142
142
|
advancedFilter: ListPageAdvancedFilterModel;
|
|
143
|
-
defaultData: OneLevelBindingObject;
|
|
144
|
-
events?: {
|
|
145
|
-
afterFilterSubmit?: FunctionExpressionType;
|
|
146
|
-
};
|
|
147
143
|
}
|
|
148
144
|
export interface ListPageAdvancedFilterModel {
|
|
149
145
|
ui?: ListPageAdvancedFilterUI;
|
|
150
146
|
expression: DataExpressionType;
|
|
147
|
+
defaultData: OneLevelBindingObject;
|
|
148
|
+
events?: {
|
|
149
|
+
afterFilterSubmit?: FunctionExpressionType;
|
|
150
|
+
};
|
|
151
151
|
}
|
|
152
152
|
export type ListPageAdvancedFilterUI = {
|
|
153
153
|
items: BaseFlatPageViewComponentModel[];
|
|
@@ -82,6 +82,16 @@ export interface TextEditorViewComponentModel extends CommonEditorViewComponentM
|
|
|
82
82
|
* @label Multiline
|
|
83
83
|
*/
|
|
84
84
|
multiline?: boolean;
|
|
85
|
+
/**
|
|
86
|
+
* @label Features
|
|
87
|
+
*/
|
|
88
|
+
features?: TextEditorFeaturesModel;
|
|
89
|
+
}
|
|
90
|
+
export interface TextEditorFeaturesModel {
|
|
91
|
+
/**
|
|
92
|
+
* @label: Use Barcode and QR Scanner
|
|
93
|
+
*/
|
|
94
|
+
useBarcodeAndQRScanner?: boolean;
|
|
85
95
|
}
|
|
86
96
|
/**
|
|
87
97
|
* @area Components
|
|
@@ -393,13 +403,19 @@ export interface BaseSelectEditor {
|
|
|
393
403
|
*/
|
|
394
404
|
orderBy?: OrderByModel;
|
|
395
405
|
};
|
|
406
|
+
/**
|
|
407
|
+
* Apply for Mex survey only
|
|
408
|
+
* This property is used to allow users add choices to the picklist, multi picklist
|
|
409
|
+
* @typeAdhoc textarea
|
|
410
|
+
*/
|
|
411
|
+
options: string;
|
|
396
412
|
}
|
|
397
413
|
/**
|
|
398
414
|
* @area Components
|
|
399
415
|
* @value selectEditor
|
|
400
416
|
* @description Allow selecting a single value from a pre-defined list of options
|
|
401
417
|
* @label Picklist
|
|
402
|
-
* @fieldOrders ['title', 'placeholder', 'mandatory', 'readonly']
|
|
418
|
+
* @fieldOrders ['title', 'placeholder', 'mandatory', 'readonly', 'options']
|
|
403
419
|
*/
|
|
404
420
|
export interface SelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
|
|
405
421
|
/**
|
|
@@ -428,7 +444,7 @@ export interface SelectEditorViewComponentModel extends CommonEditorViewComponen
|
|
|
428
444
|
* @value multiSelectEditor
|
|
429
445
|
* @description Allow selecting one or more values from a pre-defined list of options
|
|
430
446
|
* @label Multi-picklist
|
|
431
|
-
* @fieldOrders ['title', 'placeholder', 'mandatory', 'readonly']
|
|
447
|
+
* @fieldOrders ['title', 'placeholder', 'mandatory', 'readonly', 'options']
|
|
432
448
|
*/
|
|
433
449
|
export interface MultiSelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
|
|
434
450
|
/**
|