@skedulo/mex-types 1.7.0 → 1.7.2

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.
@@ -19,8 +19,8 @@ export type UIDefinition = {
19
19
  */
20
20
  readonly?: boolean;
21
21
  pages: AllPageComponentModel[];
22
- events: {
23
- onDataInitialized: FunctionExpressionType;
22
+ events?: {
23
+ onDataInitialized?: FunctionExpressionType;
24
24
  };
25
25
  };
26
26
  export interface BasePageComponentModel extends BaseComponentModel {
@@ -196,7 +196,7 @@ export interface BodyMapViewComponentModel extends CommonEditorViewComponentMode
196
196
  * @value signatureEditor
197
197
  * @description Capturing signatures on the field
198
198
  * @label Signature
199
- * @fieldOrders ['title', 'placeholder' ,'mandatory', 'enableFullName']
199
+ * @fieldOrders ['title', 'enableFullName', 'mandatory']
200
200
  */
201
201
  export interface SignatureEditorViewComponentModel extends CommonEditorViewComponentModel {
202
202
  /**
@@ -213,6 +213,7 @@ export interface SignatureEditorViewComponentModel extends CommonEditorViewCompo
213
213
  attachmentCategoryName: string;
214
214
  /**
215
215
  * @label Enable full name
216
+ * @tooltip Enables a text field for users to add their full name with their signature
216
217
  */
217
218
  enableFullName: boolean;
218
219
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skedulo/mex-types",
3
- "version": "1.7.0",
3
+ "version": "1.7.2",
4
4
  "engines": {
5
5
  "node": "18"
6
6
  },