@onylab/common-api 0.1.173 → 0.1.174
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.
package/dist/common-api.d.ts
CHANGED
|
@@ -311,6 +311,7 @@ declare module "templating/view/email/ViewEmailUserNotificationContract" {
|
|
|
311
311
|
'include:0:p': ViewEmailElementParagraphContract;
|
|
312
312
|
'include:0:button'?: ViewEmailElementButtonContract;
|
|
313
313
|
'include:1:p'?: ViewEmailElementParagraphContract;
|
|
314
|
+
'include:0:signature'?: ViewEmailElementParagraphContract;
|
|
314
315
|
}
|
|
315
316
|
}
|
|
316
317
|
declare module "service/sender/EmailSenderServiceContract" {
|
|
@@ -668,3 +669,8 @@ declare module "templating/view/email/ViewEmailElementImageContract" {
|
|
|
668
669
|
url: string;
|
|
669
670
|
}
|
|
670
671
|
}
|
|
672
|
+
declare module "templating/view/email/ViewEmailElementSignatureContract" {
|
|
673
|
+
export interface ViewEmailElementSignatureContract {
|
|
674
|
+
content: string;
|
|
675
|
+
}
|
|
676
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<tr class="Section Body">
|
|
2
|
+
<td class="Spacer Spacer-gutter" width="64"
|
|
3
|
+
style="border-width:0;border-collapse:collapse;margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#ffffff;font-size:1px;line-height:1px;mso-line-height-rule:exactly;">
|
|
4
|
+
 
|
|
5
|
+
</td>
|
|
6
|
+
<td class="Body-area Font Font-body"
|
|
7
|
+
style="border-width:0;border-collapse:collapse;margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;mso-line-height-rule:exactly;vertical-align:middle;color:#525f7f;font-size:14px;line-height:20px;">
|
|
8
|
+
<p style="text-align:inherit !important;margin-bottom:20px;margin-left:0;margin-right:0;margin-top:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;color:inherit !important;font-size:inherit !important;line-height:inherit !important;">
|
|
9
|
+
{{{ content }}}
|
|
10
|
+
</p>
|
|
11
|
+
</td>
|
|
12
|
+
<td class="Spacer Spacer-gutter" width="64"
|
|
13
|
+
style="border-width:0;border-collapse:collapse;margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#ffffff;font-size:1px;line-height:1px;mso-line-height-rule:exactly;">
|
|
14
|
+
 
|
|
15
|
+
</td>
|
|
16
|
+
</tr>
|
|
17
|
+
<tr>
|
|
18
|
+
<td class="Spacer Spacer-divider" colspan="3" height="12"
|
|
19
|
+
style="border-width:0;border-collapse:collapse;margin-top:0;margin-bottom:0;margin-right:0;margin-left:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#ffffff;font-size:1px;line-height:1px;mso-line-height-rule:exactly;">
|
|
20
|
+
 
|
|
21
|
+
</td>
|
|
22
|
+
</tr>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{{{ content }}}
|