@skedulo/mex-types 1.14.1 → 1.15.1
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.
|
@@ -219,9 +219,10 @@ export interface SignatureEditorViewComponentModel extends CommonEditorViewCompo
|
|
|
219
219
|
*/
|
|
220
220
|
attachmentCategoryName: string;
|
|
221
221
|
/**
|
|
222
|
-
* @label
|
|
222
|
+
* @label Display "Full name" input
|
|
223
223
|
* @placeholder Select true or false
|
|
224
|
-
* @tooltip
|
|
224
|
+
* @tooltip Display a text field for users to add their full name with their signature
|
|
225
|
+
* @required false
|
|
225
226
|
*/
|
|
226
227
|
enableFullName: boolean;
|
|
227
228
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BaseComponentModel } from '../common/BaseComponentModel';
|
|
2
|
-
import { LocalizedKey } from '../common/CommonTypes';
|
|
2
|
+
import { DataExpressionType, LocalizedKey } from '../common/CommonTypes';
|
|
3
3
|
import { TagModel } from '../page';
|
|
4
4
|
export interface BaseListPageViewComponentModel extends BaseComponentModel {
|
|
5
5
|
/**
|
|
@@ -14,6 +14,13 @@ export interface BaseListPageViewComponentModel extends BaseComponentModel {
|
|
|
14
14
|
export interface TitleAndCaptionViewComponentModel extends BaseListPageViewComponentModel {
|
|
15
15
|
title: LocalizedKey;
|
|
16
16
|
caption: LocalizedKey;
|
|
17
|
+
headerContent?: ListItemHeaderContent;
|
|
18
|
+
}
|
|
19
|
+
export interface ListItemHeaderContent {
|
|
20
|
+
image?: SkedRemoteAttachment;
|
|
21
|
+
}
|
|
22
|
+
export interface SkedRemoteAttachment {
|
|
23
|
+
filePtr?: DataExpressionType;
|
|
17
24
|
}
|
|
18
25
|
export interface UseAttachments {
|
|
19
26
|
/**
|