@useinsider/guido 3.2.0-beta.8b4780a → 3.2.0-beta.8f147c3

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.
Files changed (86) hide show
  1. package/dist/@types/config/schemas.js +150 -94
  2. package/dist/components/Guido.vue.js +1 -1
  3. package/dist/components/Guido.vue2.js +88 -87
  4. package/dist/components/organisms/onboarding/AMPOnboarding.vue2.js +51 -31
  5. package/dist/components/organisms/onboarding/GenericOnboarding.vue.js +1 -1
  6. package/dist/components/organisms/onboarding/GenericOnboarding.vue2.js +23 -22
  7. package/dist/components/organisms/onboarding/ItemsOnboarding.vue.js +1 -1
  8. package/dist/components/organisms/onboarding/ItemsOnboarding.vue2.js +37 -39
  9. package/dist/components/organisms/onboarding/TextBlockOnboarding.vue.js +3 -3
  10. package/dist/components/organisms/onboarding/TextBlockOnboarding.vue2.js +30 -41
  11. package/dist/components/organisms/onboarding/VersionHistoryOnboarding.vue2.js +15 -14
  12. package/dist/composables/useFullStoryBridge.js +14 -0
  13. package/dist/composables/useRibbonOffset.js +21 -0
  14. package/dist/composables/useStripo.js +44 -42
  15. package/dist/config/compiler/unsubscribeCompilerRules.js +40 -37
  16. package/dist/config/compiler/utils/recommendationCompilerUtils.js +33 -30
  17. package/dist/config/migrator/index.js +9 -9
  18. package/dist/config/migrator/recommendation/compositionMapper.js +98 -0
  19. package/dist/config/migrator/recommendation/extractors.js +27 -0
  20. package/dist/config/migrator/recommendation/htmlBuilder.js +486 -0
  21. package/dist/config/migrator/recommendation/parseLegacyConfig.js +33 -0
  22. package/dist/config/migrator/recommendation/settingsMapper.js +78 -0
  23. package/dist/config/migrator/recommendation/themeMapper.js +93 -0
  24. package/dist/config/migrator/recommendationMigrator.js +60 -290
  25. package/dist/enums/extensions/recommendationBlock.js +2 -1
  26. package/dist/enums/onboarding.js +7 -2
  27. package/dist/enums/unsubscribe.js +34 -27
  28. package/dist/extensions/Blocks/Recommendation/constants/controlIds.js +1 -1
  29. package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +5 -5
  30. package/dist/extensions/Blocks/Recommendation/controls/customAttribute/index.js +21 -18
  31. package/dist/extensions/Blocks/Recommendation/controls/customAttribute/textTrim.js +99 -0
  32. package/dist/extensions/Blocks/Recommendation/controls/main/algorithm.js +6 -6
  33. package/dist/extensions/Blocks/Recommendation/controls/main/index.js +3 -1
  34. package/dist/extensions/Blocks/Recommendation/controls/name/textTrim.js +27 -57
  35. package/dist/extensions/Blocks/Recommendation/controls/shared/textTrimCssRules.js +14 -0
  36. package/dist/extensions/Blocks/Recommendation/services/configService.js +65 -29
  37. package/dist/extensions/Blocks/Recommendation/settingsPanel.js +18 -17
  38. package/dist/extensions/Blocks/Recommendation/store/recommendation.js +29 -25
  39. package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +8 -8
  40. package/dist/extensions/Blocks/Recommendation/templates/list/template.js +11 -11
  41. package/dist/extensions/Blocks/Recommendation/templates/utils.js +1 -1
  42. package/dist/extensions/Blocks/Recommendation/utils/filterUtil.js +17 -14
  43. package/dist/extensions/Blocks/Recommendation/utils/preserveTextStyles.js +13 -22
  44. package/dist/guido.css +1 -1
  45. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +258 -235
  46. package/dist/node_modules/valibot/dist/index.js +450 -235
  47. package/dist/package.json.js +1 -1
  48. package/dist/src/@types/config/defaults.d.ts +5 -1
  49. package/dist/src/@types/config/index.d.ts +3 -3
  50. package/dist/src/@types/config/schemas.d.ts +213 -0
  51. package/dist/src/@types/config/types.d.ts +9 -1
  52. package/dist/src/components/wrappers/WpModal.vue.d.ts +1 -1
  53. package/dist/src/composables/useConfig.d.ts +56 -0
  54. package/dist/src/composables/useFullStoryBridge.d.ts +11 -0
  55. package/dist/src/composables/useRibbonOffset.d.ts +4 -0
  56. package/dist/src/config/migrator/index.d.ts +2 -1
  57. package/dist/src/config/migrator/recommendation/compositionMapper.d.ts +2 -0
  58. package/dist/src/config/migrator/recommendation/compositionMapper.test.d.ts +1 -0
  59. package/dist/src/config/migrator/recommendation/extractors.d.ts +7 -0
  60. package/dist/src/config/migrator/recommendation/htmlBuilder.d.ts +11 -0
  61. package/dist/src/config/migrator/recommendation/parseLegacyConfig.d.ts +15 -0
  62. package/dist/src/config/migrator/recommendation/parseLegacyConfig.test.d.ts +1 -0
  63. package/dist/src/config/migrator/recommendation/settingsMapper.d.ts +7 -0
  64. package/dist/src/config/migrator/recommendation/settingsMapper.test.d.ts +1 -0
  65. package/dist/src/config/migrator/recommendation/themeMapper.d.ts +5 -0
  66. package/dist/src/config/migrator/recommendation/themeMapper.test.d.ts +1 -0
  67. package/dist/src/config/migrator/recommendation/types.d.ts +205 -0
  68. package/dist/src/config/migrator/recommendationMigrator.d.ts +13 -1
  69. package/dist/src/config/migrator/recommendationMigrator.test.d.ts +1 -0
  70. package/dist/src/enums/onboarding.d.ts +6 -0
  71. package/dist/src/enums/unsubscribe.d.ts +5 -0
  72. package/dist/src/extensions/Blocks/Recommendation/constants/controlIds.d.ts +1 -0
  73. package/dist/src/extensions/Blocks/Recommendation/controls/customAttribute/index.d.ts +3 -0
  74. package/dist/src/extensions/Blocks/Recommendation/controls/customAttribute/textTrim.d.ts +35 -0
  75. package/dist/src/extensions/Blocks/Recommendation/controls/name/textTrim.d.ts +3 -20
  76. package/dist/src/extensions/Blocks/Recommendation/controls/shared/textTrimCssRules.d.ts +29 -0
  77. package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +10 -0
  78. package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +1 -1
  79. package/dist/src/extensions/Blocks/Recommendation/utils/preserveTextStyles.d.ts +0 -3
  80. package/dist/src/stores/config.d.ts +504 -0
  81. package/dist/src/stores/onboarding.d.ts +4 -0
  82. package/dist/src/utils/htmlEscape.d.ts +5 -0
  83. package/dist/stores/onboarding.js +4 -0
  84. package/dist/utils/htmlEscape.js +13 -0
  85. package/package.json +7 -3
  86. package/dist/extensions/Blocks/Recommendation/templates/grid/migration.js +0 -251
