@useinsider/guido 2.1.0-beta.aa05b06 → 2.1.0-beta.abc38f2

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 (200) hide show
  1. package/dist/@types/config/schemas.js +1 -1
  2. package/dist/components/organisms/base/Toaster.vue.js +4 -4
  3. package/dist/components/organisms/base/Toaster.vue2.js +12 -9
  4. package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue.js +5 -5
  5. package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue2.js +2 -2
  6. package/dist/components/organisms/extensions/recommendation/FilterItem.vue.js +11 -13
  7. package/dist/components/organisms/extensions/recommendation/FilterItem.vue2.js +54 -23
  8. package/dist/components/organisms/extensions/recommendation/FilterSelectionDrawer.vue.js +7 -5
  9. package/dist/components/organisms/extensions/recommendation/FilterSelectionDrawer.vue2.js +37 -23
  10. package/dist/components/organisms/extensions/recommendation/Filters.vue.js +11 -11
  11. package/dist/components/organisms/extensions/recommendation/Filters.vue2.js +48 -36
  12. package/dist/components/organisms/extensions/recommendation/LogicAdapter.vue2.js +11 -9
  13. package/dist/components/organisms/header/EditorActions.vue.js +10 -8
  14. package/dist/components/organisms/header/EditorActions.vue2.js +40 -30
  15. package/dist/components/organisms/header/MigrationConfirmModal.vue.js +17 -0
  16. package/dist/components/organisms/header/MigrationConfirmModal.vue2.js +39 -0
  17. package/dist/components/organisms/unsubscribe/UnsubscribePageSelection.vue.js +1 -1
  18. package/dist/components/organisms/unsubscribe/UnsubscribePageSelection.vue2.js +19 -19
  19. package/dist/composables/useBlocksConfig.js +21 -20
  20. package/dist/composables/useHtmlValidator.js +114 -104
  21. package/dist/composables/useRecommendation.js +54 -21
  22. package/dist/composables/useStripo.js +25 -23
  23. package/dist/composables/useVersionHistoryApi.js +1 -1
  24. package/dist/config/compiler/recommendationCompilerRules.js +45 -39
  25. package/dist/config/compiler/utils/recommendationCompilerUtils.js +121 -0
  26. package/dist/config/i18n/en/index.js +11 -0
  27. package/dist/config/i18n/en/labels.json.js +12 -0
  28. package/dist/config/i18n/en/toasters.json.js +56 -0
  29. package/dist/config/i18n/en/tooltips.json.js +82 -0
  30. package/dist/config/i18n/index.js +7 -0
  31. package/dist/config/migrator/itemsBlockMigrator.js +129 -120
  32. package/dist/config/migrator/recommendationMigrator.js +58 -54
  33. package/dist/enums/block.js +4 -0
  34. package/dist/enums/extensions/recommendationBlock.js +1 -1
  35. package/dist/enums/recommendation.js +16 -15
  36. package/dist/extensions/Blocks/Items/block.js +30 -21
  37. package/dist/extensions/Blocks/Items/iconsRegistry.js +7 -6
  38. package/dist/extensions/Blocks/Items/items.css.js +48 -0
  39. package/dist/extensions/Blocks/Recommendation/block.js +142 -9
  40. package/dist/extensions/Blocks/Recommendation/constants/blockIds.js +4 -0
  41. package/dist/extensions/Blocks/Recommendation/constants/controlIds.js +4 -0
  42. package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +66 -0
  43. package/dist/extensions/Blocks/Recommendation/constants/layout.js +22 -0
  44. package/dist/extensions/Blocks/Recommendation/constants/selectors.js +21 -0
  45. package/dist/extensions/Blocks/Recommendation/controls/button/index.js +64 -0
  46. package/dist/extensions/Blocks/Recommendation/controls/cardBackground/index.js +80 -0
  47. package/dist/extensions/Blocks/Recommendation/controls/cardComposition/index.js +232 -0
  48. package/dist/extensions/Blocks/Recommendation/controls/image/index.js +19 -0
  49. package/dist/extensions/Blocks/Recommendation/controls/layout/index.js +92 -0
  50. package/dist/extensions/Blocks/Recommendation/controls/main/algorithm.js +102 -0
  51. package/dist/extensions/Blocks/Recommendation/controls/main/currency.js +209 -0
  52. package/dist/extensions/Blocks/Recommendation/controls/main/filters.js +52 -0
  53. package/dist/extensions/Blocks/Recommendation/controls/main/index.js +269 -0
  54. package/dist/extensions/Blocks/Recommendation/controls/main/locale.js +70 -0
  55. package/dist/extensions/Blocks/Recommendation/controls/main/productLayout.js +160 -0
  56. package/dist/extensions/Blocks/Recommendation/controls/main/shuffle.js +67 -0
  57. package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +307 -0
  58. package/dist/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.js +21 -0
  59. package/dist/extensions/Blocks/Recommendation/controls/name/index.js +46 -0
  60. package/dist/extensions/Blocks/Recommendation/controls/name/textTrim.js +108 -0
  61. package/dist/extensions/Blocks/Recommendation/controls/oldPrice/index.js +44 -0
  62. package/dist/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.js +48 -0
  63. package/dist/extensions/Blocks/Recommendation/controls/{omnibusDiscountTextAfterControl.js → omnibusDiscount/textAfter.js} +16 -14
  64. package/dist/extensions/Blocks/Recommendation/controls/{omnibusDiscountTextBeforeControl.js → omnibusDiscount/textBefore.js} +16 -14
  65. package/dist/extensions/Blocks/Recommendation/controls/omnibusPrice/index.js +48 -0
  66. package/dist/extensions/Blocks/Recommendation/controls/{omnibusPriceTextAfterControl.js → omnibusPrice/textAfter.js} +16 -14
  67. package/dist/extensions/Blocks/Recommendation/controls/{omnibusPriceTextBeforeControl.js → omnibusPrice/textBefore.js} +14 -12
  68. package/dist/extensions/Blocks/Recommendation/controls/price/index.js +44 -0
  69. package/dist/extensions/Blocks/Recommendation/controls/spacing/index.js +222 -0
  70. package/dist/extensions/Blocks/Recommendation/extension.js +40 -17
  71. package/dist/extensions/Blocks/Recommendation/iconsRegistry.js +21 -4
  72. package/dist/extensions/Blocks/Recommendation/recommendation.css.js +61 -4
  73. package/dist/extensions/Blocks/Recommendation/services/configService.js +240 -0
  74. package/dist/extensions/Blocks/Recommendation/settingsPanel.js +21 -10
  75. package/dist/extensions/Blocks/Recommendation/store/recommendation.js +311 -218
  76. package/dist/extensions/Blocks/Recommendation/templates/grid/elementRenderer.js +228 -0
  77. package/dist/extensions/Blocks/Recommendation/templates/grid/migration.js +251 -0
  78. package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +66 -0
  79. package/dist/extensions/Blocks/Recommendation/templates/index.js +12 -0
  80. package/dist/extensions/Blocks/Recommendation/templates/list/elementRenderer.js +169 -0
  81. package/dist/extensions/Blocks/Recommendation/templates/list/template.js +73 -0
  82. package/dist/extensions/Blocks/Recommendation/templates/utils.js +134 -0
  83. package/dist/extensions/Blocks/Recommendation/types/nodeConfig.js +6 -0
  84. package/dist/extensions/Blocks/Recommendation/utils/filterUtil.js +12 -12
  85. package/dist/extensions/Blocks/Recommendation/utils/preserveTextStyles.js +26 -15
  86. package/dist/extensions/Blocks/Recommendation/utils/priceFormatter.js +29 -0
  87. package/dist/extensions/Blocks/Recommendation/utils/tagName.js +46 -0
  88. package/dist/extensions/Blocks/Recommendation/validation/filterSchema.js +29 -0
  89. package/dist/extensions/Blocks/Unsubscribe/block.js +29 -29
  90. package/dist/extensions/Blocks/Unsubscribe/control.js +12 -9
  91. package/dist/extensions/Blocks/Unsubscribe/elements/preview.js +13 -11
  92. package/dist/extensions/Blocks/Unsubscribe/styles.css.js +31 -1
  93. package/dist/extensions/Blocks/common-control.js +12 -4
  94. package/dist/extensions/Blocks/controlFactories.js +125 -93
  95. package/dist/extensions/ModulesTabIcons/extension.js +3 -3
  96. package/dist/guido.css +1 -1
  97. package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +242 -186
  98. package/dist/services/recommendationApi.js +11 -8
  99. package/dist/services/stripoApi.js +20 -17
  100. package/dist/services/templateLibraryApi.js +16 -13
  101. package/dist/src/@types/extensions/block.d.ts +2 -0
  102. package/dist/src/components/Guido.vue.d.ts +1 -1
  103. package/dist/src/components/organisms/extensions/recommendation/FilterItem.vue.d.ts +1 -0
  104. package/dist/src/components/organisms/extensions/recommendation/Filters.vue.d.ts +17 -1
  105. package/dist/src/components/organisms/header/EditorActions.vue.d.ts +1 -1
  106. package/dist/src/components/organisms/header/HeaderWrapper.vue.d.ts +1 -1
  107. package/dist/src/components/organisms/header/MigrationConfirmModal.vue.d.ts +6 -0
  108. package/dist/src/components/organisms/header/RightSlot.vue.d.ts +1 -1
  109. package/dist/src/components/wrappers/WpDrawer.vue.d.ts +1 -1
  110. package/dist/src/components/wrappers/WpModal.vue.d.ts +2 -2
  111. package/dist/src/composables/useRecommendation.d.ts +1 -0
  112. package/dist/src/config/compiler/utils/recommendationCompilerUtils.d.ts +17 -0
  113. package/dist/src/config/i18n/en/index.d.ts +1 -0
  114. package/dist/src/config/i18n/index.d.ts +16 -0
  115. package/dist/src/enums/block.d.ts +4 -0
  116. package/dist/src/extensions/Blocks/Items/block.d.ts +3 -1
  117. package/dist/src/extensions/Blocks/Recommendation/block.d.ts +70 -1
  118. package/dist/src/extensions/Blocks/Recommendation/constants/blockIds.d.ts +13 -0
  119. package/dist/src/extensions/Blocks/Recommendation/{constants.d.ts → constants/controlIds.d.ts} +0 -24
  120. package/dist/src/extensions/Blocks/Recommendation/constants/defaultConfig.d.ts +49 -0
  121. package/dist/src/extensions/Blocks/Recommendation/constants/index.d.ts +13 -0
  122. package/dist/src/extensions/Blocks/Recommendation/constants/layout.d.ts +41 -0
  123. package/dist/src/extensions/Blocks/Recommendation/constants/selectors.d.ts +35 -0
  124. package/dist/src/extensions/Blocks/Recommendation/controls/button/index.d.ts +143 -0
  125. package/dist/src/extensions/Blocks/Recommendation/controls/cardBackground/index.d.ts +31 -0
  126. package/dist/src/extensions/Blocks/Recommendation/{cardCompositionControl.d.ts → controls/cardComposition/index.d.ts} +23 -3
  127. package/dist/src/extensions/Blocks/Recommendation/controls/image/index.d.ts +35 -0
  128. package/dist/src/extensions/Blocks/Recommendation/controls/index.d.ts +21 -589
  129. package/dist/src/extensions/Blocks/Recommendation/controls/layout/index.d.ts +37 -0
  130. package/dist/src/extensions/Blocks/Recommendation/controls/main/algorithm.d.ts +29 -0
  131. package/dist/src/extensions/Blocks/Recommendation/controls/main/currency.d.ts +52 -0
  132. package/dist/src/extensions/Blocks/Recommendation/controls/main/filters.d.ts +22 -0
  133. package/dist/src/extensions/Blocks/Recommendation/controls/main/index.d.ts +84 -0
  134. package/dist/src/extensions/Blocks/Recommendation/controls/main/locale.d.ts +24 -0
  135. package/dist/src/extensions/Blocks/Recommendation/controls/main/productLayout.d.ts +60 -0
  136. package/dist/src/extensions/Blocks/Recommendation/controls/main/shuffle.d.ts +23 -0
  137. package/dist/src/extensions/Blocks/Recommendation/controls/main/utils.d.ts +221 -0
  138. package/dist/src/extensions/Blocks/Recommendation/controls/mobileLayout/cssRules.d.ts +29 -0
  139. package/dist/src/extensions/Blocks/Recommendation/controls/name/index.d.ts +97 -0
  140. package/dist/src/extensions/Blocks/Recommendation/controls/name/textTrim.d.ts +34 -0
  141. package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/index.d.ts +95 -0
  142. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.d.ts +100 -0
  143. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textAfter.d.ts +15 -0
  144. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/textBefore.d.ts +15 -0
  145. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/index.d.ts +100 -0
  146. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textAfter.d.ts +15 -0
  147. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/textBefore.d.ts +15 -0
  148. package/dist/src/extensions/Blocks/Recommendation/controls/price/index.d.ts +95 -0
  149. package/dist/src/extensions/Blocks/Recommendation/controls/spacing/index.d.ts +83 -0
  150. package/dist/src/extensions/Blocks/Recommendation/extension.d.ts +9 -0
  151. package/dist/src/extensions/Blocks/Recommendation/services/configService.d.ts +151 -0
  152. package/dist/src/extensions/Blocks/Recommendation/services/index.d.ts +6 -0
  153. package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +154 -468
  154. package/dist/src/extensions/Blocks/Recommendation/templates/grid/elementRenderer.d.ts +20 -0
  155. package/dist/src/extensions/Blocks/Recommendation/templates/{migrationTemplate.d.ts → grid/migration.d.ts} +11 -4
  156. package/dist/src/extensions/Blocks/Recommendation/templates/grid/template.d.ts +33 -0
  157. package/dist/src/extensions/Blocks/Recommendation/templates/index.d.ts +41 -0
  158. package/dist/src/extensions/Blocks/Recommendation/templates/list/elementRenderer.d.ts +8 -0
  159. package/dist/src/extensions/Blocks/Recommendation/templates/list/migration.d.ts +25 -0
  160. package/dist/src/extensions/Blocks/Recommendation/templates/list/template.d.ts +18 -0
  161. package/dist/src/extensions/Blocks/Recommendation/templates/utils.d.ts +66 -0
  162. package/dist/src/extensions/Blocks/Recommendation/types/index.d.ts +7 -0
  163. package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +166 -0
  164. package/dist/src/extensions/Blocks/Recommendation/utils/priceFormatter.d.ts +33 -0
  165. package/dist/src/extensions/Blocks/Recommendation/utils/stylePreserver.d.ts +113 -0
  166. package/dist/src/extensions/Blocks/Recommendation/utils/tagName.d.ts +77 -0
  167. package/dist/src/extensions/Blocks/Recommendation/validation/filterSchema.d.ts +15 -0
  168. package/dist/src/extensions/Blocks/Unsubscribe/control.d.ts +1 -0
  169. package/dist/src/extensions/Blocks/common-control.d.ts +5 -0
  170. package/dist/src/stores/template.d.ts +29 -0
  171. package/dist/src/utils/migrationBannerHtml.d.ts +2 -0
  172. package/dist/static/assets/info.svg.js +5 -0
  173. package/dist/static/styles/components/notification.css.js +19 -0
  174. package/dist/static/styles/components/tools.css.js +6 -2
  175. package/dist/static/styles/components/version-history.css.js +10 -2
  176. package/dist/static/styles/components/wide-panel.css.js +18 -2
  177. package/dist/static/styles/customEditorStyle.css.js +35 -11
  178. package/dist/static/styles/variables.css.js +2 -0
  179. package/dist/static/templates/empty/index.html.js +74 -0
  180. package/dist/static/templates/empty/style.css.js +779 -0
  181. package/dist/stores/template.js +15 -0
  182. package/dist/stores/unsubscribe.js +37 -34
  183. package/dist/utils/migrationBannerHtml.js +21 -0
  184. package/dist/utils/pairProductVariables.js +57 -56
  185. package/dist/utils/templatePreparation.js +15 -14
  186. package/package.json +2 -2
  187. package/dist/extensions/Blocks/Recommendation/cardCompositionControl.js +0 -187
  188. package/dist/extensions/Blocks/Recommendation/constants.js +0 -13
  189. package/dist/extensions/Blocks/Recommendation/control.js +0 -336
  190. package/dist/extensions/Blocks/Recommendation/controls/cardBackgroundColorControl.js +0 -68
  191. package/dist/extensions/Blocks/Recommendation/controls/index.js +0 -245
  192. package/dist/extensions/Blocks/Recommendation/controls/nameTextTrimControl.js +0 -74
  193. package/dist/extensions/Blocks/Recommendation/controls/spacingControl.js +0 -188
  194. package/dist/extensions/Blocks/Recommendation/templates/blockTemplate.js +0 -181
  195. package/dist/extensions/Blocks/Recommendation/templates/migrationTemplate.js +0 -189
  196. package/dist/extensions/Blocks/Recommendation/templates/templateUtils.js +0 -209
  197. package/dist/src/extensions/Blocks/Recommendation/control.d.ts +0 -38
  198. package/dist/src/extensions/Blocks/Recommendation/controls/nameTextTrimControl.d.ts +0 -16
  199. package/dist/src/extensions/Blocks/Recommendation/templates/blockTemplate.d.ts +0 -16
  200. package/dist/src/extensions/Blocks/Recommendation/templates/templateUtils.d.ts +0 -52
