@useinsider/guido 3.10.0-beta.f7505c1 → 3.10.0

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.
@@ -1,4 +1,4 @@
1
- const u = [
1
+ const l = [
2
2
  {
3
3
  key: "locale",
4
4
  getValue: (e) => e.language,
@@ -7,27 +7,28 @@ const u = [
7
7
  {
8
8
  key: "currency",
9
9
  getValue: (e) => e.currencySettings.value,
10
- getAvailableOptions: (e) => e.currencyList.map((n) => n.text)
10
+ getAvailableOptions: (e) => e.currencyList.map((n) => n.text),
11
+ canBeEmpty: !0
11
12
  }
12
- ], s = "newsletter.recommendation-fill-required-fields";
13
- function l(e, n, o = u) {
14
- return o.filter((t) => {
15
- var a;
13
+ ], o = "newsletter.recommendation-fill-required-fields";
14
+ function c(e, n, i = l) {
15
+ return i.filter((t) => {
16
+ var u;
16
17
  if (t.condition && !t.condition(e))
17
18
  return !1;
18
- const i = t.getValue(e);
19
- if (!i)
20
- return !0;
21
- const r = (a = t.getAvailableOptions) == null ? void 0 : a.call(t, n);
22
- return r !== void 0 && !r.includes(i);
19
+ const r = (u = t.getAvailableOptions) == null ? void 0 : u.call(t, n);
20
+ if (t.canBeEmpty && (r == null ? void 0 : r.length) === 0)
21
+ return !1;
22
+ const a = t.getValue(e);
23
+ return a ? r !== void 0 && !r.includes(a) : !0;
23
24
  }).map((t) => t.key);
24
25
  }
25
- function c(e, n) {
26
- return l(e, n).length === 0;
26
+ function s(e, n) {
27
+ return c(e, n).length === 0;
27
28
  }
28
29
  export {
29
- u as REQUIRED_RECOMMENDATION_FIELDS,
30
- s as RecommendationRequiredFieldsKey,
31
- l as getInvalidFields,
32
- c as isConfigValid
30
+ l as REQUIRED_RECOMMENDATION_FIELDS,
31
+ o as RecommendationRequiredFieldsKey,
32
+ c as getInvalidFields,
33
+ s as isConfigValid
33
34
  };
@@ -0,0 +1,34 @@
1
+ import { useToaster as m } from "../composables/useToaster.js";
2
+ import { useTranslations as c } from "../composables/useTranslations.js";
3
+ import { BLANK_TEMPLATE_HTML_URL as T, BLANK_TEMPLATE_CSS_URL as i } from "../enums/defaults.js";
4
+ import { ToasterTypeOptions as p } from "../enums/toaster.js";
5
+ const a = 3, f = 1e3;
6
+ let s = null;
7
+ const u = (e) => new Promise((t) => {
8
+ setTimeout(t, e);
9
+ }), n = async (e) => {
10
+ const t = await fetch(e);
11
+ if (!t.ok)
12
+ throw new Error(`Blank template request failed: ${t.status}`);
13
+ return t.text();
14
+ }, k = () => {
15
+ const { showToaster: e } = m(), t = c();
16
+ return { getBlankTemplate: async () => {
17
+ if (s)
18
+ return s;
19
+ for (let r = 1; r <= a; r++)
20
+ try {
21
+ const [o, l] = await Promise.all([
22
+ n(T),
23
+ n(i)
24
+ ]);
25
+ return s = { html: o, css: l }, s;
26
+ } catch (o) {
27
+ console.error(`Failed to fetch blank template (attempt ${r}/${a}):`, o), r < a && await u(r * f);
28
+ }
29
+ return e({ type: p.Alert, message: t("errors-pages.undefined-response") }), { html: "", css: "" };
30
+ } };
31
+ };
32
+ export {
33
+ k as useBlankTemplate
34
+ };
@@ -1,10 +1,9 @@
1
1
  import { useHttp as d } from "../composables/useHttp.js";
2
2
  import { useToaster as m } from "../composables/useToaster.js";
3
3
  import { MAX_DEFAULT_TEMPLATE_ID as y } from "../enums/defaults.js";
4
- import f from "../static/templates/empty/index.html.js";
5
- import g from "../static/templates/empty/style.css.js";
6
- const E = () => {
7
- const { get: s, post: c } = d(), { handleError: r } = m();
4
+ import { useBlankTemplate as f } from "./blankTemplate.js";
5
+ const D = () => {
6
+ const { get: s, post: u } = d(), { handleError: r } = m(), { getBlankTemplate: o } = f();
8
7
  return {
9
8
  getToken: async () => {
10
9
  try {
@@ -26,18 +25,14 @@ const E = () => {
26
25
  }
27
26
  },
28
27
  getDefaultTemplate: async () => {
29
- const t = {
30
- html: f,
31
- css: g
32
- };
33
28
  try {
34
- const e = new URLSearchParams(window.location.search), u = e.get("default-template"), p = e.get("master"), a = u ? parseInt(u) : 0, i = a >= 1 && a <= y ? a : 0;
35
- if (!i && !p)
36
- return t;
37
- const l = `/stripo/default-template/${i}`, { data: n } = await s(l), o = typeof n == "string" ? JSON.parse(n) : n;
38
- return !o || typeof o != "object" || !("html" in o) || !("css" in o) ? t : o;
39
- } catch (e) {
40
- return r(e, "Failed to fetch default template"), t;
29
+ const t = new URLSearchParams(window.location.search), e = t.get("default-template"), l = t.get("master"), n = e ? parseInt(e) : 0, i = n >= 1 && n <= y ? n : 0;
30
+ if (!i && !l)
31
+ return await o();
32
+ const p = `/stripo/default-template/${i}`, { data: c } = await s(p), a = typeof c == "string" ? JSON.parse(c) : c;
33
+ return !a || typeof a != "object" || !("html" in a) || !("css" in a) ? await o() : a;
34
+ } catch (t) {
35
+ return r(t, "Failed to fetch default template"), o();
41
36
  }
42
37
  },
43
38
  getSyncModulesStatus: async () => {
@@ -50,7 +45,7 @@ const E = () => {
50
45
  },
51
46
  updateSyncModule: async (t) => {
52
47
  try {
53
- return await c(`/stripo/stripo-modules/${t.moduleId}/update`), !0;
48
+ return await u(`/stripo/stripo-modules/${t.moduleId}/update`), !0;
54
49
  } catch (e) {
55
50
  return r(e, "Failed to update sync module"), !1;
56
51
  }
@@ -71,7 +66,7 @@ const E = () => {
71
66
  if (t.length === 0)
72
67
  return !0;
73
68
  try {
74
- return await c("/stripo/stripo-modules/set-unsubscription-preference-pages", t), !0;
69
+ return await u("/stripo/stripo-modules/set-unsubscription-preference-pages", t), !0;
75
70
  } catch (e) {
76
71
  return r(e, "Failed to set unsubscription preference pages"), !1;
77
72
  }
@@ -79,5 +74,5 @@ const E = () => {
79
74
  };
80
75
  };
81
76
  export {
82
- E as useStripoApi
77
+ D as useStripoApi
83
78
  };
@@ -8,6 +8,9 @@ export declare const TemplateTypes: {
8
8
  };
9
9
  export declare const EditorType: number;
10
10
  export declare const MAX_DEFAULT_TEMPLATE_ID = 13;
11
+ export declare const EMAIL_STATIC_BASE_URL = "https://email-static.useinsider.com";
12
+ export declare const BLANK_TEMPLATE_HTML_URL = "https://email-static.useinsider.com/templates/campaign/default.html";
13
+ export declare const BLANK_TEMPLATE_CSS_URL = "https://email-static.useinsider.com/templates/campaign/default.css";
11
14
  export declare const ProductIds: Record<string, number>;
12
15
  export declare const ModuleFolderDefaults: {
13
16
  readonly SAVED_MODULES: "savedModules";
@@ -51,6 +51,12 @@ export declare function captureCellAlignments(node: ImmutableHtmlNode | null | u
51
51
  * text-trim) keyed by composition key, so a regeneration can re-bake them
52
52
  * instead of resetting to the renderer's hardcoded spacing classes. Stripo stores padding
53
53
  * and margin as these classes (NOT inline style), so an inline-style capture misses them.
54
+ *
55
+ * Inline price mode: the merged columns carry POSITIONAL spacing classes
56
+ * (`es-p15l es-p5r` / `es-p5l es-p15r`) that build the side-by-side gap — layout
57
+ * mechanics, not user padding. Skip the price cells then, so toggling back to
58
+ * stacked resets them to the renderer defaults instead of baking the lopsided
59
+ * inline paddings (SD-145161).
54
60
  */
55
61
  export declare function captureCellClasses(node: ImmutableHtmlNode | null | undefined): Record<string, string>;
56
62
  /**
@@ -10,6 +10,7 @@ export interface ExtensionStoreSlice {
10
10
  }
11
11
  export interface RequiredField {
12
12
  key: string;
13
+ canBeEmpty?: boolean;
13
14
  getValue: (config: PerBlockConfigs) => string;
14
15
  getAvailableOptions?: (store: ExtensionStoreSlice) => string[];
15
16
  condition?: (config: PerBlockConfigs) => boolean;
@@ -0,0 +1,11 @@
1
+ import type { Template } from '@@/Types/stripo';
2
+ /**
3
+ * Fetches the blank starter template (html + css) from the email CDN — the single
4
+ * source of truth shared with email-fe. Retries a few times, caches the result for
5
+ * the session, and on persistent failure returns an empty template (the editor still
6
+ * opens) plus a toaster. Kept separate from stripoApi: this is a CDN asset fetch, not
7
+ * a Stripo backend call.
8
+ */
9
+ export declare const useBlankTemplate: () => {
10
+ getBlankTemplate: () => Promise<Template>;
11
+ };
@@ -1,85 +1,84 @@
1
- import { productPairs as L } from "../extensions/Blocks/Items/enums/productEnums.js";
2
- function q(w) {
3
- const y = w.replaceAll("{%", "<!--{%").replaceAll("%}", "%}-->"), T = new DOMParser().parseFromString(y, "text/html"), C = L.PAIRS_FOR_EXTENSION;
4
- Object.entries(C).forEach(([r, f]) => {
5
- T.querySelectorAll(".ins-product-td").forEach((o) => {
6
- const A = o.getAttribute("data-number") || "1", b = o.getAttribute("data-type") || "CART_ITEMS";
7
- o.querySelectorAll(`[product-attr="${r}"]`).forEach((e) => {
8
- var k, F, I;
9
- const $ = e.getAttribute("data-type") || b, d = e.getAttribute("data-number") || A, u = f[$];
10
- if (u)
1
+ import { productPairs as q } from "../extensions/Blocks/Items/enums/productEnums.js";
2
+ import { DefaultConfigValues as N } from "../extensions/Blocks/Items/enums/settingsEnums.js";
3
+ function W(M) {
4
+ const S = M.replaceAll("{%", "<!--{%").replaceAll("%}", "%}-->"), g = new DOMParser().parseFromString(S, "text/html"), m = q.PAIRS_FOR_EXTENSION;
5
+ Object.entries(m).forEach(([r, f]) => {
6
+ g.querySelectorAll(".ins-product-td").forEach((c) => {
7
+ const A = c.getAttribute("data-number") || "1", C = c.getAttribute("data-type") || "CART_ITEMS";
8
+ c.querySelectorAll(`[product-attr="${r}"]`).forEach((e) => {
9
+ var F, I, w;
10
+ const $ = e.getAttribute("data-type") || C, u = e.getAttribute("data-number") || A, d = f[$];
11
+ if (d)
11
12
  switch (r) {
12
13
  case "imageSrc": {
13
14
  let t = null, i = null;
14
15
  if (e.tagName === "IMG" ? (t = e, i = t.closest("a")) : (t = e.querySelector("img"), i = e.querySelector("a") || e.closest("a")), !t)
15
16
  break;
16
- const a = u.DEFAULT, s = u.ATTR;
17
+ const a = d.DEFAULT, s = d.ATTR;
17
18
  if (a && t.src) {
18
- const c = t.src;
19
+ const o = t.src;
19
20
  a.some((h) => {
20
- const l = h.split("/").pop() || "", g = c.split("/").pop() || "";
21
- return c.includes(h) || c.includes(l) || g === l;
22
- }) && (t.src = `{{${s}_${d}}}`);
21
+ const l = h.split("/").pop() || "", b = o.split("/").pop() || "";
22
+ return o.includes(h) || o.includes(l) || b === l;
23
+ }) && (t.src = `{{${s}_${u}}}`);
23
24
  }
24
- const n = (F = (k = C.name) == null ? void 0 : k[$]) == null ? void 0 : F.ATTR;
25
- if (n && t.setAttribute("alt", `{{${n}_${d}}}`), i) {
26
- const c = (I = C.itemLink) == null ? void 0 : I[$];
27
- if (c) {
28
- const E = c.HREF, h = c.DEFAULT_HREF || "#!", l = i.href;
29
- (l === "#" || l === "" || l.endsWith("#!") || l.endsWith(h) || l === `${window.location.href}${h}` || !l || l === window.location.href) && (i.href = `{{${E}_${d}}}`);
25
+ const n = (I = (F = m.name) == null ? void 0 : F[$]) == null ? void 0 : I.ATTR;
26
+ if (n && t.setAttribute("alt", `{{${n}_${u}}}`), i) {
27
+ const o = (w = m.itemLink) == null ? void 0 : w[$];
28
+ if (o) {
29
+ const E = o.HREF, h = o.DEFAULT_HREF || "#!", l = i.href;
30
+ (l === "#" || l === "" || l.endsWith("#!") || l.endsWith(h) || l === `${window.location.href}${h}` || !l || l === window.location.href) && (i.href = `{{${E}_${u}}}`);
30
31
  }
31
32
  }
32
33
  break;
33
34
  }
34
35
  case "name": {
35
- const t = u, i = t.ATTR, a = t.DEFAULT_HREF || "#!", s = t.HREF;
36
- e.textContent && (e.textContent = `{{${i}_${d}}}`);
36
+ const t = d, i = t.ATTR, a = t.DEFAULT_HREF || "#!", s = t.HREF;
37
+ e.textContent && (e.textContent = `{{${i}_${u}}}`);
37
38
  const n = e.closest("a") || (e.tagName === "A" ? e : null);
38
39
  if (n && s) {
39
- const c = n.href, E = `${window.location.href}${a}`;
40
- (c === E || c.endsWith(a)) && (n.href = `{{${s}_${d}}}`);
40
+ const o = n.href, E = `${window.location.href}${a}`;
41
+ (o === E || o.endsWith(a)) && (n.href = `{{${s}_${u}}}`);
41
42
  }
42
43
  break;
43
44
  }
44
45
  case "price":
45
46
  case "originalPrice": {
46
- const t = u, i = e.getAttribute("data-formated"), a = e.getAttribute("data-single_price"), s = i === "true", n = a === "true", c = e.getAttribute("data-curency") || "before";
47
+ const t = d, i = e.getAttribute("data-formated"), a = e.getAttribute("data-single_price"), s = i === "true", n = a === "true", o = e.getAttribute("data-curency") || "before";
47
48
  let E;
48
49
  n ? E = s ? t.SINGLE_PRICE_FORMATTED : t.SINGLE_PRICE : E = s ? t.PRICE_FORMATTED : t.PRICE;
49
50
  const h = t.CURRENCY;
50
- let l = `{{${E}_${d}}}`;
51
- if (h) {
52
- const g = `{{${h}_${d}}}`;
53
- l = c === "after" ? `${l} ${g}` : `${g} ${l}`;
54
- }
55
- e.textContent = l;
51
+ let l = `{{${E}_${u}}}`;
52
+ const b = (e.getAttribute("data-currency_symbol") || "").trim(), x = b !== "" && b !== N.productPriceCurrencySymbolControlValue;
53
+ let T = "";
54
+ x ? T = b : h && (T = `{{${h}_${u}}}`), T && (l = o === "after" ? `${l} ${T}` : `${T} ${l}`), e.textContent = l;
56
55
  break;
57
56
  }
58
57
  case "quantity": {
59
- const t = u, i = t.ATTR, a = t.DEFAULT;
60
- e.textContent && e.textContent.trim() === a && (e.textContent = `{{${i}_${d}}}`);
58
+ const t = d, i = t.ATTR, a = t.DEFAULT;
59
+ e.textContent && e.textContent.trim() === a && (e.textContent = `{{${i}_${u}}}`);
61
60
  break;
62
61
  }
63
62
  case "button": {
64
- const t = u, i = t.HREF, a = t.DEFAULT_HREF || "#!", s = e.tagName === "A" ? e : e.querySelector("a");
63
+ const t = d, i = t.HREF, a = t.DEFAULT_HREF || "#!", s = e.tagName === "A" ? e : e.querySelector("a");
65
64
  if (s) {
66
- const n = s.href || "", c = `${window.location.href}${a}`;
67
- (n === "" || n === "#" || n === c || n.endsWith(a) || n.endsWith("#!") || n === window.location.href) && (s.href = `{{${i}_${d}}}`);
65
+ const n = s.href || "", o = `${window.location.href}${a}`;
66
+ (n === "" || n === "#" || n === o || n.endsWith(a) || n.endsWith("#!") || n === window.location.href) && (s.href = `{{${i}_${u}}}`);
68
67
  }
69
68
  break;
70
69
  }
71
70
  case "itemLink": {
72
- const t = u, i = t.HREF, a = t.DEFAULT_HREF || "#!", s = e;
71
+ const t = d, i = t.HREF, a = t.DEFAULT_HREF || "#!", s = e;
73
72
  if (s.href) {
74
- const n = s.href, c = `${window.location.href}${a}`;
75
- (n === c || n.endsWith(a)) && (s.href = `{{${i}_${d}}}`);
73
+ const n = s.href, o = `${window.location.href}${a}`;
74
+ (n === o || n.endsWith(a)) && (s.href = `{{${i}_${u}}}`);
76
75
  }
77
76
  break;
78
77
  }
79
78
  default: {
80
- if ("ATTR" in u) {
81
- const t = u.ATTR;
82
- e.textContent && (e.textContent = `{{${t}_${d}}}`);
79
+ if ("ATTR" in d) {
80
+ const t = d.ATTR;
81
+ e.textContent && (e.textContent = `{{${t}_${u}}}`);
83
82
  }
84
83
  break;
85
84
  }
@@ -87,48 +86,48 @@ function q(w) {
87
86
  });
88
87
  });
89
88
  });
90
- const S = y.match(/<!DOCTYPE[^>]*>/i), M = S ? `${S[0]}
91
- ` : "", P = T.querySelectorAll(".ins-product-td"), H = [];
92
- P.forEach((r) => {
93
- const f = r.getAttribute("data-type") || "CART_ITEMS", p = r.getAttribute("data-number") || "1", o = r.getAttribute("data-nodup"), A = r.outerHTML;
94
- H.push({
89
+ const H = S.match(/<!DOCTYPE[^>]*>/i), P = H ? `${H[0]}
90
+ ` : "", D = g.querySelectorAll(".ins-product-td"), k = [];
91
+ D.forEach((r) => {
92
+ const f = r.getAttribute("data-type") || "CART_ITEMS", p = r.getAttribute("data-number") || "1", c = r.getAttribute("data-nodup"), A = r.outerHTML;
93
+ k.push({
95
94
  element: r,
96
95
  outerHtml: A,
97
96
  type: f,
98
97
  number: p,
99
- nodup: o || void 0
98
+ nodup: c || void 0
100
99
  });
101
100
  });
102
- let _ = M + T.documentElement.outerHTML;
103
- H.reverse().forEach(({ outerHtml: r, type: f, number: p }) => {
104
- let o = "";
101
+ let _ = P + g.documentElement.outerHTML;
102
+ k.reverse().forEach(({ outerHtml: r, type: f, number: p }) => {
103
+ let c = "";
105
104
  switch (f) {
106
105
  case "CART_ITEMS":
107
- o = "ins_apr_total_product_kind";
106
+ c = "ins_apr_total_product_kind";
108
107
  break;
109
108
  case "BROWSED_ITEMS":
110
- o = "browsed_item_total_product_kind";
109
+ c = "browsed_item_total_product_kind";
111
110
  break;
112
111
  case "PURCHASED_ITEMS":
113
- o = "purchased_item_total_product_kind";
112
+ c = "purchased_item_total_product_kind";
114
113
  break;
115
114
  }
116
- if (o) {
117
- const b = parseInt(p) - 1, $ = `${`{% if ${o} > ${b} %}`}${r}{% endif %}`;
115
+ if (c) {
116
+ const C = parseInt(p) - 1, $ = `${`{% if ${c} > ${C} %}`}${r}{% endif %}`;
118
117
  _ = _.replace(r, $);
119
118
  }
120
119
  });
121
- const D = T.querySelectorAll('[product-attr="originalPrice"][data-type="CART_ITEMS"]'), R = [];
122
- return D.forEach((r) => {
120
+ const L = g.querySelectorAll('[product-attr="originalPrice"][data-type="CART_ITEMS"]'), y = [];
121
+ return L.forEach((r) => {
123
122
  const f = r.getAttribute("data-number"), p = r.getAttribute("data-type");
124
123
  if (!f || p !== "CART_ITEMS")
125
124
  return;
126
- const o = r.closest(".product-original-price-class");
127
- if (o) {
128
- const A = o.outerHTML;
129
- R.some((m) => m.tdOuterHtml === A) || R.push({ tdOuterHtml: A, number: f });
125
+ const c = r.closest(".product-original-price-class");
126
+ if (c) {
127
+ const A = c.outerHTML;
128
+ y.some((R) => R.tdOuterHtml === A) || y.push({ tdOuterHtml: A, number: f });
130
129
  }
131
- }), R.reverse().forEach(({ tdOuterHtml: r, number: f }) => {
130
+ }), y.reverse().forEach(({ tdOuterHtml: r, number: f }) => {
132
131
  const p = `{% if ins_apr_price_${f} != ins_apr_originalprice_${f} %}`;
133
132
  if (!_.includes(p) && !r.includes("{% if")) {
134
133
  const A = `${p}${r}{% endif %}`;
@@ -137,5 +136,5 @@ function q(w) {
137
136
  }), _.replaceAll("<!--{%", "{%").replaceAll("%}-->", "%}").replaceAll("&lt;!--{%", "{%").replaceAll("%}--&gt;", "%}");
138
137
  }
139
138
  export {
140
- q as pairProductVariables
139
+ W as pairProductVariables
141
140
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@useinsider/guido",
3
- "version": "3.10.0-beta.f7505c1",
3
+ "version": "3.10.0",
4
4
  "description": "Guido is a Vue + TypeScript wrapper for Email Plugin. Easily embed the email editor in your Vue applications.",
5
5
  "main": "./dist/guido.umd.cjs",
6
6
  "module": "./dist/library.js",
@@ -1,74 +0,0 @@
1
- const t = `<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
- <html>
3
-
4
- <head>
5
- <meta charset="UTF-8">
6
- <meta content="width=device-width, initial-scale=1" name="viewport">
7
- <meta name="x-apple-disable-message-reformatting">
8
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
9
- <meta content="telephone=no" name="format-detection">
10
- <title></title>
11
- <!--[if (mso 16)]><style type="text/css">a{text-decoration:none}</style><![endif]-->
12
- <!--[if gte mso 9]><style>sup{font-size:100% !important}</style><![endif]-->
13
- <!--[if gte mso 9]><style>sup{font-size:100% !important}</style><![endif]-->
14
- <!--[if gte mso 9]><style>sup{font-size:100% !important}</style><![endif]-->
15
- <!--[if gte mso 9]><style>sup{font-size:100% !important}</style><![endif]-->
16
- <!--[if gte mso 9]><style>sup { font-size: 100% !important; }</style><![endif]-->
17
- </head>
18
-
19
- <body>
20
- <div class="es-wrapper-color">
21
- <!--[if gte mso 9]>
22
- <v:background xmlns:v="urn:schemas-microsoft-com:vml" fill="t">
23
- <v:fill type="tile" color="#f6f6f6"></v:fill>
24
- </v:background>
25
- <![endif]-->
26
- <table class="es-wrapper" width="100%" cellspacing="0" cellpadding="0">
27
- <tbody>
28
- <tr>
29
- <td class="esd-email-paddings" valign="top">
30
- <table class="es-content esd-footer-popover" cellspacing="0" cellpadding="0" align="center">
31
- <tbody>
32
- <tr>
33
- <td class="esd-stripe" align="center">
34
- <table class="es-content-body" width="600" cellspacing="0" cellpadding="0" bgcolor="#ffffff" align="center">
35
- <tbody>
36
- <tr>
37
- <td class="esd-structure es-p20" align="left">
38
- <table cellpadding="0" cellspacing="0" width="100%">
39
- <tbody>
40
- <tr>
41
- <td width="560" class="esd-container-frame" align="center" valign="top">
42
- <table cellpadding="0" cellspacing="0" width="100%">
43
- <tbody>
44
- <tr>
45
- <td align="center" class="esd-empty-container" style="display: none;"></td>
46
- </tr>
47
- </tbody>
48
- </table>
49
- </td>
50
- </tr>
51
- </tbody>
52
- </table>
53
- </td>
54
- </tr>
55
- </tbody>
56
- </table>
57
- </td>
58
- </tr>
59
- </tbody>
60
- </table>
61
- </td>
62
- </tr>
63
- </tbody>
64
- </table>
65
- </div>
66
- <div style="position: absolute; left: -9999px; top: -9999px; margin: 0px;"></div>
67
- <div style="position: absolute; left: -9999px; top: -9999px; margin: 0px; padding: 0px; border: 0px none; width: 1px;"></div>
68
- </body>
69
-
70
- </html>
71
- `;
72
- export {
73
- t as default
74
- };