@skedulo/mex-types 1.11.0 → 1.12.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.
|
@@ -67,6 +67,7 @@ export interface ButtonGroupItemComponentModel {
|
|
|
67
67
|
*/
|
|
68
68
|
behavior: ButtonBehaviorComponentModel;
|
|
69
69
|
disabled?: DataExpressionType;
|
|
70
|
+
icon?: IconName;
|
|
70
71
|
}
|
|
71
72
|
export interface ButtonBehaviorComponentModel {
|
|
72
73
|
type: 'custom' | 'sms' | 'phone' | 'openUrl' | 'email' | 'openSelector';
|
|
@@ -132,3 +133,4 @@ export interface OpenSelectorButtonBehaviorComponentModel extends ButtonBehavior
|
|
|
132
133
|
onDataChosen: FunctionExpressionType;
|
|
133
134
|
};
|
|
134
135
|
}
|
|
136
|
+
export type IconName = 'copy' | 'logout' | 'search' | 'searchFilter' | 'alert' | 'attachment' | 'calendar' | 'camera' | 'check' | 'checkCircle' | 'debug' | 'delete' | 'edit' | 'email' | 'file' | 'filter' | 'info' | 'job' | 'launch' | 'location' | 'map' | 'mapLayers' | 'mapPin' | 'mobile' | 'more' | 'newMessage' | 'offline' | 'person' | 'phone' | 'photo' | 'settings' | 'shareAndroid' | 'shareIOS' | 'shifts' | 'signature' | 'sms' | 'target' | 'travelDistance';
|
|
@@ -297,6 +297,15 @@ export interface DateTimePickerViewComponentModel extends CommonEditorViewCompon
|
|
|
297
297
|
*/
|
|
298
298
|
timezone?: TimezoneType;
|
|
299
299
|
};
|
|
300
|
+
/**
|
|
301
|
+
* @label Time options
|
|
302
|
+
*/
|
|
303
|
+
timeOptions?: {
|
|
304
|
+
/**
|
|
305
|
+
* @label Minute Interval
|
|
306
|
+
*/
|
|
307
|
+
minuteInterval?: 5 | 10 | 15 | 20 | 30;
|
|
308
|
+
};
|
|
300
309
|
/**
|
|
301
310
|
* @label Value expression
|
|
302
311
|
*/
|