@@ -0,0 +1,93 @@
1
+ function r(n, t, o) {
2
+ o != null && o !== "" && n.push(`${t}: ${o}`);
3
+ }
4
+ function $(n) {
5
+ if (!n)
6
+ return null;
7
+ const t = n.top ?? n.all ?? 0, o = n.right ?? n.all ?? 0, i = n.bottom ?? n.all ?? 0, l = n.left ?? n.all ?? 0;
8
+ return t === 0 && o === 0 && i === 0 && l === 0 ? null : `${t}px ${o}px ${i}px ${l}px`;
9
+ }
10
+ function j(n) {
11
+ if (!n)
12
+ return null;
13
+ const { top: t, right: o, bottom: i, left: l } = n;
14
+ return t === void 0 ? null : t === o && t === i && t === l ? t : null;
15
+ }
16
+ function S(n, t, o, i) {
17
+ const l = j(o);
18
+ if (l !== null) {
19
+ r(n, `border-${t}`, i(l));
20
+ return;
21
+ }
22
+ o && (r(n, `border-top-${t}`, o.top !== void 0 ? i(o.top) : null), r(n, `border-right-${t}`, o.right !== void 0 ? i(o.right) : null), r(n, `border-bottom-${t}`, o.bottom !== void 0 ? i(o.bottom) : null), r(n, `border-left-${t}`, o.left !== void 0 ? i(o.left) : null));
23
+ }
24
+ function C(n) {
25
+ if (!n)
26
+ return null;
27
+ if (typeof n.radius == "number")
28
+ return `${n.radius}px`;
29
+ if (typeof n.lt == "number" || typeof n.rt == "number" || typeof n.rb == "number" || typeof n.lb == "number") {
30
+ const t = n.lt ?? 0, o = n.rt ?? 0, i = n.rb ?? 0, l = n.lb ?? 0;
31
+ return `${t}px ${o}px ${i}px ${l}px`;
32
+ }
33
+ return null;
34
+ }
35
+ function I(n) {
36
+ var t, o;
37
+ return ((t = n.textLineSpacing) == null ? void 0 : t.lineSpacing) ?? ((o = n.textLineSpacing) == null ? void 0 : o["font-lineSpacing"]);
38
+ }
39
+ function L(n) {
40
+ var f, u, a, g, d, b, p, s;
41
+ const t = [], o = [], i = (f = n == null ? void 0 : n.textAlign) == null ? void 0 : f.align, l = $((u = n == null ? void 0 : n.textPadding) == null ? void 0 : u.desktop), x = (a = n == null ? void 0 : n.textStyle) == null ? void 0 : a["font-weight"], c = (g = n == null ? void 0 : n.textStyle) == null ? void 0 : g["font-style"];
42
+ return r(t, "background-color", (d = n == null ? void 0 : n.textBackgroundColor) == null ? void 0 : d.color), r(t, "padding", l), r(o, "font-family", (b = n == null ? void 0 : n.textStyle) == null ? void 0 : b["font-family"]), r(o, "font-size", (p = n == null ? void 0 : n.textStyle) == null ? void 0 : p["font-size"]), r(o, "font-weight", x), r(o, "font-style", c), r(o, "color", (s = n == null ? void 0 : n.textColor) == null ? void 0 : s.color), r(o, "line-height", I(n ?? {})), r(o, "text-align", i), {
43
+ tdStyle: t.join("; "),
44
+ pStyle: o.join("; "),
45
+ align: i || void 0,
46
+ wrapBold: x === "bold",
47
+ wrapItalic: c === "italic",
48
+ textTrimming: (n == null ? void 0 : n.textTrimming) === !0
49
+ };
50
+ }
51
+ function N(n) {
52
+ var u, a, g, d, b, p, s, k, w, P, B, z;
53
+ const t = [], o = [], i = [];
54
+ r(t, "padding", $((u = n == null ? void 0 : n.buttonExternalPadding) == null ? void 0 : u.desktop)), r(i, "padding", $((a = n == null ? void 0 : n.buttonInternalPadding) == null ? void 0 : a.desktop)), r(i, "font-family", (g = n == null ? void 0 : n.buttonStyle) == null ? void 0 : g["font-family"]), r(i, "font-size", (d = n == null ? void 0 : n.buttonStyle) == null ? void 0 : d["font-size"]), r(i, "font-weight", (b = n == null ? void 0 : n.buttonStyle) == null ? void 0 : b["font-weight"]), r(i, "font-style", (p = n == null ? void 0 : n.buttonStyle) == null ? void 0 : p["font-style"]);
55
+ const l = (s = n == null ? void 0 : n.buttonColor) == null ? void 0 : s.color, x = (k = n == null ? void 0 : n.textButtonColor) == null ? void 0 : k.color;
56
+ r(o, "background", l), r(i, "background", l), r(i, "color", x);
57
+ const c = n == null ? void 0 : n.buttonBorder;
58
+ S(o, "width", c == null ? void 0 : c.width, (y) => `${y}px`), S(o, "style", c == null ? void 0 : c.style, (y) => y), S(o, "color", c == null ? void 0 : c.color, (y) => y);
59
+ const f = C(n == null ? void 0 : n.buttonBorderRadius);
60
+ return f && (r(o, "border-radius", f), r(i, "border-radius", f)), ((w = n == null ? void 0 : n.buttonStretch) == null ? void 0 : w.stretched) === !1 ? (r(o, "display", "inline-block"), r(i, "display", "inline-block")) : ((P = n == null ? void 0 : n.buttonStretch) == null ? void 0 : P.stretched) === !0 && (r(o, "display", "block"), r(i, "display", "block")), {
61
+ tdStyle: t.join("; "),
62
+ align: ((B = n == null ? void 0 : n.buttonAlign) == null ? void 0 : B.align) || void 0,
63
+ spanStyle: o.join("; "),
64
+ aStyle: i.join("; "),
65
+ text: (z = n == null ? void 0 : n.buttonText) == null ? void 0 : z.text
66
+ };
67
+ }
68
+ function T(n) {
69
+ if (typeof n == "number" && Number.isFinite(n) && n >= 0)
70
+ return Math.trunc(n);
71
+ if (typeof n == "string" && /^\d+$/.test(n.trim())) {
72
+ const t = Number(n.trim());
73
+ if (Number.isFinite(t) && t >= 0)
74
+ return t;
75
+ }
76
+ }
77
+ function A(n) {
78
+ var t, o;
79
+ return {
80
+ width: T((t = n == null ? void 0 : n.imageSize) == null ? void 0 : t.width),
81
+ height: T((o = n == null ? void 0 : n.imageSize) == null ? void 0 : o.height)
82
+ };
83
+ }
84
+ function F(n, t) {
85
+ const o = (n ?? "").trim().replace(/;$/, "").trim(), i = (t ?? "").trim().replace(/;$/, "").trim();
86
+ return o ? i ? `${o}; ${i}` : o : i;
87
+ }
88
+ export {
89
+ F as appendStyle,
90
+ N as mapButtonTheme,
91
+ A as mapImageTheme,
92
+ L as mapTextTheme
93
+ };
@@ -1,297 +1,67 @@
1
- var h = Object.defineProperty;
2
- var T = (d, e, t) => e in d ? h(d, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : d[e] = t;
3
- var A = (d, e, t) => T(d, typeof e != "symbol" ? e + "" : e, t);
4
- import { BLOCK_ID as S } from "../../extensions/Blocks/Recommendation/block.js";
5
- import P, { prepareProductRows as q } from "../../extensions/Blocks/Recommendation/templates/grid/migration.js";
6
- import { useTemplateStore as w } from "../../stores/template.js";
7
- import { getDefaultProducts as $ } from "../../extensions/Blocks/Recommendation/templates/utils.js";
8
- class B {
9
- constructor() {
10
- A(this, "parser");
11
- this.parser = new DOMParser();
12
- }
13
- migrate(e) {
14
- try {
15
- const t = this.parser.parseFromString(e, "text/html"), s = t.querySelectorAll(
16
- 'td.ins-recommendation-v3-block-1, td.product-block[esd-handler-name*="EmailRecommendationV3"]'
17
- );
18
- return w().$patch((i) => {
19
- i.migrations = { ...i.migrations, [S]: s.length };
20
- }), s.length === 0 ? e : (s.forEach((i) => {
21
- const r = i.getAttribute("id"), n = this.extractBgColor(i), u = this.extractTitle(i), c = this.extractProductRows(i), l = P.replace("{-{-TITLE-}-}", u).replace("{-{-PRODUCT_ROWS-}-}", c), a = this.parser.parseFromString(
22
- `<table id="tempDoc"><tbody><tr>${l}</tr></tbody></table>`,
23
- "text/html"
24
- ).querySelector(".recommendation-block-v2");
25
- a && i.parentNode && (r && a.setAttribute("id", r), n && a.setAttribute("bgcolor", n), i.parentNode.replaceChild(a, i));
26
- }), t.documentElement.outerHTML);
27
- } catch (t) {
28
- return console.error("RecommendationMigrator failed:", t), e;
29
- }
30
- }
31
- /**
32
- * Extracts background color from old block
33
- * @param block - The old recommendation block element
34
- * @returns The background color value or empty string
35
- */
36
- extractBgColor(e) {
37
- const t = e.getAttribute("bgcolor");
38
- if (t)
39
- return t.trim();
40
- const s = e.getAttribute("style");
41
- if (s) {
42
- const o = s.match(/background-color\s*:\s*([^;]+)/i);
43
- if (o && o[1])
44
- return o[1].trim();
45
- }
46
- return "";
47
- }
48
- /**
49
- * Extracts background color from product card wrapper element
50
- * @param cardElement - The product card TD element
51
- * @returns The background color value or empty string
52
- */
53
- extractCardBgColor(e) {
54
- const t = e.getAttribute("bgcolor");
55
- if (t)
56
- return t.trim();
57
- const s = e.getAttribute("style");
58
- if (s) {
59
- const o = s.match(/background-color\s*:\s*([^;]+)/i);
60
- if (o && o[1])
61
- return o[1].trim();
62
- }
63
- return "";
64
- }
65
- /**
66
- * Extracts title from old block and converts to new structure
67
- * @param block - The old recommendation block element
68
- * @returns HTML string for the title block
69
- */
70
- extractTitle(e) {
71
- var g, a;
72
- const t = e.querySelector(".ext-recommendation-title");
73
- if (!t)
74
- return this.buildTitleBlock({
75
- text: "You May Also Like!",
76
- isBold: !0,
77
- isItalic: !1,
78
- align: "center",
79
- styles: "font-size: 28px; color: #333333;"
80
- });
81
- const s = t.querySelector("p");
82
- if (!s) {
83
- const p = ((g = t.textContent) == null ? void 0 : g.trim()) || "You May Also Like!", b = t.getAttribute("align") || "center";
84
- return this.buildTitleBlock({
85
- text: p,
86
- isBold: !0,
87
- isItalic: !1,
88
- align: b,
89
- styles: "font-size: 28px; color: #333333;"
90
- });
91
- }
92
- const o = ((a = s.textContent) == null ? void 0 : a.trim()) || "You May Also Like!", i = t.getAttribute("align") || s.getAttribute("align") || "center", r = s.getAttribute("style") || "", n = /font-weight\s*:\s*bold/i.test(r) || !!s.querySelector("b, strong"), u = /font-style\s*:\s*italic/i.test(r) || !!s.querySelector("i, em"), c = this.removeStyleProperties(r, ["font-weight", "font-style"]), l = this.convertInlineToBlock(c);
93
- return this.buildTitleBlock({
94
- text: o,
95
- isBold: n,
96
- isItalic: u,
97
- align: i,
98
- styles: l
1
+ import { BlockId as f } from "../../enums/block.js";
2
+ import { useTemplateStore as u } from "../../stores/template.js";
3
+ import { mapComposition as b } from "./recommendation/compositionMapper.js";
4
+ import { extractTitleText as y, extractCardBgColor as v } from "./recommendation/extractors.js";
5
+ import { buildBlockHtml as C } from "./recommendation/htmlBuilder.js";
6
+ import { parseRecommendationId as R, parseLegacyConfig as S } from "./recommendation/parseLegacyConfig.js";
7
+ import { mapSettings as w } from "./recommendation/settingsMapper.js";
8
+ const x = 'td[esd-dev-product-config][class*="ins-recommendation-v3-block-"]:not(.recommendation-block-v2), td.product-block[esd-handler-name*="EmailRecommendationV3"][esd-dev-product-config]:not(.recommendation-block-v2)';
9
+ function M(i, o, c) {
10
+ var s;
11
+ const t = R(o);
12
+ if (t === null)
13
+ return console.warn(
14
+ "[RecommendationMigrator] Skipping block — missing/invalid `ins-recommendation-v3-campaign-id`"
15
+ ), !1;
16
+ const r = S(o);
17
+ if (!r)
18
+ return console.warn(
19
+ `[RecommendationMigrator] Aborting block id=${t} \`esd-dev-product-config\` missing or unable to be parsed`
20
+ ), !1;
21
+ const n = c[String(t)];
22
+ if (!n)
23
+ return console.warn(
24
+ `[RecommendationMigrator] Aborting block id=${t} — recommendationConfigs entry missing in Guido Config`
25
+ ), !1;
26
+ const m = w(n, r, t), e = b((s = r.composition) == null ? void 0 : s.variables), d = y(o), l = v(o), g = {
27
+ ...m,
28
+ composition: e.composition,
29
+ visibility: e.visibility,
30
+ textTrimming: e.anyTextTrimming
31
+ }, p = C({
32
+ nodeConfig: g,
33
+ composition: e,
34
+ cardBg: l,
35
+ titleText: d,
36
+ legacyId: o.getAttribute("id") ?? void 0,
37
+ legacyBgColor: o.getAttribute("bgcolor") ?? void 0
38
+ }), a = i.parseFromString(`<table><tbody><tr>${p}</tr></tbody></table>`, "text/html").querySelector(".recommendation-block-v2");
39
+ return !a || !o.parentNode ? (console.warn(
40
+ `[RecommendationMigrator] Aborting block id=${t} — failed to construct new HTML element`
41
+ ), !1) : (o.parentNode.replaceChild(a, o), !0);
42
+ }
43
+ function H(i, o = {}) {
44
+ const c = new DOMParser(), t = c.parseFromString(i, "text/html"), r = Array.from(t.querySelectorAll(x));
45
+ try {
46
+ u().$patch((e) => {
47
+ e.migrations = {
48
+ ...e.migrations,
49
+ [f.Recommendation]: r.length
50
+ };
99
51
  });
52
+ } catch {
100
53
  }
101
- /**
102
- * Extracts product configuration from old block and generates new product rows
103
- * @param block - The old recommendation block element
104
- * @returns HTML string for product rows
105
- */
106
- extractProductRows(e) {
107
- const t = this.extractProductConfig(e);
108
- if (!t)
109
- return console.warn("[RecommendationMigrator] No product config found, using defaults"), this.generateProductRows(6, 3, {});
110
- const { totalCount: s, productsPerRow: o } = t, i = this.extractProductStyles(e);
111
- return this.generateProductRows(s, o, i);
112
- }
113
- /**
114
- * Extracts Stripo padding/margin utility classes from a class string
115
- * @param classString - Space-separated class string from element
116
- * @returns Filtered Stripo utility classes as a space-separated string
117
- */
118
- extractStripoClasses(e) {
119
- return e ? e.split(/\s+/).filter((o) => /^es-(p\d+|m[-\d])/.test(o)).join(" ") : "";
120
- }
121
- /**
122
- * Extracts product configuration from old block
123
- * @param block - The old recommendation block element
124
- * @returns Object with totalCount and productsPerRow, or null if parsing fails
125
- */
126
- extractProductConfig(e) {
127
- const t = e.getAttribute("esd-dev-product-config");
128
- if (!t)
129
- return null;
54
+ if (r.length === 0)
55
+ return i;
56
+ let n = 0;
57
+ return r.forEach((m) => {
130
58
  try {
131
- const s = this.unescapeJsonString(t), o = JSON.parse(s);
132
- return {
133
- totalCount: o.totalCount ?? 6,
134
- productsPerRow: o.rowCount ?? 3
135
- };
136
- } catch (s) {
137
- return console.error("[RecommendationMigrator] Failed to parse product config:", s), console.error(
138
- "[RecommendationMigrator] Error details:",
139
- s instanceof Error ? s.message : String(s)
140
- ), null;
141
- }
142
- }
143
- /**
144
- * Decodes HTML entities from JSON string
145
- * @param text - The encoded string
146
- * @returns Decoded string
147
- */
148
- unescapeJsonString(e) {
149
- return e.replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&#x27;/g, "'").replace(/&quot;/g, '"').replace(/\\\\"/g, "'");
150
- }
151
- /**
152
- * Generates product rows using prepareProductRows with default product data
153
- * @param totalCount - Total number of products to display
154
- * @param productsPerRow - Number of products in each row
155
- * @param extractedStyles - Styles extracted from old product elements
156
- * @returns HTML string for product rows with applied styles
157
- */
158
- generateProductRows(e, t, s) {
159
- const o = $(), i = [];
160
- for (let n = 0; n < e; n++) {
161
- const u = o[n % o.length];
162
- i.push({ ...u });
163
- }
164
- let r = q(i, t);
165
- return r = this.applyExtractedStyles(r, s), r;
166
- }
167
- /**
168
- * Extracts styles from old product elements
169
- * @param block - The old recommendation block element
170
- * @returns Object with extracted styles for each element type
171
- */
172
- extractProductStyles(e) {
173
- const t = {}, s = e.querySelector(".product-card");
174
- if (!s)
175
- return console.warn("[RecommendationMigrator] No product card found, using default styles"), t;
176
- const o = this.extractCardBgColor(s);
177
- o && (t.cardBgColor = o);
178
- const i = s.querySelector(".ext-product-image");
179
- if (i) {
180
- const l = i.querySelector("img"), g = l == null ? void 0 : l.getAttribute("width"), a = i.getAttribute("style") || "", p = i.getAttribute("align") || "center", b = i.getAttribute("class") || "", m = this.extractStripoClasses(b);
181
- t.imageWidth = g || "120", t.imageAlign = p, t.imageTdStyle = a, t.imageClasses = m;
182
- }
183
- const r = s.querySelector(".ext-product-name");
184
- if (r) {
185
- const l = r.querySelector("p"), g = (l == null ? void 0 : l.getAttribute("style")) || "", a = r.getAttribute("align") || "center", p = r.getAttribute("style") || "", b = r.getAttribute("class") || "", m = this.extractStripoClasses(b);
186
- t.nameStyle = g, t.nameAlign = a, t.nameTdStyle = p, t.nameClasses = m;
187
- }
188
- const n = s.querySelector(".ext-product-price");
189
- if (n) {
190
- const l = n.querySelector("p"), g = (l == null ? void 0 : l.getAttribute("style")) || "", a = n.getAttribute("align") || "center", p = n.getAttribute("style") || "", b = n.getAttribute("class") || "", m = this.extractStripoClasses(b);
191
- t.priceStyle = g, t.priceAlign = a, t.priceTdStyle = p, t.priceClasses = m;
192
- }
193
- const u = s.querySelector(".ext-product-original-price");
194
- if (u) {
195
- const l = u.querySelector("p"), g = (l == null ? void 0 : l.getAttribute("style")) || "", a = u.getAttribute("align") || "center", p = u.getAttribute("style") || "", b = u.getAttribute("class") || "", m = this.extractStripoClasses(b);
196
- t.oldPriceStyle = g, t.oldPriceAlign = a, t.oldPriceTdStyle = p, t.oldPriceClasses = m;
197
- }
198
- const c = s.querySelector(".ext-product-button");
199
- if (c) {
200
- const l = c.querySelector(".es-button-border"), g = c.querySelector("a.es-button"), a = (l == null ? void 0 : l.getAttribute("style")) || "", p = (g == null ? void 0 : g.getAttribute("style")) || "", b = c.getAttribute("align") || "center", m = c.getAttribute("style") || "", f = c.getAttribute("class") || "", C = this.extractStripoClasses(f), y = ((c == null ? void 0 : c.textContent) || "").trim();
201
- t.buttonBorderStyle = a, t.buttonLinkStyle = p, t.buttonAlign = b, t.buttonTdStyle = m, t.buttonClasses = C, t.buttonText = y;
59
+ M(c, m, o) && (n += 1);
60
+ } catch (e) {
61
+ console.error("[RecommendationMigrator] Unexpected error migrating block:", e);
202
62
  }
203
- return t;
204
- }
205
- /**
206
- * Applies extracted styles to the generated HTML
207
- * @param html - The generated HTML from prepareProductRows
208
- * @param extractedStyles - Styles extracted from old product elements
209
- * @returns HTML with applied styles
210
- */
211
- applyExtractedStyles(e, t) {
212
- if (!t || Object.keys(t).length === 0)
213
- return e;
214
- const s = this.parser.parseFromString(`<table>${e}</table>`, "text/html");
215
- t.cardBgColor && s.querySelectorAll(".product-attribute-cell").forEach((r) => {
216
- r.setAttribute("bgcolor", t.cardBgColor);
217
- }), (t.imageWidth || t.imageAlign || t.imageTdStyle || t.imageClasses) && s.querySelectorAll(".product-image").forEach((r) => {
218
- if (t.imageAlign && r.setAttribute("align", t.imageAlign), t.imageTdStyle && r.setAttribute("style", t.imageTdStyle), t.imageClasses) {
219
- const c = `${r.getAttribute("class") || ""} ${t.imageClasses}`.trim();
220
- r.setAttribute("class", c);
221
- }
222
- const n = r.querySelector("img");
223
- n && t.imageWidth && n.setAttribute("width", t.imageWidth);
224
- }), (t.nameStyle || t.nameAlign || t.nameTdStyle || t.nameClasses) && s.querySelectorAll(".product-name").forEach((r) => {
225
- if (t.nameAlign && r.setAttribute("align", t.nameAlign), t.nameTdStyle && r.setAttribute("style", t.nameTdStyle), t.nameClasses) {
226
- const c = `${r.getAttribute("class") || ""} ${t.nameClasses}`.trim();
227
- r.setAttribute("class", c);
228
- }
229
- const n = r.querySelector("p");
230
- n && t.nameStyle && n.setAttribute("style", t.nameStyle);
231
- }), (t.priceStyle || t.priceAlign || t.priceTdStyle || t.priceClasses) && s.querySelectorAll(".product-price").forEach((r) => {
232
- if (t.priceAlign && r.setAttribute("align", t.priceAlign), t.priceTdStyle && r.setAttribute("style", t.priceTdStyle), t.priceClasses) {
233
- const c = `${r.getAttribute("class") || ""} ${t.priceClasses}`.trim();
234
- r.setAttribute("class", c);
235
- }
236
- const n = r.querySelector("p");
237
- n && t.priceStyle && n.setAttribute("style", t.priceStyle);
238
- }), (t.oldPriceStyle || t.oldPriceAlign || t.oldPriceTdStyle || t.oldPriceClasses) && s.querySelectorAll(".product-old-price").forEach((r) => {
239
- if (t.oldPriceAlign && r.setAttribute("align", t.oldPriceAlign), t.oldPriceTdStyle && r.setAttribute("style", t.oldPriceTdStyle), t.oldPriceClasses) {
240
- const c = `${r.getAttribute("class") || ""} ${t.oldPriceClasses}`.trim();
241
- r.setAttribute("class", c);
242
- }
243
- const n = r.querySelector("p");
244
- n && t.oldPriceStyle && n.setAttribute("style", t.oldPriceStyle);
245
- }), (t.buttonBorderStyle || t.buttonLinkStyle || t.buttonAlign || t.buttonTdStyle || t.buttonClasses) && s.querySelectorAll(".product-button").forEach((r) => {
246
- if (t.buttonAlign && r.setAttribute("align", t.buttonAlign), t.buttonTdStyle && r.setAttribute("style", t.buttonTdStyle), t.buttonClasses) {
247
- const l = `${r.getAttribute("class") || ""} ${t.buttonClasses}`.trim();
248
- r.setAttribute("class", l);
249
- }
250
- const n = r.querySelector(".es-button-border");
251
- n && t.buttonBorderStyle && n.setAttribute("style", t.buttonBorderStyle);
252
- const u = r.querySelector("a.es-button");
253
- u && (t.buttonLinkStyle && u.setAttribute("style", t.buttonLinkStyle), t.buttonText && (u.textContent = t.buttonText));
254
- });
255
- const o = s.querySelector("table");
256
- return (o == null ? void 0 : o.innerHTML) || e;
257
- }
258
- /**
259
- * Builds title block with proper structure
260
- */
261
- buildTitleBlock(e) {
262
- let t = e.text;
263
- e.isBold && e.isItalic ? t = `<strong path="1,0"><em path="1,0,0">${t}</em></strong>` : e.isBold ? t = `<strong path="1,0">${t}</strong>` : e.isItalic && (t = `<em path="1,0">${t}</em>`);
264
- const s = e.align ? ` align="${e.align}"` : "", o = e.styles ? ` style="${e.styles}"` : "";
265
- return `
266
- <td class="esd-block-text es-p10t es-p10b es-p20l es-p20r"${s}>
267
- <p path="1"${o}>
268
- ${t}
269
- </p>
270
- </td>
271
- `;
272
- }
273
- /**
274
- * Removes specified style properties from a style string
275
- */
276
- removeStyleProperties(e, t) {
277
- return e ? t.reduce((o, i) => {
278
- const r = new RegExp(`${i}\\s*:\\s*[^;]*;?`, "gi");
279
- return o.replace(r, "");
280
- }, e).replace(/;\s*;/g, ";").replace(/^;|;$/g, "").trim() : "";
281
- }
282
- /**
283
- * Converts inline display to block display
284
- */
285
- convertInlineToBlock(e) {
286
- if (!e)
287
- return "";
288
- let t = e.replace(/display\s*:\s*inline/gi, "display: block");
289
- return /display\s*:/i.test(t) || (t = t ? `${t}; display: block` : "display: block"), t.replace(/;\s*;/g, ";").replace(/^;|;$/g, "").replace(/"/g, "'").trim();
290
- }
291
- }
292
- function v(d) {
293
- return new B().migrate(d);
63
+ }), n > 0 && console.info(`[RecommendationMigrator] Migrated ${n} legacy Recommendation block(s)`), t.documentElement.outerHTML;
294
64
  }
295
65
  export {
296
- v as migrateRecommendation
66
+ H as migrateRecommendation
297
67
  };
@@ -18,7 +18,8 @@ const s = {
18
18
  { text: "after the amount", value: "1" }
19
19
  ], d = [
20
20
  { text: "dot(.)", value: "." },
21
- { text: "comma(,)", value: "," }
21
+ { text: "comma(,)", value: "," },
22
+ { text: "space( )", value: " " }
22
23
  ], p = [
23
24
  { text: "0", value: "0" },
24
25
  { text: "1", value: "1" },
@@ -2,10 +2,15 @@ const e = [
2
2
  ".service-element.stacked-panel-item.ng-tns-c1014751574-3.level-bottom-0.ng-star-inserted",
3
3
  ".service-element.stacked-panel-item.ng-tns-c1014751574-3.level-bottom-1.ng-star-inserted",
4
4
  ".service-element.stacked-panel-item.ng-tns-c1014751574-3.level-bottom-2.ng-star-inserted"
5
- ], t = "ui-editor", n = 'button[role="tab"][aria-label="Card Composition"]', s = 'button[role="tab"][aria-label="Settings"]', o = ".in-ribbons-wrapper";
5
+ ], t = "ui-editor", n = 'button[role="tab"][aria-label="Card Composition"]', s = 'button[role="tab"][aria-label="Settings"]', E = ".in-ribbons-wrapper", o = ".guido__amp-toggle-html", a = ".in-segments-wrapper", O = '[data-testid="guido-header"]', _ = 158, i = 10;
6
6
  export {
7
+ o as AMP_TOGGLE_BUTTON_SELECTOR,
8
+ a as AMP_TOGGLE_WRAPPER_SELECTOR,
7
9
  n as CARD_COMPOSITION_TAB_SELECTOR,
8
- o as RIBBON_SELECTOR,
10
+ O as HEADER_SELECTOR,
11
+ _ as POPOVER_LEFT_OFFSET,
12
+ i as POPOVER_TOP_GAP,
13
+ E as RIBBON_SELECTOR,
9
14
  e as SERVICE_HOVER_SELECTORS,
10
15
  s as SETTINGS_TAB_SELECTOR,
11
16
  t as UI_EDITOR_SELECTOR
@@ -1,29 +1,35 @@
1
- import { useTranslations as e } from "../composables/useTranslations.js";
2
- import { getEnvironmentPrefix as R } from "../utils/environmentUtil.js";
3
- const _ = {
1
+ import { useTranslations as R } from "../composables/useTranslations.js";
2
+ import { ProductType as s } from "../@types/config/schemas.js";
3
+ import "../@types/config/defaults.js";
4
+ import { getEnvironmentPrefix as S } from "../utils/environmentUtil.js";
5
+ const B = {
4
6
  UNSUBSCRIBE_LINK_TYPE: 1,
5
7
  PREFERENCES_LINK_TYPE: 3
6
- }, I = {
8
+ }, i = {
7
9
  UNSUBSCRIBE_LINK_REGEX: /{{ins-unsubscribe-link}}/g,
8
10
  DATA_OGSB_BUTTON_CSS_REGEX: "\\[data-ogsb\\]\\s*\\.es-button\\.es-button-[0-9]+\\s*\\{(?:[^\\}]*)\\}",
9
11
  GLOBAL_UNSUBSCRIBE_LINK_REGEX: /{{ins-global-unsubscribe-link}}/g,
10
12
  PREFERENCES_UNSUBSCRIBE_LINK_REGEX: /{{ins-preferences-unsubscribe-link}}/g
11
- }, n = R(), r = {
13
+ }, n = S(), C = {
12
14
  UNSUBSCRIBE_URL: `https://mail.${n}.com/user/v1/unsub`,
13
15
  PREFERENCES_URL: `https://mail.${n}.com/user/v1/prefs`
14
- }, B = "iid", i = {
16
+ }, U = {
17
+ [s.EMAIL]: "email",
18
+ [s.ARCHITECT]: "journey",
19
+ [s.UNSUBSCRIBE_PAGES]: "email"
20
+ }, t = "iid", o = {
15
21
  name: "Global Unsubscribe",
16
22
  sendGridId: "G"
17
- }, C = "/email/unsubscribe-pages", E = {
23
+ }, c = "/email/unsubscribe-pages", E = {
18
24
  GLOBAL_UNSUBSCRIBE: 1,
19
25
  GLOBAL_UNSUBSCRIBE_CONFIRMATION_PAGE: 2,
20
26
  SUBSCRIPTION_PREFERENCE_CENTER: 3,
21
27
  SUBSCRIPTION_PREFERENCE_CONFIRMATION: 4,
22
28
  RESUBSCRIBE: 5
23
- }, U = {
29
+ }, u = {
24
30
  [E.GLOBAL_UNSUBSCRIBE]: "custom-unsubscribe",
25
31
  [E.SUBSCRIPTION_PREFERENCE_CENTER]: "custom-preferences"
26
- }, t = {
32
+ }, T = {
27
33
  [E.GLOBAL_UNSUBSCRIBE]: [
28
34
  E.GLOBAL_UNSUBSCRIBE,
29
35
  E.GLOBAL_UNSUBSCRIBE_CONFIRMATION_PAGE,
@@ -33,30 +39,31 @@ const _ = {
33
39
  E.SUBSCRIPTION_PREFERENCE_CENTER,
34
40
  E.SUBSCRIPTION_PREFERENCE_CONFIRMATION
35
41
  ]
36
- }, c = () => {
37
- const s = e();
42
+ }, b = () => {
43
+ const e = R();
38
44
  return {
39
- [E.GLOBAL_UNSUBSCRIBE]: s("unsubscription-preference.type-global-unsubscribe"),
40
- [E.GLOBAL_UNSUBSCRIBE_CONFIRMATION_PAGE]: s("unsubscription-preference.type-global-unsubscription-confirmation"),
41
- [E.RESUBSCRIBE]: s("unsubscription-preference.type-resubscribe"),
42
- [E.SUBSCRIPTION_PREFERENCE_CENTER]: s("unsubscription-preference.type-subscription-preferences-center"),
43
- [E.SUBSCRIPTION_PREFERENCE_CONFIRMATION]: s("unsubscription-preference.type-subscription-preferences-confirmation")
45
+ [E.GLOBAL_UNSUBSCRIBE]: e("unsubscription-preference.type-global-unsubscribe"),
46
+ [E.GLOBAL_UNSUBSCRIBE_CONFIRMATION_PAGE]: e("unsubscription-preference.type-global-unsubscription-confirmation"),
47
+ [E.RESUBSCRIBE]: e("unsubscription-preference.type-resubscribe"),
48
+ [E.SUBSCRIPTION_PREFERENCE_CENTER]: e("unsubscription-preference.type-subscription-preferences-center"),
49
+ [E.SUBSCRIPTION_PREFERENCE_CONFIRMATION]: e("unsubscription-preference.type-subscription-preferences-confirmation")
44
50
  };
45
- }, o = {
51
+ }, P = {
46
52
  default: "{{ins-unsubscribe-link}}",
47
53
  [E.GLOBAL_UNSUBSCRIBE]: "{{ins-global-unsubscribe-link}}",
48
54
  [E.SUBSCRIPTION_PREFERENCE_CENTER]: "{{ins-preferences-unsubscribe-link}}"
49
55
  };
50
56
  export {
51
- i as DEFAULT_UNSUBSCRIBE_GROUP,
52
- B as INSIDER_ID,
53
- I as LINK_REGEXES,
54
- _ as LINK_TYPES,
55
- o as MERGE_TAGS,
57
+ o as DEFAULT_UNSUBSCRIBE_GROUP,
58
+ t as INSIDER_ID,
59
+ i as LINK_REGEXES,
60
+ B as LINK_TYPES,
61
+ P as MERGE_TAGS,
56
62
  E as PAGE_TYPES,
57
- t as TYPE_COLLECTIONS,
58
- C as UNSUBSCRIBE_PAGES_LINK,
59
- U as UNSUBSCRIBE_SYNC_MODULE_TYPES,
60
- r as URLS,
61
- c as getTypeTranslations
63
+ U as PRODUCT_TYPE_URL_SEGMENTS,
64
+ T as TYPE_COLLECTIONS,
65
+ c as UNSUBSCRIBE_PAGES_LINK,
66
+ u as UNSUBSCRIBE_SYNC_MODULE_TYPES,
67
+ C as URLS,
68
+ b as getTypeTranslations
62
69
  };
@@ -1,4 +1,4 @@
1
- var o = /* @__PURE__ */ ((c) => (c.BUTTON_ALIGN = "recommendation-block-button-align-control", c.BUTTON_BORDER = "recommendation-block-button-border-control", c.BUTTON_BORDER_RADIUS = "recommendation-block-button-border-radius-control", c.BUTTON_COLOR = "recommendation-block-button-color-control", c.BUTTON_FIT_TO_CONTENT = "recommendation-block-button-fit-to-content-control", c.BUTTON_FONT_FAMILY = "recommendation-block-button-font-family-control", c.BUTTON_MARGINS = "recommendation-block-button-margins-control", c.BUTTON_PADDINGS = "recommendation-block-button-paddings-control", c.BUTTON_TEXT = "recommendation-block-button-text-control", c.BUTTON_TEXT_SIZE = "recommendation-block-button-text-size-control", c.BUTTON_TEXT_STYLE_AND_FONT_COLOR = "recommendation-block-button-text-style-and-font-color-control", c.NAME_ALIGN = "recommendation-block-name-align-control", c.NAME_BACKGROUND = "recommendation-block-name-background-control", c.NAME_COLOR = "recommendation-block-name-color-control", c.NAME_FONT_FAMILY = "recommendation-block-name-font-family-control", c.NAME_PADDINGS = "recommendation-block-name-paddings-control", c.NAME_SIZE = "recommendation-block-name-size-control", c.NAME_STYLE = "recommendation-block-name-style-control", c.NAME_TEXT_TRIM = "recommendation-block-name-text-trim-control", c.PRICE_ALIGN = "recommendation-block-price-align-control", c.PRICE_BACKGROUND = "recommendation-block-price-background-control", c.PRICE_COLOR = "recommendation-block-price-color-control", c.PRICE_FONT_FAMILY = "recommendation-block-price-font-family-control", c.PRICE_PADDINGS = "recommendation-block-price-paddings-control", c.PRICE_SIZE = "recommendation-block-price-size-control", c.PRICE_STYLE = "recommendation-block-price-style-control", c.OLD_PRICE_ALIGN = "recommendation-block-old-price-align-control", c.OLD_PRICE_BACKGROUND = "recommendation-block-old-price-background-control", c.OLD_PRICE_COLOR = "recommendation-block-old-price-color-control", c.OLD_PRICE_FONT_FAMILY = "recommendation-block-old-price-font-family-control", c.OLD_PRICE_PADDINGS = "recommendation-block-old-price-paddings-control", c.OLD_PRICE_SIZE = "recommendation-block-old-price-size-control", c.OLD_PRICE_STYLE = "recommendation-block-old-price-style-control", c.OMNIBUS_PRICE_ALIGN = "recommendation-block-omnibus-price-align-control", c.OMNIBUS_PRICE_BACKGROUND = "recommendation-block-omnibus-price-background-control", c.OMNIBUS_PRICE_COLOR = "recommendation-block-omnibus-price-color-control", c.OMNIBUS_PRICE_FONT_FAMILY = "recommendation-block-omnibus-price-font-family-control", c.OMNIBUS_PRICE_PADDINGS = "recommendation-block-omnibus-price-paddings-control", c.OMNIBUS_PRICE_SIZE = "recommendation-block-omnibus-price-size-control", c.OMNIBUS_PRICE_STYLE = "recommendation-block-omnibus-price-style-control", c.OMNIBUS_PRICE_TEXT_BEFORE = "recommendation-block-omnibus-price-text-before-control", c.OMNIBUS_PRICE_TEXT_AFTER = "recommendation-block-omnibus-price-text-after-control", c.OMNIBUS_DISCOUNT_ALIGN = "recommendation-block-omnibus-discount-align-control", c.OMNIBUS_DISCOUNT_BACKGROUND = "recommendation-block-omnibus-discount-background-control", c.OMNIBUS_DISCOUNT_COLOR = "recommendation-block-omnibus-discount-color-control", c.OMNIBUS_DISCOUNT_FONT_FAMILY = "recommendation-block-omnibus-discount-font-family-control", c.OMNIBUS_DISCOUNT_PADDINGS = "recommendation-block-omnibus-discount-paddings-control", c.OMNIBUS_DISCOUNT_SIZE = "recommendation-block-omnibus-discount-size-control", c.OMNIBUS_DISCOUNT_STYLE = "recommendation-block-omnibus-discount-style-control", c.OMNIBUS_DISCOUNT_TEXT_BEFORE = "recommendation-block-omnibus-discount-text-before-control", c.OMNIBUS_DISCOUNT_TEXT_AFTER = "recommendation-block-omnibus-discount-text-after-control", c.IMAGE_SIZE = "recommendation-block-image-size-control", c.IMAGE_MARGINS = "recommendation-block-image-margins-control", c.CUSTOM_ATTR_ALIGN = "recommendation-block-custom-attr-align-control", c.CUSTOM_ATTR_BACKGROUND = "recommendation-block-custom-attr-background-control", c.CUSTOM_ATTR_COLOR = "recommendation-block-custom-attr-color-control", c.CUSTOM_ATTR_FONT_FAMILY = "recommendation-block-custom-attr-font-family-control", c.CUSTOM_ATTR_PADDINGS = "recommendation-block-custom-attr-paddings-control", c.CUSTOM_ATTR_SIZE = "recommendation-block-custom-attr-size-control", c.CUSTOM_ATTR_STYLE = "recommendation-block-custom-attr-style-control", c.SYNC_INFO_MESSAGE = "recommendation-block-sync-info-message", c))(o || {});
1
+ var o = /* @__PURE__ */ ((c) => (c.BUTTON_ALIGN = "recommendation-block-button-align-control", c.BUTTON_BORDER = "recommendation-block-button-border-control", c.BUTTON_BORDER_RADIUS = "recommendation-block-button-border-radius-control", c.BUTTON_COLOR = "recommendation-block-button-color-control", c.BUTTON_FIT_TO_CONTENT = "recommendation-block-button-fit-to-content-control", c.BUTTON_FONT_FAMILY = "recommendation-block-button-font-family-control", c.BUTTON_MARGINS = "recommendation-block-button-margins-control", c.BUTTON_PADDINGS = "recommendation-block-button-paddings-control", c.BUTTON_TEXT = "recommendation-block-button-text-control", c.BUTTON_TEXT_SIZE = "recommendation-block-button-text-size-control", c.BUTTON_TEXT_STYLE_AND_FONT_COLOR = "recommendation-block-button-text-style-and-font-color-control", c.NAME_ALIGN = "recommendation-block-name-align-control", c.NAME_BACKGROUND = "recommendation-block-name-background-control", c.NAME_COLOR = "recommendation-block-name-color-control", c.NAME_FONT_FAMILY = "recommendation-block-name-font-family-control", c.NAME_PADDINGS = "recommendation-block-name-paddings-control", c.NAME_SIZE = "recommendation-block-name-size-control", c.NAME_STYLE = "recommendation-block-name-style-control", c.NAME_TEXT_TRIM = "recommendation-block-name-text-trim-control", c.PRICE_ALIGN = "recommendation-block-price-align-control", c.PRICE_BACKGROUND = "recommendation-block-price-background-control", c.PRICE_COLOR = "recommendation-block-price-color-control", c.PRICE_FONT_FAMILY = "recommendation-block-price-font-family-control", c.PRICE_PADDINGS = "recommendation-block-price-paddings-control", c.PRICE_SIZE = "recommendation-block-price-size-control", c.PRICE_STYLE = "recommendation-block-price-style-control", c.OLD_PRICE_ALIGN = "recommendation-block-old-price-align-control", c.OLD_PRICE_BACKGROUND = "recommendation-block-old-price-background-control", c.OLD_PRICE_COLOR = "recommendation-block-old-price-color-control", c.OLD_PRICE_FONT_FAMILY = "recommendation-block-old-price-font-family-control", c.OLD_PRICE_PADDINGS = "recommendation-block-old-price-paddings-control", c.OLD_PRICE_SIZE = "recommendation-block-old-price-size-control", c.OLD_PRICE_STYLE = "recommendation-block-old-price-style-control", c.OMNIBUS_PRICE_ALIGN = "recommendation-block-omnibus-price-align-control", c.OMNIBUS_PRICE_BACKGROUND = "recommendation-block-omnibus-price-background-control", c.OMNIBUS_PRICE_COLOR = "recommendation-block-omnibus-price-color-control", c.OMNIBUS_PRICE_FONT_FAMILY = "recommendation-block-omnibus-price-font-family-control", c.OMNIBUS_PRICE_PADDINGS = "recommendation-block-omnibus-price-paddings-control", c.OMNIBUS_PRICE_SIZE = "recommendation-block-omnibus-price-size-control", c.OMNIBUS_PRICE_STYLE = "recommendation-block-omnibus-price-style-control", c.OMNIBUS_PRICE_TEXT_BEFORE = "recommendation-block-omnibus-price-text-before-control", c.OMNIBUS_PRICE_TEXT_AFTER = "recommendation-block-omnibus-price-text-after-control", c.OMNIBUS_DISCOUNT_ALIGN = "recommendation-block-omnibus-discount-align-control", c.OMNIBUS_DISCOUNT_BACKGROUND = "recommendation-block-omnibus-discount-background-control", c.OMNIBUS_DISCOUNT_COLOR = "recommendation-block-omnibus-discount-color-control", c.OMNIBUS_DISCOUNT_FONT_FAMILY = "recommendation-block-omnibus-discount-font-family-control", c.OMNIBUS_DISCOUNT_PADDINGS = "recommendation-block-omnibus-discount-paddings-control", c.OMNIBUS_DISCOUNT_SIZE = "recommendation-block-omnibus-discount-size-control", c.OMNIBUS_DISCOUNT_STYLE = "recommendation-block-omnibus-discount-style-control", c.OMNIBUS_DISCOUNT_TEXT_BEFORE = "recommendation-block-omnibus-discount-text-before-control", c.OMNIBUS_DISCOUNT_TEXT_AFTER = "recommendation-block-omnibus-discount-text-after-control", c.IMAGE_SIZE = "recommendation-block-image-size-control", c.IMAGE_MARGINS = "recommendation-block-image-margins-control", c.CUSTOM_ATTR_ALIGN = "recommendation-block-custom-attr-align-control", c.CUSTOM_ATTR_BACKGROUND = "recommendation-block-custom-attr-background-control", c.CUSTOM_ATTR_COLOR = "recommendation-block-custom-attr-color-control", c.CUSTOM_ATTR_FONT_FAMILY = "recommendation-block-custom-attr-font-family-control", c.CUSTOM_ATTR_PADDINGS = "recommendation-block-custom-attr-paddings-control", c.CUSTOM_ATTR_SIZE = "recommendation-block-custom-attr-size-control", c.CUSTOM_ATTR_STYLE = "recommendation-block-custom-attr-style-control", c.CUSTOM_ATTR_TEXT_TRIM = "recommendation-block-custom-attr-text-trim-control", c.SYNC_INFO_MESSAGE = "recommendation-block-sync-info-message", c))(o || {});
2
2
  export {
3
3
  o as RecommendationControlId
4
4
  };
@@ -1,4 +1,4 @@
1
- import { DEFAULT_MOBILE_ROW_SPACING as R, DEFAULT_MOBILE_COLUMN_SPACING as U, DEFAULT_ROW_SPACING as i, DEFAULT_COLUMN_SPACING as s, DEFAULT_MOBILE_CARDS_IN_ROW as o, DEFAULT_CARDS_IN_ROW as C } from "./layout.js";
1
+ import { DEFAULT_COLUMN_SPACING as R, DEFAULT_ROW_SPACING as U, DEFAULT_MOBILE_ROW_SPACING as i, DEFAULT_MOBILE_COLUMN_SPACING as s, DEFAULT_MOBILE_CARDS_IN_ROW as o, DEFAULT_CARDS_IN_ROW as C } from "./layout.js";
2
2
  import { ATTR_PRODUCT_IMAGE as _, ATTR_PRODUCT_NAME as e, ATTR_PRODUCT_OLD_PRICE as t, ATTR_PRODUCT_PRICE as T, ATTR_PRODUCT_OMNIBUS_PRICE as r, ATTR_PRODUCT_OMNIBUS_DISCOUNT as I, ATTR_PRODUCT_BUTTON as n } from "./selectors.js";
3
3
  const O = {
4
4
  code: "USD",
@@ -44,10 +44,10 @@ const O = {
44
44
  mobileCardsInRow: o,
45
45
  mobileLayoutEnabled: !1,
46
46
  previousMobileCardsInRow: o,
47
- columnSpacing: s,
48
- rowSpacing: i,
49
- mobileColumnSpacing: U,
50
- mobileRowSpacing: R,
47
+ columnSpacing: R,
48
+ rowSpacing: U,
49
+ mobileColumnSpacing: s,
50
+ mobileRowSpacing: i,
51
51
  // Composition
52
52
  composition: a,
53
53
  visibility: E,