email-builder-utils 1.1.42 → 1.1.45
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/utils/convertJsonToHtml.d.ts.map +1 -1
- package/dist/utils/convertJsonToHtml.js +90 -83
- package/dist/utils/jsonToHTML.d.ts +1 -1
- package/dist/utils/jsonToHTML.d.ts.map +1 -1
- package/dist/utils/jsonToHTML.js +701 -500
- package/dist/utils/outlookSupport.d.ts +210 -0
- package/dist/utils/outlookSupport.d.ts.map +1 -0
- package/dist/utils/outlookSupport.js +479 -0
- package/package.json +34 -33
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
export declare function computeArcSize(borderRadius: string | number | undefined, widthPx: number): string;
|
|
2
|
+
export declare function shouldHideInOutlook(visibilityClass: string): boolean;
|
|
3
|
+
interface OutlookGridOptions {
|
|
4
|
+
columnGap: number;
|
|
5
|
+
gridVisibilityClass: string;
|
|
6
|
+
tableStyles: string;
|
|
7
|
+
content: string;
|
|
8
|
+
}
|
|
9
|
+
export declare function buildOutlookGridTable(options: OutlookGridOptions): string;
|
|
10
|
+
interface OutlookGridCellOptions {
|
|
11
|
+
widthPercent: number;
|
|
12
|
+
widthPx: number;
|
|
13
|
+
verticalAlign: string;
|
|
14
|
+
visibilityClass: string;
|
|
15
|
+
responsive: boolean;
|
|
16
|
+
styles: string;
|
|
17
|
+
content: string;
|
|
18
|
+
}
|
|
19
|
+
export declare function buildOutlookGridCell(options: OutlookGridCellOptions): string;
|
|
20
|
+
interface OutlookEmptyCellOptions {
|
|
21
|
+
widthPercent: number;
|
|
22
|
+
widthPx: number;
|
|
23
|
+
responsive: boolean;
|
|
24
|
+
}
|
|
25
|
+
export declare function buildOutlookEmptyCell(options: OutlookEmptyCellOptions): string;
|
|
26
|
+
interface OutlookImageOptions {
|
|
27
|
+
imageUrl: string;
|
|
28
|
+
outerContainerWidth: number;
|
|
29
|
+
innerContainerWidth: number;
|
|
30
|
+
style?: {
|
|
31
|
+
borderWidth?: number;
|
|
32
|
+
borderColor?: string;
|
|
33
|
+
borderRadius?: number;
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
export declare function buildOutlookVMLImage(options: OutlookImageOptions): Promise<string>;
|
|
37
|
+
interface OutlookButtonOptions {
|
|
38
|
+
navigateToUrl: string;
|
|
39
|
+
text: string;
|
|
40
|
+
buttonStyle: {
|
|
41
|
+
width?: number;
|
|
42
|
+
height?: number;
|
|
43
|
+
borderRadius?: number;
|
|
44
|
+
borderColor?: string;
|
|
45
|
+
borderWidth?: number;
|
|
46
|
+
buttonColor: string;
|
|
47
|
+
buttonPadding?: {
|
|
48
|
+
top: number;
|
|
49
|
+
bottom: number;
|
|
50
|
+
right: number;
|
|
51
|
+
left: number;
|
|
52
|
+
};
|
|
53
|
+
color?: string;
|
|
54
|
+
fontFamily?: string;
|
|
55
|
+
fontSize?: number;
|
|
56
|
+
fontWeight?: number;
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
export declare function buildOutlookVMLButton(options: OutlookButtonOptions): string;
|
|
60
|
+
interface VMLShapeOptions {
|
|
61
|
+
shape: string;
|
|
62
|
+
widthPx: number;
|
|
63
|
+
heightPx: number;
|
|
64
|
+
imageUrl?: string;
|
|
65
|
+
backgroundColor?: string;
|
|
66
|
+
shapeColor?: string;
|
|
67
|
+
borderWidth?: number;
|
|
68
|
+
borderColor?: string;
|
|
69
|
+
borderRadius?: string | number;
|
|
70
|
+
text?: string;
|
|
71
|
+
textColor?: string;
|
|
72
|
+
textSize?: number;
|
|
73
|
+
verticalAlign?: "top" | "middle" | "bottom";
|
|
74
|
+
textAlign?: "left" | "center" | "right" | "justify";
|
|
75
|
+
msoHasBakedText?: boolean;
|
|
76
|
+
}
|
|
77
|
+
export declare function buildVMLShape(options: VMLShapeOptions): string;
|
|
78
|
+
interface OutlookShapeOptions {
|
|
79
|
+
visibilityClass: string;
|
|
80
|
+
widthPx: number;
|
|
81
|
+
heightPx: number;
|
|
82
|
+
opts: {
|
|
83
|
+
shape: string;
|
|
84
|
+
imageUrl?: string;
|
|
85
|
+
backgroundColor?: string;
|
|
86
|
+
shapeColor?: string;
|
|
87
|
+
borderWidth?: number;
|
|
88
|
+
borderColor?: string;
|
|
89
|
+
borderRadius?: string | number;
|
|
90
|
+
text?: string;
|
|
91
|
+
textColor?: string;
|
|
92
|
+
textSize?: number;
|
|
93
|
+
verticalAlign?: "top" | "middle" | "bottom";
|
|
94
|
+
textAlign?: "left" | "center" | "right" | "justify";
|
|
95
|
+
alignment?: "left" | "center" | "right";
|
|
96
|
+
padding?: {
|
|
97
|
+
top?: number;
|
|
98
|
+
right?: number;
|
|
99
|
+
bottom?: number;
|
|
100
|
+
left?: number;
|
|
101
|
+
};
|
|
102
|
+
msoBakeImageWithText?: string;
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
export declare function buildOutlookShapeWrapper(options: OutlookShapeOptions): string;
|
|
106
|
+
interface OutlookVideoOptions {
|
|
107
|
+
innerContainerWidth: number;
|
|
108
|
+
calculatedHeight: number;
|
|
109
|
+
videoLink: string;
|
|
110
|
+
resolvedThumbnail: string;
|
|
111
|
+
borderWidth: number;
|
|
112
|
+
borderColor: string;
|
|
113
|
+
borderRadius: number;
|
|
114
|
+
altText?: string;
|
|
115
|
+
hideOnDesktop?: boolean;
|
|
116
|
+
}
|
|
117
|
+
export declare function buildOutlookVMLVideo(options: OutlookVideoOptions): string;
|
|
118
|
+
interface OutlookVDividerOptions {
|
|
119
|
+
width: number;
|
|
120
|
+
height: number;
|
|
121
|
+
dividerColor: string;
|
|
122
|
+
}
|
|
123
|
+
export declare function buildOutlookVMLVDivider(options: OutlookVDividerOptions): string;
|
|
124
|
+
interface NonOutlookContentOptions {
|
|
125
|
+
content: string;
|
|
126
|
+
visibilityClass: string;
|
|
127
|
+
}
|
|
128
|
+
export declare function wrapNonOutlookContent(options: NonOutlookContentOptions): string;
|
|
129
|
+
export declare const tableCommonStyle = "border-collapse:collapse; table-layout:fixed;";
|
|
130
|
+
interface OutlookWrapperOptions {
|
|
131
|
+
content: string;
|
|
132
|
+
contentStyle: string;
|
|
133
|
+
visibilityClass?: string;
|
|
134
|
+
maxWidth?: number;
|
|
135
|
+
}
|
|
136
|
+
export declare function buildOutlookWrapperTable(options: OutlookWrapperOptions): string;
|
|
137
|
+
interface OutlookImageWrapperOptions {
|
|
138
|
+
outlookVMLImage: string;
|
|
139
|
+
nonMsoWrapper: string;
|
|
140
|
+
containerStyles: string;
|
|
141
|
+
visibilityClass: string;
|
|
142
|
+
}
|
|
143
|
+
export declare function buildOutlookImageWrapper(options: OutlookImageWrapperOptions): string;
|
|
144
|
+
interface OutlookButtonWrapperOptions {
|
|
145
|
+
outlookVMLButton: string;
|
|
146
|
+
buttonElement: string;
|
|
147
|
+
convertedStyles: string;
|
|
148
|
+
visibilityClass: string;
|
|
149
|
+
}
|
|
150
|
+
export declare function buildOutlookButtonWrapper(options: OutlookButtonWrapperOptions): string;
|
|
151
|
+
interface OutlookVideoWrapperOptions {
|
|
152
|
+
videoContent: string;
|
|
153
|
+
outerContainerStyles: string;
|
|
154
|
+
cellWidthInPx: number;
|
|
155
|
+
visibilityClass: string;
|
|
156
|
+
percentWidth: string;
|
|
157
|
+
textAlign?: string;
|
|
158
|
+
}
|
|
159
|
+
export declare function buildOutlookVideoWrapper(options: OutlookVideoWrapperOptions): string;
|
|
160
|
+
interface OutlookVDividerWrapperOptions {
|
|
161
|
+
outlookVDividerVML: string;
|
|
162
|
+
nonMsoDivider: string;
|
|
163
|
+
convertedStyle: string;
|
|
164
|
+
visibilityClass: string;
|
|
165
|
+
}
|
|
166
|
+
export declare function buildOutlookVDividerWrapper(options: OutlookVDividerWrapperOptions): string;
|
|
167
|
+
interface OutlookShapeWrapperOptions {
|
|
168
|
+
outlookContent: string;
|
|
169
|
+
nonMsoContent: string;
|
|
170
|
+
padding: {
|
|
171
|
+
top?: number;
|
|
172
|
+
right?: number;
|
|
173
|
+
bottom?: number;
|
|
174
|
+
left?: number;
|
|
175
|
+
};
|
|
176
|
+
alignment: string;
|
|
177
|
+
visibilityClass: string;
|
|
178
|
+
}
|
|
179
|
+
export declare function buildOutlookShapeWrapperTable(options: OutlookShapeWrapperOptions): string;
|
|
180
|
+
interface OutlookGridWrapperOptions {
|
|
181
|
+
columnGap: number;
|
|
182
|
+
gridVisibilityClass: string;
|
|
183
|
+
tableStyles: string;
|
|
184
|
+
content: string;
|
|
185
|
+
cellWidthInPx: number;
|
|
186
|
+
}
|
|
187
|
+
export declare function buildOutlookGridWrapper(options: OutlookGridWrapperOptions): string;
|
|
188
|
+
interface OutlookGridRowOptions {
|
|
189
|
+
rowContent: string;
|
|
190
|
+
}
|
|
191
|
+
export declare function buildOutlookGridRow(options: OutlookGridRowOptions): string;
|
|
192
|
+
interface OutlookGridCellWrapperOptions {
|
|
193
|
+
widthPx: number;
|
|
194
|
+
widthPercent: number;
|
|
195
|
+
verticalAlign: string;
|
|
196
|
+
visibilityClass: string;
|
|
197
|
+
responsive: boolean;
|
|
198
|
+
styles: string;
|
|
199
|
+
msoContent: string;
|
|
200
|
+
nonMsoContent: string;
|
|
201
|
+
}
|
|
202
|
+
export declare function buildOutlookGridCellWrapper(options: OutlookGridCellWrapperOptions): string;
|
|
203
|
+
interface OutlookEmptyCellWrapperOptions {
|
|
204
|
+
widthPx: number;
|
|
205
|
+
widthPercent: number;
|
|
206
|
+
responsive: boolean;
|
|
207
|
+
}
|
|
208
|
+
export declare function buildOutlookEmptyCellWrapper(options: OutlookEmptyCellWrapperOptions): string;
|
|
209
|
+
export * from "./common";
|
|
210
|
+
//# sourceMappingURL=outlookSupport.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"outlookSupport.d.ts","sourceRoot":"","sources":["../../src/utils/outlookSupport.ts"],"names":[],"mappings":"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"}
|