@skedulo/mex-types 1.3.19 → 1.3.20
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.
|
@@ -52,6 +52,7 @@ export interface CommonEditorWithPlaceholder {
|
|
|
52
52
|
* @area Components
|
|
53
53
|
* @value textEditor
|
|
54
54
|
* @description Enable users to input data from mobile app
|
|
55
|
+
* @label Text input
|
|
55
56
|
*/
|
|
56
57
|
export interface TextEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder {
|
|
57
58
|
/**
|
|
@@ -85,6 +86,7 @@ export interface TextEditorViewComponentModel extends CommonEditorViewComponentM
|
|
|
85
86
|
* @area Components
|
|
86
87
|
* @value readonlyTextView
|
|
87
88
|
* @description To display information on the mobile app as readonly
|
|
89
|
+
* @label Readonly text
|
|
88
90
|
*/
|
|
89
91
|
export interface ReadonlyTextViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder {
|
|
90
92
|
/**
|
|
@@ -96,6 +98,7 @@ export type SkedButtonTheme = 'success' | 'primary' | 'default';
|
|
|
96
98
|
/**
|
|
97
99
|
* @area Components
|
|
98
100
|
* @value buttonGroup
|
|
101
|
+
* @label Button group
|
|
99
102
|
*/
|
|
100
103
|
export interface ButtonGroupViewComponentModel extends BaseFlatPageViewComponentModel, CommonEditorWithPlaceholder {
|
|
101
104
|
items: ButtonGroupItemComponentModel[];
|
|
@@ -145,6 +148,7 @@ export interface SubListEditorViewComponentModel extends CommonEditorViewCompone
|
|
|
145
148
|
* @area Components
|
|
146
149
|
* @value attachment
|
|
147
150
|
* @description Adding attachments or take photo from mobile app
|
|
151
|
+
* @label Attachment
|
|
148
152
|
*/
|
|
149
153
|
export interface AttachmentsEditorViewComponentModel extends CommonEditorViewComponentModel {
|
|
150
154
|
/**
|
|
@@ -163,6 +167,7 @@ export interface AttachmentsEditorViewComponentModel extends CommonEditorViewCom
|
|
|
163
167
|
/**
|
|
164
168
|
* @area Components
|
|
165
169
|
* @value bodyMapEditor
|
|
170
|
+
* @label Body map
|
|
166
171
|
*/
|
|
167
172
|
export interface BodyMapViewComponentModel extends CommonEditorViewComponentModel {
|
|
168
173
|
/**
|
|
@@ -178,6 +183,7 @@ export interface BodyMapViewComponentModel extends CommonEditorViewComponentMode
|
|
|
178
183
|
* @area Components
|
|
179
184
|
* @value signatureEditor
|
|
180
185
|
* @description Capturing signatures on the field
|
|
186
|
+
* @label Signature
|
|
181
187
|
*/
|
|
182
188
|
export interface SignatureEditorViewComponentModel extends CommonEditorViewComponentModel {
|
|
183
189
|
/**
|
|
@@ -201,6 +207,7 @@ export interface SignatureEditorViewComponentModel extends CommonEditorViewCompo
|
|
|
201
207
|
* @area Components
|
|
202
208
|
* @value toggleEditor
|
|
203
209
|
* @description Allow users to toggle between two states
|
|
210
|
+
* @label Toggle
|
|
204
211
|
*/
|
|
205
212
|
export interface ToggleEditorViewComponentModel extends CommonEditorViewComponentModel {
|
|
206
213
|
/**
|
|
@@ -297,6 +304,7 @@ export interface SectionViewComponentModel extends BaseFlatPageViewComponentMode
|
|
|
297
304
|
/**
|
|
298
305
|
* @area Components
|
|
299
306
|
* @value menuList
|
|
307
|
+
* @label Menu list
|
|
300
308
|
*/
|
|
301
309
|
export interface MenuListViewComponentModel extends BaseFlatPageViewComponentModel {
|
|
302
310
|
items: MenuListItem[];
|
|
@@ -372,6 +380,7 @@ export interface BaseSelectEditor {
|
|
|
372
380
|
* @area Components
|
|
373
381
|
* @value selectEditor
|
|
374
382
|
* @description Allow selecting a single value from a pre-defined list of options
|
|
383
|
+
* @label Picklist
|
|
375
384
|
*/
|
|
376
385
|
export interface SelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
|
|
377
386
|
/**
|
|
@@ -397,6 +406,7 @@ export interface SelectEditorViewComponentModel extends CommonEditorViewComponen
|
|
|
397
406
|
* @area Components
|
|
398
407
|
* @value multiSelectEditor
|
|
399
408
|
* @description Allow selecting one or more values from a pre-defined list of options
|
|
409
|
+
* @label Multi-picklist
|
|
400
410
|
*/
|
|
401
411
|
export interface MultiSelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
|
|
402
412
|
displayDataInSearchPageExpression: DataExpressionType;
|