@@ -1,10 +1,12 @@
1
1
  var B = Object.defineProperty;
2
- var U = (r, t, e) => t in r ? B(r, t, { enumerable: !0, configurable: !0, writable: !0, value: e }) : r[t] = e;
3
- var M = (r, t, e) => U(r, typeof t != "symbol" ? t + "" : t, e);
4
- import { productPairs as v } from "../../extensions/Blocks/Items/enums/productEnums.js";
5
- import { ItemInCartOptions as E, DefaultConfigValues as g, SETTINGS_ENUMS as d } from "../../extensions/Blocks/Items/enums/settingsEnums.js";
6
- import { getDefaultTemplate as K } from "../../extensions/Blocks/Items/template.js";
7
- const w = {
2
+ var v = (r, t, o) => t in r ? B(r, t, { enumerable: !0, configurable: !0, writable: !0, value: o }) : r[t] = o;
3
+ var M = (r, t, o) => v(r, typeof t != "symbol" ? t + "" : t, o);
4
+ import { BLOCK_ID as U } from "../../extensions/Blocks/Items/block.js";
5
+ import { productPairs as K } from "../../extensions/Blocks/Items/enums/productEnums.js";
6
+ import { ItemInCartOptions as T, DefaultConfigValues as g, SETTINGS_ENUMS as s } from "../../extensions/Blocks/Items/enums/settingsEnums.js";
7
+ import { getDefaultTemplate as w } from "../../extensions/Blocks/Items/template.js";
8
+ import { useTemplateStore as F } from "../../stores/template.js";
9
+ const q = {
8
10
  img: {
9
11
  pairsKey: "imageSrc",
10
12
  defaultKey: "DEFAULT",
@@ -71,50 +73,51 @@ const w = {
71
73
  isArray: !1
72
74
  }
73
75
  };
74
- function F() {
76
+ function O() {
75
77
  return String(Date.now() + Math.floor(Math.random() * 1e3));
76
78
  }
77
- function q(r) {
79
+ function $(r) {
78
80
  return r ? {
79
- CartItems: d.ITEMS_TYPE.CART_ITEMS,
80
- BrowsedItems: d.ITEMS_TYPE.BROWSED_ITEMS,
81
- PurchasedItems: d.ITEMS_TYPE.PURCHASED_ITEMS,
82
- CART_ITEMS: d.ITEMS_TYPE.CART_ITEMS,
83
- BROWSED_ITEMS: d.ITEMS_TYPE.BROWSED_ITEMS,
84
- PURCHASED_ITEMS: d.ITEMS_TYPE.PURCHASED_ITEMS
85
- }[r] || d.ITEMS_TYPE.CART_ITEMS : d.ITEMS_TYPE.CART_ITEMS;
81
+ CartItems: s.ITEMS_TYPE.CART_ITEMS,
82
+ BrowsedItems: s.ITEMS_TYPE.BROWSED_ITEMS,
83
+ PurchasedItems: s.ITEMS_TYPE.PURCHASED_ITEMS,
84
+ CART_ITEMS: s.ITEMS_TYPE.CART_ITEMS,
85
+ BROWSED_ITEMS: s.ITEMS_TYPE.BROWSED_ITEMS,
86
+ PURCHASED_ITEMS: s.ITEMS_TYPE.PURCHASED_ITEMS
87
+ }[r] || s.ITEMS_TYPE.CART_ITEMS : s.ITEMS_TYPE.CART_ITEMS;
86
88
  }
87
89
  function R(r) {
88
- const t = (a, o) => a == null ? o : a === "1" || a === "true", e = (a, o) => a || o, i = r["data-type"] || r["data-source"], l = q(i);
89
- let n = r["data-cart_items_select_control_value"] || g.cartItemsSelectControlValue;
90
- if (n && !n.includes("{{") && /^\d+$/.test(n)) {
91
- const a = parseInt(n) - 1, o = E[l];
92
- o && o[a] && (n = o[a].value);
90
+ var e;
91
+ const t = (c, _) => c == null ? _ : c === "1" || c === "true", o = (c, _) => c || _, l = r["data-type"] || r["data-source"], a = $(l), n = T[a];
92
+ let i = r["data-cart_items_select_control_value"] || ((e = n == null ? void 0 : n[0]) == null ? void 0 : e.value) || g.cartItemsSelectControlValue;
93
+ if (i && !i.includes("{{") && /^\d+$/.test(i)) {
94
+ const c = parseInt(i) - 1, _ = T[a];
95
+ _ && _[c] && (i = _[c].value);
93
96
  }
94
97
  return {
95
98
  initialized: !0,
96
- blockInstanceId: e(r["data-block-instance-id"], F()),
97
- source: l,
98
- type: l,
99
- itemsSelectValue: n,
100
- orientation: r["data-card_orientation_control_value"] || d.ORIENTATION.VERTICAL,
99
+ blockInstanceId: o(r["data-block-instance-id"], O()),
100
+ source: a,
101
+ type: a,
102
+ itemsSelectValue: i,
103
+ orientation: r["data-card_orientation_control_value"] || s.ORIENTATION.VERTICAL,
101
104
  nameTrimming: t(r["data-product_name_control_trim"], !0),
102
105
  priceHideDiscount: t(r["data-product_price_control_nodup"], !0),
103
106
  priceFormatted: t(r["data-product_price_control_formated"], !0),
104
107
  priceSinglePrice: t(r["data-product_price_control_single_price"], !1),
105
- priceCurrencySymbol: e(
108
+ priceCurrencySymbol: o(
106
109
  r["data-product_price_control_currency_symbol"],
107
110
  g.productPriceCurrencySymbolControlValue
108
111
  ),
109
- priceCurrencyLocation: e(
112
+ priceCurrencyLocation: o(
110
113
  r["data-product_price_currency_location"],
111
114
  g.productPriceCurrencyLocationControlValue
112
115
  ),
113
116
  priceOrientation: r["data-product_original_price_control_orientation"] || "horizontal",
114
117
  quantityControlEnabled: t(r["data-product_quantity_control_enabled"], !0),
115
- buttonLink: e(r["data-product_button_link"], g.productButtonLinkControlValue),
116
- imageLink: e(r["data-product_image_link"], g.productImageLinkControlValue),
117
- buttonLabel: e(r["data-product_button_control_label"], "Buy"),
118
+ buttonLink: o(r["data-product_button_link"], g.productButtonLinkControlValue),
119
+ imageLink: o(r["data-product_image_link"], g.productImageLinkControlValue),
120
+ buttonLabel: o(r["data-product_button_control_label"], "Buy"),
118
121
  buttonFullWidth: t(r["data-product_button_control_atw"], !0),
119
122
  imageVisible: t(r["data-product_image_control_enabled"], !0),
120
123
  nameVisible: t(r["data-product_name_control_enabled"], !0),
@@ -124,68 +127,70 @@ function R(r) {
124
127
  buttonVisible: t(r["data-product_button_control_enabled"], !0)
125
128
  };
126
129
  }
127
- const $ = {
130
+ const x = {
128
131
  ins_apr: "CART_ITEMS",
129
132
  browsed_item: "BROWSED_ITEMS",
130
133
  purchased_item: "PURCHASED_ITEMS"
131
134
  };
132
- function x(r, t) {
133
- const e = {
135
+ function V(r, t) {
136
+ const o = {
134
137
  CART_ITEMS: `{{Abandoned Cart Item (${t}) Image}}`,
135
138
  BROWSED_ITEMS: `{{Browsed Item (${t}) Image}}`,
136
139
  PURCHASED_ITEMS: `{{Purchased Item (${t}) Image}}`
137
140
  };
138
- return e[r] || e.CART_ITEMS;
141
+ return o[r] || o.CART_ITEMS;
139
142
  }
140
- function O(r, t) {
141
- const e = {
143
+ function N(r, t) {
144
+ const o = {
142
145
  CART_ITEMS: `{{Abandoned Cart Item (${t}) Url}}`,
143
146
  BROWSED_ITEMS: `{{Browsed Item (${t}) Url}}`,
144
147
  PURCHASED_ITEMS: `{{Purchased Item (${t}) Url}}`
145
148
  };
146
- return e[r] || e.CART_ITEMS;
149
+ return o[r] || o.CART_ITEMS;
147
150
  }
148
- class V {
151
+ class z {
149
152
  constructor() {
150
153
  M(this, "parser");
151
154
  this.parser = new DOMParser();
152
155
  }
153
156
  migrate(t) {
154
157
  try {
155
- let e = this.removeJinjaConditionals(t);
156
- e = this.replaceTemplateVariables(e);
157
- const i = this.parser.parseFromString(e, "text/html"), l = i.querySelectorAll(
158
+ let o = this.removeJinjaConditionals(t);
159
+ o = this.replaceTemplateVariables(o);
160
+ const l = this.parser.parseFromString(o, "text/html"), a = l.querySelectorAll(
158
161
  "td.esd-cart-items-block, td.esd-browsed-items-block, td.esd-purchased-items-block"
159
162
  );
160
- return l.length === 0 ? (console.warn("ItemsBlockMigrator: No blocks found with items block selectors"), e) : (l.forEach((n) => {
161
- const a = this.extractConfiguration(n), o = K({
162
- orientation: a.orientation,
163
- itemsType: a.itemsType,
164
- itemId: a.itemId,
165
- currencySymbol: a.currencySymbol,
166
- currencyLocation: a.currencyLocation,
167
- formattedPrice: a.formattedPrice,
168
- configBlockAttributes: a.configBlockAttributes,
163
+ return F().$patch((i) => {
164
+ i.migrations = { ...i.migrations, [U]: a.length };
165
+ }), a.length === 0 ? (console.warn("ItemsBlockMigrator: No blocks found with items block selectors"), o) : (a.forEach((i) => {
166
+ const e = this.extractConfiguration(i), c = w({
167
+ orientation: e.orientation,
168
+ itemsType: e.itemsType,
169
+ itemId: e.itemId,
170
+ currencySymbol: e.currencySymbol,
171
+ currencyLocation: e.currencyLocation,
172
+ formattedPrice: e.formattedPrice,
173
+ configBlockAttributes: e.configBlockAttributes,
169
174
  migrate: !0,
170
- nameStyles: a.nameStyles,
171
- buttonStyles: a.buttonStyles,
172
- priceStyles: a.priceStyles,
173
- originalPriceStyles: a.originalPriceStyles,
174
- quantityStyles: a.quantityStyles,
175
- nodeConfig: R(a.configBlockAttributes)
176
- }), c = this.parser.parseFromString(
177
- `<table><tbody><tr>${o}</tr></tbody></table>`,
175
+ nameStyles: e.nameStyles,
176
+ buttonStyles: e.buttonStyles,
177
+ priceStyles: e.priceStyles,
178
+ originalPriceStyles: e.originalPriceStyles,
179
+ quantityStyles: e.quantityStyles,
180
+ nodeConfig: R(e.configBlockAttributes)
181
+ }), d = this.parser.parseFromString(
182
+ `<table><tbody><tr>${c}</tr></tbody></table>`,
178
183
  "text/html"
179
184
  ).querySelector("td");
180
- if (c && n.parentNode) {
181
- const f = R(a.configBlockAttributes);
182
- c.setAttribute("esd-ext-config", JSON.stringify(f));
183
- const u = c.querySelector("esd-config-block");
184
- u && u.remove(), n.parentNode.replaceChild(c, n);
185
+ if (d && i.parentNode) {
186
+ const p = R(e.configBlockAttributes);
187
+ d.setAttribute("esd-ext-config", JSON.stringify(p));
188
+ const u = d.querySelector("esd-config-block");
189
+ u && u.remove(), i.parentNode.replaceChild(d, i);
185
190
  }
186
- }), i.documentElement.outerHTML);
187
- } catch (e) {
188
- return console.error("ItemsBlockMigrator failed:", e), t;
191
+ }), l.documentElement.outerHTML);
192
+ } catch (o) {
193
+ return console.error("ItemsBlockMigrator failed:", o), t;
189
194
  }
190
195
  }
191
196
  /**
@@ -196,22 +201,22 @@ class V {
196
201
  */
197
202
  extractConfiguration(t) {
198
203
  var C, D, P;
199
- const e = ((C = t.querySelector("[data-type]")) == null ? void 0 : C.getAttribute("data-type")) || "CART_ITEMS", i = ((D = t.querySelector("[data-number]")) == null ? void 0 : D.getAttribute("data-number")) || "1", l = parseInt(i) - 1, n = E[e], a = ((P = n == null ? void 0 : n[l]) == null ? void 0 : P.value) || n[0].value, o = t.querySelector('[product-attr="price"]'), _ = (o == null ? void 0 : o.getAttribute("data-currency_symbol")) || "USD", f = ((o == null ? void 0 : o.getAttribute("data-curency")) || "before") === "after" ? "1" : "0", u = (o == null ? void 0 : o.getAttribute("data-formated")) !== "false", s = this.extractConfigBlockAttributes(t, e, i), b = s["data-card_orientation_control_value"];
200
- let S;
201
- b ? S = b === "horizontal" ? "horizontal" : "vertical" : S = t.querySelector('[colspan="2"]') !== null ? "vertical" : "horizontal";
202
- const p = t.querySelector('a[product-attr="name"]'), T = (p == null ? void 0 : p.getAttribute("style")) || void 0, y = t.querySelector('a[product-attr="button"]'), m = (y == null ? void 0 : y.getAttribute("style")) || void 0, k = (o == null ? void 0 : o.getAttribute("style")) || void 0, I = t.querySelector("p.original-price"), h = (I == null ? void 0 : I.getAttribute("style")) || void 0, A = t.querySelector('[product-attr="quantity"]'), L = (A == null ? void 0 : A.getAttribute("style")) || void 0;
204
+ const o = ((C = t.querySelector("[data-type]")) == null ? void 0 : C.getAttribute("data-type")) || "CART_ITEMS", l = ((D = t.querySelector("[data-number]")) == null ? void 0 : D.getAttribute("data-number")) || "1", a = parseInt(l) - 1, n = T[o], i = ((P = n == null ? void 0 : n[a]) == null ? void 0 : P.value) || n[0].value, e = t.querySelector('[product-attr="price"]'), c = (e == null ? void 0 : e.getAttribute("data-currency_symbol")) || "USD", d = ((e == null ? void 0 : e.getAttribute("data-curency")) || "before") === "after" ? "1" : "0", p = (e == null ? void 0 : e.getAttribute("data-formated")) !== "false", u = this.extractConfigBlockAttributes(t, o, l), S = u["data-card_orientation_control_value"];
205
+ let b;
206
+ S ? b = S === "horizontal" ? "horizontal" : "vertical" : b = t.querySelector('[colspan="2"]') !== null ? "vertical" : "horizontal";
207
+ const y = t.querySelector('a[product-attr="name"]'), I = (y == null ? void 0 : y.getAttribute("style")) || void 0, f = t.querySelector('a[product-attr="button"]'), m = (f == null ? void 0 : f.getAttribute("style")) || void 0, h = (e == null ? void 0 : e.getAttribute("style")) || void 0, A = t.querySelector("p.original-price"), k = (A == null ? void 0 : A.getAttribute("style")) || void 0, E = t.querySelector('[product-attr="quantity"]'), L = (E == null ? void 0 : E.getAttribute("style")) || void 0;
203
208
  return {
204
- orientation: S,
205
- itemsType: e,
206
- itemId: a,
207
- currencySymbol: _,
208
- currencyLocation: f,
209
- formattedPrice: u,
210
- configBlockAttributes: s,
211
- nameStyles: T,
209
+ orientation: b,
210
+ itemsType: o,
211
+ itemId: i,
212
+ currencySymbol: c,
213
+ currencyLocation: d,
214
+ formattedPrice: p,
215
+ configBlockAttributes: u,
216
+ nameStyles: I,
212
217
  buttonStyles: m,
213
- priceStyles: k,
214
- originalPriceStyles: h,
218
+ priceStyles: h,
219
+ originalPriceStyles: k,
215
220
  quantityStyles: L
216
221
  };
217
222
  }
@@ -222,27 +227,27 @@ class V {
222
227
  * @param itemsType - The type of items (CART_ITEMS, BROWSED_ITEMS, PURCHASED_ITEMS)
223
228
  * @param itemNumber - The item number (1-based index)
224
229
  */
225
- extractConfigBlockAttributes(t, e, i) {
226
- const l = t.querySelector("esd-config-block"), n = {};
227
- if (!l)
230
+ extractConfigBlockAttributes(t, o, l) {
231
+ const a = t.querySelector("esd-config-block"), n = {};
232
+ if (!a)
228
233
  return this.getDefaultConfigBlockAttributes();
229
- if (Array.from(l.attributes).forEach((o) => {
230
- o.name.startsWith("data-") && (n[o.name] = o.value);
234
+ if (Array.from(a.attributes).forEach((e) => {
235
+ e.name.startsWith("data-") && (n[e.name] = e.value);
231
236
  }), n["data-cart_items_select_control_value"]) {
232
- const o = n["data-cart_items_select_control_value"];
233
- if (/^\d+$/.test(o)) {
234
- const _ = parseInt(o) - 1, c = E[e];
235
- c && c[_] && (n["data-cart_items_select_control_value"] = c[_].value);
237
+ const e = n["data-cart_items_select_control_value"];
238
+ if (/^\d+$/.test(e)) {
239
+ const c = parseInt(e) - 1, _ = T[o];
240
+ _ && _[c] && (n["data-cart_items_select_control_value"] = _[c].value);
236
241
  }
237
242
  }
238
243
  if (n["data-product_price_control_curency"]) {
239
- const o = n["data-product_price_control_curency"];
240
- let _ = o;
241
- o === "before" ? _ = "0" : o === "after" && (_ = "1"), n["data-product_price_control_curency"] = _, n["data-product_price_currency_location"] = _;
244
+ const e = n["data-product_price_control_curency"];
245
+ let c = e;
246
+ e === "before" ? c = "0" : e === "after" && (c = "1"), n["data-product_price_control_curency"] = c, n["data-product_price_currency_location"] = c;
242
247
  }
243
248
  (!n["data-product_price_control_currency_symbol"] || n["data-product_price_control_currency_symbol"].trim() === "") && (n["data-product_price_control_currency_symbol"] = "USD");
244
- const a = { ...this.getDefaultConfigBlockAttributes(), ...n };
245
- return a["data-type"] = e, a["data-source"] = e, a["data-product_image_link"] = x(e, i), a["data-product_button_link"] = O(e, i), a;
249
+ const i = { ...this.getDefaultConfigBlockAttributes(), ...n };
250
+ return i["data-type"] = o, i["data-source"] = o, i["data-product_image_link"] = V(o, l), i["data-product_button_link"] = N(o, l), i;
246
251
  }
247
252
  /**
248
253
  * Returns default esd-config-block attributes based on the old template structure
@@ -297,18 +302,22 @@ class V {
297
302
  * - Cart Items: ins_apr_total_product_kind, ins_apr_price_N, ins_apr_originalprice_N
298
303
  * - Browsed Items: browsed_item_total_product_kind, browsed_item_price_N, browsed_item_originalprice_N
299
304
  * - Purchased Items: purchased_item_total_product_kind, purchased_item_price_N, purchased_item_originalprice_N
305
+ *
306
+ * IMPORTANT: Preserves the esd-custom-display-conditions attribute on <body> which
307
+ * contains display condition Jinja scripts that should NOT be removed.
300
308
  */
301
309
  removeJinjaConditionals(t) {
302
- let e = t.replace(
310
+ const o = "__ESD_DISPLAY_CONDITIONS_PLACEHOLDER__", l = t.match(/esd-custom-display-conditions="[^"]*"/);
311
+ let a = l ? t.replace(l[0], o) : t;
312
+ return a = a.replace(
303
313
  /\{%\s*if\s+(ins_apr|browsed_item|purchased_item)_total_product_kind\s*(&gt;|>)\s*\d+\s*%\}/g,
304
314
  ""
305
- );
306
- return e = e.replace(
315
+ ), a = a.replace(
307
316
  /\{%\s*if\s+(ins_apr|browsed_item|purchased_item)_price_\d+\s*(!&#61;|!=)\s*\1_originalprice_\d+\s*%\}/g,
308
317
  ""
309
- ), e = e.replace(/\{%\s*endif\s*%\}/g, ""), e = e.replace(/\n\s*\n\s*\n/g, `
318
+ ), a = a.replace(/\{%\s*endif\s*%\}/g, ""), l && (a = a.replace(o, l[0])), a = a.replace(/\n\s*\n\s*\n/g, `
310
319
 
311
- `), e;
320
+ `), a;
312
321
  }
313
322
  /**
314
323
  * Replaces template variables with default values from productPairs
@@ -320,32 +329,32 @@ class V {
320
329
  * - {{purchased_item_formattedprice_5}} → '1,490.49' (PURCHASED_ITEMS)
321
330
  */
322
331
  replaceTemplateVariables(t) {
323
- const { PAIRS_FOR_EXTENSION: e } = v;
324
- return t.replace(/{{([^}]+)}}/g, (i, l) => {
325
- const n = l.match(/^(ins_apr|browsed_item|purchased_item)_([a-z_]+)_(\d+)$/);
332
+ const { PAIRS_FOR_EXTENSION: o } = K;
333
+ return t.replace(/{{([^}]+)}}/g, (l, a) => {
334
+ const n = a.match(/^(ins_apr|browsed_item|purchased_item)_([a-z_]+)_(\d+)$/);
326
335
  if (!n)
327
- return i;
328
- const [, a, o, _] = n, c = $[a];
329
- if (!c)
330
- return console.warn(`Unknown variable prefix: ${a}`), i;
331
- const f = w[o];
332
- if (!f)
333
- return console.warn(`Unknown variable suffix mapping for: ${o}`), i;
334
- const { pairsKey: u, defaultKey: s, isArray: b } = f, p = e[u][c];
335
- if (!p)
336
- return console.warn(`No data found for: ${u}.${c}`), i;
337
- if (b) {
338
- const y = parseInt(_) - 1, m = p[s];
339
- return Array.isArray(m) && m[y] ? m[y] : (console.warn(`Array value not found: ${u}.${c}.${s}[${y}]`), i);
336
+ return l;
337
+ const [, i, e, c] = n, _ = x[i];
338
+ if (!_)
339
+ return console.warn(`Unknown variable prefix: ${i}`), l;
340
+ const d = q[e];
341
+ if (!d)
342
+ return console.warn(`Unknown variable suffix mapping for: ${e}`), l;
343
+ const { pairsKey: p, defaultKey: u, isArray: S } = d, y = o[p][_];
344
+ if (!y)
345
+ return console.warn(`No data found for: ${p}.${_}`), l;
346
+ if (S) {
347
+ const f = parseInt(c) - 1, m = y[u];
348
+ return Array.isArray(m) && m[f] ? m[f] : (console.warn(`Array value not found: ${p}.${_}.${u}[${f}]`), l);
340
349
  }
341
- const T = p[s];
342
- return T !== void 0 ? String(T) : (console.warn(`Default value not found: ${u}.${c}.${s}`), i);
350
+ const I = y[u];
351
+ return I !== void 0 ? String(I) : (console.warn(`Default value not found: ${p}.${_}.${u}`), l);
343
352
  });
344
353
  }
345
354
  }
346
- function G(r) {
347
- return new V().migrate(r);
355
+ function Q(r) {
356
+ return new z().migrate(r);
348
357
  }
349
358
  export {
350
- G as migrateItemsBlock
359
+ Q as migrateItemsBlock
351
360
  };
@@ -1,11 +1,13 @@
1
1
  var h = Object.defineProperty;
2
- var T = (A, e, t) => e in A ? h(A, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : A[e] = t;
3
- var m = (A, e, t) => T(A, typeof e != "symbol" ? e + "" : e, t);
4
- import P, { prepareProductRows as S } from "../../extensions/Blocks/Recommendation/templates/migrationTemplate.js";
5
- import { getDefaultProducts as q } from "../../extensions/Blocks/Recommendation/templates/templateUtils.js";
6
- class w {
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 {
7
9
  constructor() {
8
- m(this, "parser");
10
+ A(this, "parser");
9
11
  this.parser = new DOMParser();
10
12
  }
11
13
  migrate(e) {
@@ -13,12 +15,14 @@ class w {
13
15
  const t = this.parser.parseFromString(e, "text/html"), s = t.querySelectorAll(
14
16
  'td.ins-recommendation-v3-block-1, td.product-block[esd-handler-name*="EmailRecommendationV3"]'
15
17
  );
16
- return s.length === 0 ? e : (s.forEach((o) => {
17
- const l = o.getAttribute("id"), r = this.extractBgColor(o), i = this.extractTitle(o), u = this.extractProductRows(o), c = P.replace("{-{-TITLE-}-}", i).replace("{-{-PRODUCT_ROWS-}-}", u), a = this.parser.parseFromString(
18
- `<table id="tempDoc"><tbody><tr>${c}</tr></tbody></table>`,
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>`,
19
23
  "text/html"
20
24
  ).querySelector(".ins-recommendation-v3-block-v2");
21
- a && o.parentNode && (l && a.setAttribute("id", l), r && a.setAttribute("bgcolor", r), o.parentNode.replaceChild(a, o));
25
+ a && i.parentNode && (r && a.setAttribute("id", r), n && a.setAttribute("bgcolor", n), i.parentNode.replaceChild(a, i));
22
26
  }), t.documentElement.outerHTML);
23
27
  } catch (t) {
24
28
  return console.error("RecommendationMigrator failed:", t), e;
@@ -64,7 +68,7 @@ class w {
64
68
  * @returns HTML string for the title block
65
69
  */
66
70
  extractTitle(e) {
67
- var a, g;
71
+ var g, a;
68
72
  const t = e.querySelector(".ext-recommendation-title");
69
73
  if (!t)
70
74
  return this.buildTitleBlock({
@@ -76,7 +80,7 @@ class w {
76
80
  });
77
81
  const s = t.querySelector("p");
78
82
  if (!s) {
79
- const p = ((a = t.textContent) == null ? void 0 : a.trim()) || "You May Also Like!", b = t.getAttribute("align") || "center";
83
+ const p = ((g = t.textContent) == null ? void 0 : g.trim()) || "You May Also Like!", b = t.getAttribute("align") || "center";
80
84
  return this.buildTitleBlock({
81
85
  text: p,
82
86
  isBold: !0,
@@ -85,13 +89,13 @@ class w {
85
89
  styles: "font-size: 28px; color: #333333;"
86
90
  });
87
91
  }
88
- const o = ((g = s.textContent) == null ? void 0 : g.trim()) || "You May Also Like!", l = t.getAttribute("align") || s.getAttribute("align") || "center", r = s.getAttribute("style") || "", i = /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"]), n = this.convertInlineToBlock(c);
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);
89
93
  return this.buildTitleBlock({
90
94
  text: o,
91
- isBold: i,
95
+ isBold: n,
92
96
  isItalic: u,
93
- align: l,
94
- styles: n
97
+ align: i,
98
+ styles: l
95
99
  });
96
100
  }
97
101
  /**
@@ -103,8 +107,8 @@ class w {
103
107
  const t = this.extractProductConfig(e);
104
108
  if (!t)
105
109
  return console.warn("[RecommendationMigrator] No product config found, using defaults"), this.generateProductRows(6, 3, {});
106
- const { totalCount: s, productsPerRow: o } = t, l = this.extractProductStyles(e);
107
- return this.generateProductRows(s, o, l);
110
+ const { totalCount: s, productsPerRow: o } = t, i = this.extractProductStyles(e);
111
+ return this.generateProductRows(s, o, i);
108
112
  }
109
113
  /**
110
114
  * Extracts Stripo padding/margin utility classes from a class string
@@ -152,12 +156,12 @@ class w {
152
156
  * @returns HTML string for product rows with applied styles
153
157
  */
154
158
  generateProductRows(e, t, s) {
155
- const o = q(), l = [];
156
- for (let i = 0; i < e; i++) {
157
- const u = o[i % o.length];
158
- l.push({ ...u });
159
+ const o = $(), i = [];
160
+ for (let n = 0; n < e; n++) {
161
+ const u = o[n % o.length];
162
+ i.push({ ...u });
159
163
  }
160
- let r = S(l, t);
164
+ let r = q(i, t);
161
165
  return r = this.applyExtractedStyles(r, s), r;
162
166
  }
163
167
  /**
@@ -171,30 +175,30 @@ class w {
171
175
  return console.warn("[RecommendationMigrator] No product card found, using default styles"), t;
172
176
  const o = this.extractCardBgColor(s);
173
177
  o && (t.cardBgColor = o);
174
- const l = s.querySelector(".ext-product-image");
175
- if (l) {
176
- const n = l.querySelector("img"), a = n == null ? void 0 : n.getAttribute("width"), g = l.getAttribute("style") || "", p = l.getAttribute("align") || "center", b = l.getAttribute("class") || "", d = this.extractStripoClasses(b);
177
- t.imageWidth = a || "120", t.imageAlign = p, t.imageTdStyle = g, t.imageClasses = d;
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;
178
182
  }
179
183
  const r = s.querySelector(".ext-product-name");
180
184
  if (r) {
181
- const n = r.querySelector("p"), a = (n == null ? void 0 : n.getAttribute("style")) || "", g = r.getAttribute("align") || "center", p = r.getAttribute("style") || "", b = r.getAttribute("class") || "", d = this.extractStripoClasses(b);
182
- t.nameStyle = a, t.nameAlign = g, t.nameTdStyle = p, t.nameClasses = d;
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;
183
187
  }
184
- const i = s.querySelector(".ext-product-price");
185
- if (i) {
186
- const n = i.querySelector("p"), a = (n == null ? void 0 : n.getAttribute("style")) || "", g = i.getAttribute("align") || "center", p = i.getAttribute("style") || "", b = i.getAttribute("class") || "", d = this.extractStripoClasses(b);
187
- t.priceStyle = a, t.priceAlign = g, t.priceTdStyle = p, t.priceClasses = d;
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;
188
192
  }
189
193
  const u = s.querySelector(".ext-product-original-price");
190
194
  if (u) {
191
- const n = u.querySelector("p"), a = (n == null ? void 0 : n.getAttribute("style")) || "", g = u.getAttribute("align") || "center", p = u.getAttribute("style") || "", b = u.getAttribute("class") || "", d = this.extractStripoClasses(b);
192
- t.oldPriceStyle = a, t.oldPriceAlign = g, t.oldPriceTdStyle = p, t.oldPriceClasses = d;
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;
193
197
  }
194
198
  const c = s.querySelector(".ext-product-button");
195
199
  if (c) {
196
- const n = c.querySelector(".es-button-border"), a = c.querySelector("a.es-button"), g = (n == null ? void 0 : n.getAttribute("style")) || "", p = (a == null ? void 0 : a.getAttribute("style")) || "", b = c.getAttribute("align") || "center", d = c.getAttribute("style") || "", f = c.getAttribute("class") || "", C = this.extractStripoClasses(f), y = ((c == null ? void 0 : c.textContent) || "").trim();
197
- t.buttonBorderStyle = g, t.buttonLinkStyle = p, t.buttonAlign = b, t.buttonTdStyle = d, t.buttonClasses = C, t.buttonText = y;
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;
198
202
  }
199
203
  return t;
200
204
  }
@@ -215,36 +219,36 @@ class w {
215
219
  const c = `${r.getAttribute("class") || ""} ${t.imageClasses}`.trim();
216
220
  r.setAttribute("class", c);
217
221
  }
218
- const i = r.querySelector("img");
219
- i && t.imageWidth && i.setAttribute("width", t.imageWidth);
222
+ const n = r.querySelector("img");
223
+ n && t.imageWidth && n.setAttribute("width", t.imageWidth);
220
224
  }), (t.nameStyle || t.nameAlign || t.nameTdStyle || t.nameClasses) && s.querySelectorAll(".product-name").forEach((r) => {
221
225
  if (t.nameAlign && r.setAttribute("align", t.nameAlign), t.nameTdStyle && r.setAttribute("style", t.nameTdStyle), t.nameClasses) {
222
226
  const c = `${r.getAttribute("class") || ""} ${t.nameClasses}`.trim();
223
227
  r.setAttribute("class", c);
224
228
  }
225
- const i = r.querySelector("p");
226
- i && t.nameStyle && i.setAttribute("style", t.nameStyle);
229
+ const n = r.querySelector("p");
230
+ n && t.nameStyle && n.setAttribute("style", t.nameStyle);
227
231
  }), (t.priceStyle || t.priceAlign || t.priceTdStyle || t.priceClasses) && s.querySelectorAll(".product-price").forEach((r) => {
228
232
  if (t.priceAlign && r.setAttribute("align", t.priceAlign), t.priceTdStyle && r.setAttribute("style", t.priceTdStyle), t.priceClasses) {
229
233
  const c = `${r.getAttribute("class") || ""} ${t.priceClasses}`.trim();
230
234
  r.setAttribute("class", c);
231
235
  }
232
- const i = r.querySelector("p");
233
- i && t.priceStyle && i.setAttribute("style", t.priceStyle);
236
+ const n = r.querySelector("p");
237
+ n && t.priceStyle && n.setAttribute("style", t.priceStyle);
234
238
  }), (t.oldPriceStyle || t.oldPriceAlign || t.oldPriceTdStyle || t.oldPriceClasses) && s.querySelectorAll(".product-old-price").forEach((r) => {
235
239
  if (t.oldPriceAlign && r.setAttribute("align", t.oldPriceAlign), t.oldPriceTdStyle && r.setAttribute("style", t.oldPriceTdStyle), t.oldPriceClasses) {
236
240
  const c = `${r.getAttribute("class") || ""} ${t.oldPriceClasses}`.trim();
237
241
  r.setAttribute("class", c);
238
242
  }
239
- const i = r.querySelector("p");
240
- i && t.oldPriceStyle && i.setAttribute("style", t.oldPriceStyle);
243
+ const n = r.querySelector("p");
244
+ n && t.oldPriceStyle && n.setAttribute("style", t.oldPriceStyle);
241
245
  }), (t.buttonBorderStyle || t.buttonLinkStyle || t.buttonAlign || t.buttonTdStyle || t.buttonClasses) && s.querySelectorAll(".product-button").forEach((r) => {
242
246
  if (t.buttonAlign && r.setAttribute("align", t.buttonAlign), t.buttonTdStyle && r.setAttribute("style", t.buttonTdStyle), t.buttonClasses) {
243
- const n = `${r.getAttribute("class") || ""} ${t.buttonClasses}`.trim();
244
- r.setAttribute("class", n);
247
+ const l = `${r.getAttribute("class") || ""} ${t.buttonClasses}`.trim();
248
+ r.setAttribute("class", l);
245
249
  }
246
- const i = r.querySelector(".es-button-border");
247
- i && t.buttonBorderStyle && i.setAttribute("style", t.buttonBorderStyle);
250
+ const n = r.querySelector(".es-button-border");
251
+ n && t.buttonBorderStyle && n.setAttribute("style", t.buttonBorderStyle);
248
252
  const u = r.querySelector("a.es-button");
249
253
  u && (t.buttonLinkStyle && u.setAttribute("style", t.buttonLinkStyle), t.buttonText && (u.textContent = t.buttonText));
250
254
  });
@@ -270,8 +274,8 @@ class w {
270
274
  * Removes specified style properties from a style string
271
275
  */
272
276
  removeStyleProperties(e, t) {
273
- return e ? t.reduce((o, l) => {
274
- const r = new RegExp(`${l}\\s*:\\s*[^;]*;?`, "gi");
277
+ return e ? t.reduce((o, i) => {
278
+ const r = new RegExp(`${i}\\s*:\\s*[^;]*;?`, "gi");
275
279
  return o.replace(r, "");
276
280
  }, e).replace(/;\s*;/g, ";").replace(/^;|;$/g, "").trim() : "";
277
281
  }
@@ -285,9 +289,9 @@ class w {
285
289
  return /display\s*:/i.test(t) || (t = t ? `${t}; display: block` : "display: block"), t.replace(/;\s*;/g, ";").replace(/^;|;$/g, "").replace(/"/g, "'").trim();
286
290
  }
287
291
  }
288
- function k(A) {
289
- return new w().migrate(A);
292
+ function v(d) {
293
+ return new B().migrate(d);
290
294
  }
291
295
  export {
292
- k as migrateRecommendation
296
+ v as migrateRecommendation
293
297
  };
@@ -0,0 +1,4 @@
1
+ var m = /* @__PURE__ */ ((e) => (e.Items = "items-block", e.Recommendation = "recommendation-block", e))(m || {});
2
+ export {
3
+ m as BlockId
4
+ };
@@ -1,5 +1,5 @@
1
1
  const s = {
2
- RECOMMENDATION_API_URL: "http://recommendationv2.api.useinsider.com"
2
+ RECOMMENDATION_API_URL: "https://recommendationv2.api.useinsider.com"
3
3
  }, i = [
4
4
  { id: 11, key: "similarViewed", name: "Viewed Together", path: "viewed-together" },
5
5
  { id: 12, key: "similarBought", name: "Purchased Together", path: "purchased-together" },