@skedulo/mex-types 1.11.1 → 1.13.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';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseComponentModel } from '../common/BaseComponentModel';
|
|
2
|
-
import { ButtonGroupItemComponentModel, DataExpressionType, FunctionExpressionType, GroupByFeatureModel, ListPageAddNewDefaultDataType, LocalizedKey, OneLevelBindingObject, OrderByModel, RoutingType, TimezoneType } from '../common/CommonTypes';
|
|
2
|
+
import { ButtonGroupItemComponentModel, DataExpressionType, FunctionExpressionType, GroupByFeatureModel, IconName, ListPageAddNewDefaultDataType, LocalizedKey, OneLevelBindingObject, OrderByModel, RoutingType, TimezoneType } from '../common/CommonTypes';
|
|
3
3
|
import { SelectPageOnlineSource, SelectPageSearchBarConfig } from './SearchPage';
|
|
4
4
|
import { ValidatorDefinitionModel } from '../validator/ValidatorModel';
|
|
5
5
|
export interface BaseFlatPageViewComponentModel extends BaseComponentModel {
|
|
@@ -363,6 +363,7 @@ export interface MenuListItem extends BaseFlatPageViewComponentModel {
|
|
|
363
363
|
* @label Badge Text
|
|
364
364
|
*/
|
|
365
365
|
badgeText: LocalizedKey;
|
|
366
|
+
icon?: IconName;
|
|
366
367
|
}
|
|
367
368
|
export interface BaseSelectEditor {
|
|
368
369
|
/**
|