@skedulo/mex-types 1.10.0 → 1.11.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.
|
@@ -39,6 +39,7 @@ export interface CommonEditorViewComponentModel extends BaseFlatPageViewComponen
|
|
|
39
39
|
* @label Editor events
|
|
40
40
|
*/
|
|
41
41
|
editorEvents?: CommonEditorEvents;
|
|
42
|
+
caption?: LocalizedKey;
|
|
42
43
|
}
|
|
43
44
|
export interface CommonEditorEvents {
|
|
44
45
|
/**
|
|
@@ -296,6 +297,15 @@ export interface DateTimePickerViewComponentModel extends CommonEditorViewCompon
|
|
|
296
297
|
*/
|
|
297
298
|
timezone?: TimezoneType;
|
|
298
299
|
};
|
|
300
|
+
/**
|
|
301
|
+
* @label Time options
|
|
302
|
+
*/
|
|
303
|
+
timeOptions?: {
|
|
304
|
+
/**
|
|
305
|
+
* @label Minute Interval
|
|
306
|
+
*/
|
|
307
|
+
minuteInterval?: 5 | 10 | 15 | 20 | 30;
|
|
308
|
+
};
|
|
299
309
|
/**
|
|
300
310
|
* @label Value expression
|
|
301
311
|
*/
|
|
@@ -432,11 +442,6 @@ export interface BaseSelectEditor {
|
|
|
432
442
|
* @fieldOrders ['title', 'placeholder', 'mandatory', 'options']
|
|
433
443
|
*/
|
|
434
444
|
export interface SelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
|
|
435
|
-
/**
|
|
436
|
-
* @label Caption
|
|
437
|
-
*
|
|
438
|
-
*/
|
|
439
|
-
caption: LocalizedKey;
|
|
440
445
|
/**
|
|
441
446
|
* @label Value expression
|
|
442
447
|
* @hidden true
|