@skedulo/mex-types 1.3.19 → 1.3.21

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
  /**
@@ -244,6 +251,7 @@ export interface ToggleEditorItemModel {
244
251
  * @area Components
245
252
  * @value dateTimeEditor
246
253
  * @description Allow selecting date and time
254
+ * @label Date & time
247
255
  */
248
256
  export interface DateTimePickerViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder {
249
257
  /**
@@ -297,6 +305,7 @@ export interface SectionViewComponentModel extends BaseFlatPageViewComponentMode
297
305
  /**
298
306
  * @area Components
299
307
  * @value menuList
308
+ * @label Menu list
300
309
  */
301
310
  export interface MenuListViewComponentModel extends BaseFlatPageViewComponentModel {
302
311
  items: MenuListItem[];
@@ -372,6 +381,7 @@ export interface BaseSelectEditor {
372
381
  * @area Components
373
382
  * @value selectEditor
374
383
  * @description Allow selecting a single value from a pre-defined list of options
384
+ * @label Picklist
375
385
  */
376
386
  export interface SelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
377
387
  /**
@@ -397,6 +407,7 @@ export interface SelectEditorViewComponentModel extends CommonEditorViewComponen
397
407
  * @area Components
398
408
  * @value multiSelectEditor
399
409
  * @description Allow selecting one or more values from a pre-defined list of options
410
+ * @label Multi-picklist
400
411
  */
401
412
  export interface MultiSelectEditorViewComponentModel extends CommonEditorViewComponentModel, CommonEditorWithPlaceholder, BaseSelectEditor {
402
413
  displayDataInSearchPageExpression: DataExpressionType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skedulo/mex-types",
3
- "version": "1.3.19",
3
+ "version": "1.3.21",
4
4
  "engines": {
5
5
  "node": "18"
6
6
  },