@useinsider/guido 3.9.0-beta.fc7d209 → 3.9.0-beta.fcaa08b

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,44 +1,44 @@
1
- import { useConfig as _ } from "../../../composables/useConfig.js";
1
+ import { useConfig as C } from "../../../composables/useConfig.js";
2
2
  import { useRecommendation as g } from "../../../composables/useRecommendation.js";
3
3
  import { CSS_CLASS_RECO_BUTTON as q } from "../../../extensions/Blocks/Recommendation/constants/selectors.js";
4
- import { useRecommendationExtensionStore as C } from "../../../extensions/Blocks/Recommendation/store/recommendation.js";
4
+ import { useRecommendationExtensionStore as E } from "../../../extensions/Blocks/Recommendation/store/recommendation.js";
5
5
  import { isIgnoredRecommendationBlock as w } from "./recommendationIgnoreUtils.js";
6
- function b(e, n, t, o, c = "") {
7
- const i = `{{${c}${e}_${n}_${t}}}`, r = `{{${c}${e}_${n}_currency}}`;
6
+ function b(t, n, e, o, c = "") {
7
+ const i = `{{${c}${t}_${n}_${e}}}`, r = `{{${c}${t}_${n}_currency}}`;
8
8
  return o === "before" ? `${r} ${i}` : `${i} ${r}`;
9
9
  }
10
- function m(e) {
11
- let n = e;
10
+ function m(t) {
11
+ let n = t;
12
12
  for (; n.children.length === 1; )
13
13
  [n] = n.children;
14
14
  return n;
15
15
  }
16
- function h(e, n, t, o, c, i) {
16
+ function y(t, n, e, o, c, i) {
17
17
  switch (n) {
18
18
  case "productImage": {
19
- const r = e.querySelector("img");
20
- r && (r.setAttribute("src", `{{${i}${t}_${o}_image_url}}`), r.setAttribute("alt", `{{${i}${t}_${o}_name}}`));
21
- const s = e.querySelector("a");
22
- s && (s.setAttribute("href", `{{${i}${t}_${o}_url}}`), s.classList.add(q));
19
+ const r = t.querySelector("img");
20
+ r && (r.setAttribute("src", `{{${i}${e}_${o}_image_url}}`), r.setAttribute("alt", `{{${i}${e}_${o}_name}}`));
21
+ const s = t.querySelector("a");
22
+ s && (s.setAttribute("href", `{{${i}${e}_${o}_url}}`), s.classList.add(q));
23
23
  break;
24
24
  }
25
25
  case "productName": {
26
- const r = e.querySelector("p");
27
- r && (m(r).textContent = `{{${i}${t}_${o}_name}}`);
26
+ const r = t.querySelector("p");
27
+ r && (m(r).textContent = `{{${i}${e}_${o}_name}}`);
28
28
  break;
29
29
  }
30
30
  case "productPrice": {
31
- const r = e.querySelector(".product-price p") ?? e.querySelector("p");
31
+ const r = t.querySelector(".product-price p") ?? t.querySelector("p");
32
32
  r && (m(r).textContent = b(
33
- t,
33
+ e,
34
34
  o,
35
35
  "price",
36
36
  c,
37
37
  i
38
38
  ));
39
- const s = e.querySelector(".product-old-price p");
39
+ const s = t.querySelector(".product-old-price p");
40
40
  s && (m(s).textContent = b(
41
- t,
41
+ e,
42
42
  o,
43
43
  "original_price",
44
44
  c,
@@ -47,9 +47,9 @@ function h(e, n, t, o, c, i) {
47
47
  break;
48
48
  }
49
49
  case "productOldPrice": {
50
- const r = e.querySelector("p");
50
+ const r = t.querySelector("p");
51
51
  r && (m(r).textContent = b(
52
- t,
52
+ e,
53
53
  o,
54
54
  "original_price",
55
55
  c,
@@ -58,97 +58,117 @@ function h(e, n, t, o, c, i) {
58
58
  break;
59
59
  }
60
60
  case "productButton": {
61
- const r = e.querySelector("a");
62
- r && r.setAttribute("href", `{{${i}${t}_${o}_url}}`);
61
+ const r = t.querySelector("a");
62
+ r && r.setAttribute("href", `{{${i}${e}_${o}_url}}`);
63
63
  break;
64
64
  }
65
65
  case "productOmnibusPrice": {
66
- const r = e.querySelector(".omnibus-price-value");
66
+ const r = t.querySelector(".omnibus-price-value");
67
67
  if (r) {
68
- r.textContent = `{{${i}${t}_${o}_omnibus_price}}`;
68
+ r.textContent = `{{${i}${e}_${o}_omnibus_price}}`;
69
69
  const s = r.closest("p");
70
70
  s && (s.setAttribute("product-attr", "omnibus_price"), s.setAttribute("composition", "true"));
71
71
  }
72
72
  break;
73
73
  }
74
74
  case "productOmnibusDiscount": {
75
- const r = e.querySelector(".omnibus-discount-value");
75
+ const r = t.querySelector(".omnibus-discount-value");
76
76
  if (r) {
77
- r.textContent = `{{${i}${t}_${o}_omnibus_discount}}`;
77
+ r.textContent = `{{${i}${e}_${o}_omnibus_discount}}`;
78
78
  const s = r.closest("p");
79
79
  s && (s.setAttribute("product-attr", "omnibus_discount"), s.setAttribute("composition", "true"));
80
80
  }
81
81
  break;
82
82
  }
83
83
  default: {
84
- const r = e.getAttribute("product-attr") ? e : e.querySelector("[product-attr]");
84
+ const r = t.getAttribute("product-attr") ? t : t.querySelector("[product-attr]");
85
85
  if (r) {
86
86
  const s = r.getAttribute("product-attr"), a = r.querySelector("p");
87
- a && (m(a).textContent = `{{${i}${t}_${o}_${s}}}`);
87
+ a && (m(a).textContent = `{{${i}${e}_${o}_${s}}}`);
88
88
  }
89
89
  break;
90
90
  }
91
91
  }
92
92
  }
93
- function E(e, n, t, o) {
94
- e.querySelectorAll(".recommendation-product-row").forEach((i, r) => {
93
+ const R = "name";
94
+ function S(t, n, e, o) {
95
+ const c = `${o}${n}_${e}_${R}`;
96
+ return {
97
+ open: t.createComment(`{% if ${c} and ${c} != "" %}`),
98
+ close: t.createComment("{% endif %}")
99
+ };
100
+ }
101
+ function P(t, n, e, o) {
102
+ if (!t.innerHTML.includes("{{"))
103
+ return;
104
+ const { open: c, close: i } = S(t.ownerDocument, n, e, o);
105
+ t.insertBefore(c, t.firstChild), t.appendChild(i);
106
+ }
107
+ function T(t, n, e, o) {
108
+ if (!t.innerHTML.includes("{{"))
109
+ return;
110
+ const { open: c, close: i } = S(t.ownerDocument, n, e, o), r = t.parentNode;
111
+ r.insertBefore(c, t), r.insertBefore(i, t.nextSibling);
112
+ }
113
+ function L(t, n, e, o) {
114
+ t.querySelectorAll(".recommendation-product-row").forEach((i, r) => {
95
115
  i.querySelectorAll("[data-attribute-type]").forEach((a) => {
96
116
  const u = a.getAttribute("data-attribute-type") || "", p = a.querySelectorAll(".attribute-cell");
97
117
  p.length > 0 ? p.forEach((l) => {
98
- h(l, u, n, r, t, o);
99
- }) : h(a, u, n, r, t, o);
100
- });
118
+ y(l, u, n, r, e, o);
119
+ }) : y(a, u, n, r, e, o);
120
+ }), T(i, n, r, o);
101
121
  });
102
122
  }
103
- function P(e, n, t, o) {
104
- const c = e.querySelectorAll(".recommendation-product-row");
123
+ function O(t, n, e, o) {
124
+ const c = t.querySelectorAll(".recommendation-product-row");
105
125
  if (!c.length)
106
126
  return;
107
127
  const [i] = c, r = i.querySelector("[data-attribute-type]"), s = r ? r.querySelectorAll(".attribute-cell").length : 1;
108
128
  c.forEach((a, u) => {
109
129
  a.querySelectorAll("[data-attribute-type]").forEach((l) => {
110
130
  const d = l.getAttribute("data-attribute-type") || "";
111
- l.querySelectorAll(".attribute-cell").forEach((A, $) => {
112
- const S = u * s + $;
113
- h(A, d, n, S, t, o);
131
+ l.querySelectorAll(".attribute-cell").forEach(($, _) => {
132
+ const A = u * s + _;
133
+ y($, d, n, A, e, o), P($, n, A, o);
114
134
  });
115
135
  });
116
136
  });
117
137
  }
118
- function R(e, n, t, o) {
119
- e.querySelectorAll(".ins-recommendation-product-container").forEach((i) => {
120
- P(i, n, t, o);
138
+ function v(t, n, e, o) {
139
+ t.querySelectorAll(".ins-recommendation-product-container").forEach((i) => {
140
+ O(i, n, e, o);
121
141
  });
122
142
  }
123
- function O(e, n, t) {
124
- const o = e.getAttribute("data-layout") || "grid", c = e.getAttribute("currency-alignment") || "after";
125
- o === "list" ? E(e, n, c, t) : R(e, n, c, t);
143
+ function B(t, n, e) {
144
+ const o = t.getAttribute("data-layout") || "grid", c = t.getAttribute("currency-alignment") || "after";
145
+ o === "list" ? L(t, n, c, e) : v(t, n, c, e);
126
146
  }
127
- function y(e, n, t) {
128
- const o = new RegExp(`${n}\\s*:\\s*(\\d+)\\s*px`, "i"), c = e.match(o);
129
- return c ? parseInt(c[1]) : t;
147
+ function h(t, n, e) {
148
+ const o = new RegExp(`${n}\\s*:\\s*(\\d+)\\s*px`, "i"), c = t.match(o);
149
+ return c ? parseInt(c[1]) : e;
130
150
  }
131
- function T(e, n) {
132
- let t = e.parentElement;
133
- for (; t && t !== n; ) {
134
- if (t.tagName === "TD") {
135
- const o = t.getAttribute("width");
151
+ function D(t, n) {
152
+ let e = t.parentElement;
153
+ for (; e && e !== n; ) {
154
+ if (e.tagName === "TD") {
155
+ const o = e.getAttribute("width");
136
156
  if (o && o.endsWith("%") && parseFloat(o) < 100)
137
- return t;
157
+ return e;
138
158
  }
139
- t = t.parentElement;
159
+ e = e.parentElement;
140
160
  }
141
161
  return null;
142
162
  }
143
- function v(e) {
144
- const n = e.getAttribute("style") || "", t = y(n, "width", 600), o = y(n, "padding", 0) * 2, c = Math.max(0, t - o);
145
- c !== 0 && e.querySelectorAll("img.adapt-img").forEach((i) => {
163
+ function M(t) {
164
+ const n = t.getAttribute("style") || "", e = h(n, "width", 600), o = h(n, "padding", 0) * 2, c = Math.max(0, e - o);
165
+ c !== 0 && t.querySelectorAll("img.adapt-img").forEach((i) => {
146
166
  if (i.hasAttribute("width"))
147
167
  return;
148
- const r = T(i, e);
168
+ const r = D(i, t);
149
169
  if (!r)
150
170
  return;
151
- const s = r.getAttribute("width"), a = parseFloat(s), u = y(r.getAttribute("style") || "", "padding", 0) * 2, p = Math.floor(c * a / 100), l = Math.max(1, p - u);
171
+ const s = r.getAttribute("width"), a = parseFloat(s), u = h(r.getAttribute("style") || "", "padding", 0) * 2, p = Math.floor(c * a / 100), l = Math.max(1, p - u);
152
172
  i.setAttribute("width", String(l));
153
173
  const d = i.getAttribute("style") || "";
154
174
  if (!/\bwidth\s*:\s*\d/i.test(d)) {
@@ -157,25 +177,25 @@ function v(e) {
157
177
  }
158
178
  });
159
179
  }
160
- function W(e, n) {
161
- const t = e.match(/<!DOCTYPE[^>]*>/i);
162
- return (t ? `${t[0]}
180
+ function N(t, n) {
181
+ const e = t.match(/<!DOCTYPE[^>]*>/i);
182
+ return (e ? `${e[0]}
163
183
  ` : "") + n.documentElement.outerHTML;
164
184
  }
165
- function F(e) {
166
- const n = e.replaceAll("{%", "<!--{%").replaceAll("%}", "%}-->"), t = new DOMParser().parseFromString(n, "text/html"), o = t.querySelectorAll(".recommendation-block-v2");
185
+ function k(t) {
186
+ const n = t.replaceAll("{%", "<!--{%").replaceAll("%}", "%}-->"), e = new DOMParser().parseFromString(n, "text/html"), o = e.querySelectorAll(".recommendation-block-v2");
167
187
  if (!o.length)
168
- return e;
169
- const { buildCampaignUrl: c } = g(), i = C();
188
+ return t;
189
+ const { buildCampaignUrl: c } = g(), i = E();
170
190
  i.recommendationCampaignUrls = {};
171
- const { isFeatureEnabled: r } = _(), s = r("liquidSyntax") ? "reco_" : "";
191
+ const { isFeatureEnabled: r } = C(), s = r("liquidSyntax") ? "reco_" : "";
172
192
  return o.forEach((u) => {
173
193
  var l, d;
174
194
  const p = u.getAttribute("recommendation-id");
175
- p && ((l = u.parentNode) == null || l.insertBefore(t.createComment("REC_START"), u), (d = u.parentNode) == null || d.insertBefore(t.createComment("REC_END"), u.nextSibling), u.querySelectorAll('[data-visibility="0"]').forEach((f) => f.remove()), c(p), w(u) || O(u, p, s), v(u));
176
- }), W(n, t).replaceAll("<!--{%", "{%").replaceAll("%}-->", "%}").replaceAll("&lt;!--{%", "{%").replaceAll("%}--&gt;", "%}");
195
+ p && ((l = u.parentNode) == null || l.insertBefore(e.createComment("REC_START"), u), (d = u.parentNode) == null || d.insertBefore(e.createComment("REC_END"), u.nextSibling), u.querySelectorAll('[data-visibility="0"]').forEach((f) => f.remove()), c(p), w(u) || B(u, p, s), M(u));
196
+ }), N(n, e).replaceAll("<!--{%", "{%").replaceAll("%}-->", "%}").replaceAll("&lt;!--{%", "{%").replaceAll("%}--&gt;", "%}");
177
197
  }
178
198
  export {
179
199
  b as formatPriceVariable,
180
- F as prepareRecommendationBlocks
200
+ k as prepareRecommendationBlocks
181
201
  };
@@ -1,23 +1,23 @@
1
- var d = Object.defineProperty;
2
- var h = (s, o, t) => o in s ? d(s, o, { enumerable: !0, configurable: !0, writable: !0, value: t }) : s[o] = t;
3
- var c = (s, o, t) => h(s, typeof o != "symbol" ? o + "" : o, t);
4
- import { UEAttr as g } from "../../../../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
5
- import { CommonControl as m } from "../../../common-control.js";
1
+ var c = Object.defineProperty;
2
+ var l = (s, o, t) => o in s ? c(s, o, { enumerable: !0, configurable: !0, writable: !0, value: t }) : s[o] = t;
3
+ var a = (s, o, t) => l(s, typeof o != "symbol" ? o + "" : o, t);
4
+ import { UEAttr as h } from "../../../../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
5
+ import { CommonControl as d } from "../../../common-control.js";
6
6
  import { RecommendationConfigService as n } from "../../services/configService.js";
7
- import { useRecommendationExtensionStore as u } from "../../store/recommendation.js";
8
- import { mapLegacyStrategy as p } from "../../utils/legacyStrategyMap.js";
9
- const C = "recommendation-algorithm-control", i = {
7
+ import { useRecommendationExtensionStore as m } from "../../store/recommendation.js";
8
+ import { mapLegacyStrategy as g } from "../../utils/legacyStrategyMap.js";
9
+ const u = "recommendation-algorithm-control", i = {
10
10
  ALGORITHM: "strategy",
11
11
  PRODUCT_IDS: "productIds"
12
12
  };
13
- class y extends m {
13
+ class R extends d {
14
14
  constructor() {
15
15
  super(...arguments);
16
16
  // Store is used ONLY for API-fetched data (algorithms list), not for config
17
- c(this, "store", u());
17
+ a(this, "store", m());
18
18
  }
19
19
  getId() {
20
- return C;
20
+ return u;
21
21
  }
22
22
  getTemplate() {
23
23
  return `
@@ -30,10 +30,10 @@ class y extends m {
30
30
  options: this.store.getActivePredictiveAlgorithms
31
31
  }),
32
32
  this._GuLabel({ text: this.api.translate("Product Ids"), name: `${i.PRODUCT_IDS}_label` }),
33
- this._GuMultiSelect({
33
+ this._GuTextInput({
34
34
  name: i.PRODUCT_IDS,
35
35
  placeholder: this.api.translate("Enter Product Ids"),
36
- className: "product-ids-multiselect"
36
+ className: "es-180w"
37
37
  })
38
38
  ])}
39
39
  </div>
@@ -46,11 +46,10 @@ class y extends m {
46
46
  super.onTemplateNodeUpdated(t), this._initializeSelectItems(), this._setFormValues();
47
47
  }
48
48
  _setFormValues() {
49
- const t = n.getConfig(this.currentNode), e = p(t.strategy) ?? t.strategy;
49
+ const t = n.getConfig(this.currentNode), e = g(t.strategy) ?? t.strategy;
50
50
  this._setProductIdsVisibility(e), this.api.updateValues({
51
51
  [i.ALGORITHM]: e,
52
- // MULTIPLE_SELECT consumes a string[] directly (was a comma-joined string).
53
- [i.PRODUCT_IDS]: t.productIds
52
+ [i.PRODUCT_IDS]: t.productIds.join(",")
54
53
  });
55
54
  }
56
55
  _initializeSelectItems() {
@@ -60,7 +59,7 @@ class y extends m {
60
59
  try {
61
60
  this.api.setUIEAttribute(
62
61
  i.ALGORITHM,
63
- g.SELECTPICKER.items,
62
+ h.SELECTPICKER.items,
64
63
  t
65
64
  );
66
65
  } catch (r) {
@@ -82,13 +81,13 @@ class y extends m {
82
81
  _onProductIdsChange(t) {
83
82
  if (!this.currentNode)
84
83
  return;
85
- const e = [...new Set((t ?? []).map((a) => String(a).trim()).filter(Boolean))], r = n.getConfig(this.currentNode).productIds;
86
- r.length === e.length && r.every((a, l) => a === e[l]) || (n.updateConfig(
84
+ const e = t.split(",").map((r) => r.trim()).filter(Boolean);
85
+ n.updateConfig(
87
86
  this.api,
88
87
  this.currentNode,
89
88
  { productIds: e },
90
89
  "Updated product IDs"
91
- ), this.store.patchCurrentBlockConfig({ productIds: e }));
90
+ ), this.store.patchCurrentBlockConfig({ productIds: e });
92
91
  }
93
92
  _listenToFormUpdates() {
94
93
  this.api.onValueChanged(i.ALGORITHM, (t) => {
@@ -99,6 +98,6 @@ class y extends m {
99
98
  }
100
99
  }
101
100
  export {
102
- C as ALGORITHM_CONTROL_ID,
103
- y as AlgorithmControl
101
+ u as ALGORITHM_CONTROL_ID,
102
+ R as AlgorithmControl
104
103
  };
@@ -1,18 +1,16 @@
1
1
  const n = `/* Utils */
2
- .es-180w {
3
- width: 180px;
4
- }
2
+ .es-180w { width: 180px; }
5
3
 
6
4
  /* Recommendation Controls - Main settings panel separators */
7
- .recommendation-controls-container>div {
5
+ .recommendation-controls-container > div {
8
6
  border-bottom: 1px solid #eee;
9
7
  }
10
8
 
11
- .recommendation-controls-container>div:first-child {
9
+ .recommendation-controls-container > div:first-child {
12
10
  padding-top: 0;
13
11
  }
14
12
 
15
- .recommendation-controls-container>div:last-child {
13
+ .recommendation-controls-container > div:last-child {
16
14
  border-bottom: none;
17
15
  }
18
16
 
@@ -291,62 +289,6 @@ ue-orderable.orderable-disabled .droppable-icon {
291
289
  font-weight: 400;
292
290
  line-height: 16px;
293
291
  }
294
-
295
- /* product ID multiselect — initial */
296
- .product-ids-multiselect {
297
- background-color: var(--guido-color-gray-0);
298
- border: 1px solid var(--guido-color-gray-300);
299
- width: 180px;
300
- }
301
-
302
- /* product ID multiselect — hover */
303
- .product-ids-multiselect:hover {
304
- border-color: var(--guido-color-primary-500);
305
- background-color: var(--guido-color-gray-0) !important;
306
- }
307
-
308
- /* product ID multiselect — selected (.on) */
309
- .product-ids-multiselect.on,
310
- .product-ids-multiselect.on:hover {
311
- border-color: var(--guido-color-primary-500);
312
- box-shadow: 0 0 0 3px var(--guido-color-primary-200) !important;
313
- background-color: var(--guido-color-gray-0) !important;
314
- }
315
-
316
- .product-ids-multiselect .multiple-wrapper .multiple-item {
317
- display: flex;
318
- align-items: center;
319
- border-radius: 4px;
320
- border: 1px solid #B5C1F1;
321
- background-color: #F1F3FE;
322
- font-size: 13px;
323
- color: #0A2ECC;
324
- line-height: 16px;
325
- box-shadow: none;
326
- padding: 0 4px;
327
- }
328
-
329
- /* Close (×): always visible, moved to the right, split off by a left border (Figma).
330
- Label is a text node (can't be ordered) so the icon gets order:1 to sit after it;
331
- Stripo toggles visibility inline on hover, hence !important to keep it shown. */
332
- .product-ids-multiselect .multiple-wrapper .multiple-item .multiple-item-remove-icon {
333
- visibility: visible !important;
334
- opacity: 1;
335
- position: static !important;
336
- order: 1;
337
- margin-left: 4px;
338
- border-left: 1px solid #B5C1F1;
339
- color: var(--guido-color-primary-500);
340
- cursor: pointer;
341
- width: 16px;
342
- height: 16px;
343
- padding: 4px 0 4px 3px;
344
- }
345
-
346
- .product-ids-multiselect .multiple-wrapper .multiple-item:hover {
347
- background-color: #F1F3FE;
348
- padding: 0 4px;
349
- }
350
292
  `;
351
293
  export {
352
294
  n as default
@@ -1,12 +1,12 @@
1
1
  var c = Object.defineProperty;
2
- var i = (s, a, e) => a in s ? c(s, a, { enumerable: !0, configurable: !0, writable: !0, value: e }) : s[a] = e;
3
- var T = (s, a, e) => i(s, typeof a != "symbol" ? a + "" : a, e);
2
+ var i = (s, r, e) => r in s ? c(s, r, { enumerable: !0, configurable: !0, writable: !0, value: e }) : s[r] = e;
3
+ var u = (s, r, e) => i(s, typeof r != "symbol" ? r + "" : r, e);
4
4
  import { Control as I, UIElementType as n, UEAttr as $ } from "../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
5
- class _ extends I {
5
+ class d extends I {
6
6
  constructor() {
7
7
  super(...arguments);
8
- T(this, "currentNode");
9
- T(this, "lastBlockInstanceId", null);
8
+ u(this, "currentNode");
9
+ u(this, "lastBlockInstanceId", null);
10
10
  }
11
11
  getContainer() {
12
12
  var e;
@@ -47,15 +47,15 @@ class _ extends I {
47
47
  const t = this.getBlockInstanceId();
48
48
  if (!t)
49
49
  return !1;
50
- const E = t !== this.lastBlockInstanceId;
51
- return e(), E && (this.lastBlockInstanceId = t), E;
50
+ const o = t !== this.lastBlockInstanceId;
51
+ return e(), o && (this.lastBlockInstanceId = t), o;
52
52
  }
53
- _GuLabel({ text: e, name: t = "", hint: E }) {
53
+ _GuLabel({ text: e, name: t = "", hint: o }) {
54
54
  return `
55
55
  <${n.LABEL}
56
56
  ${$.LABEL.text}="${e}"
57
57
  ${$.LABEL.name}="${t || `${e} Label`}"
58
- ${E ? `${$.LABEL.hint}="${E}"` : ""}>
58
+ ${o ? `${$.LABEL.hint}="${o}"` : ""}>
59
59
  </${n.LABEL}>
60
60
  `;
61
61
  }
@@ -73,7 +73,7 @@ class _ extends I {
73
73
  * Use in getTemplate() — the icon is registered in a hidden store so Stripo initializes it.
74
74
  * Pair with _setInfoMessageValue() in onRender() to set the text content.
75
75
  */
76
- _GuOnPageMessage({ name: e, icon: t = "not-found", type: E = "info" }) {
76
+ _GuOnPageMessage({ name: e, icon: t = "not-found", type: o = "info" }) {
77
77
  return `
78
78
  <div data-info-message="${e}" style="display: none; padding: 16px 16px 0;">
79
79
  <div class="icon-store" style="display: none;">
@@ -81,7 +81,7 @@ class _ extends I {
81
81
  ${this._GuIcon({ src: t, className: "icon" })}
82
82
  </div>
83
83
  </div>
84
- ${this._GuMessage({ name: e, type: E })}
84
+ ${this._GuMessage({ name: e, type: o })}
85
85
  </div>
86
86
  `;
87
87
  }
@@ -91,7 +91,7 @@ class _ extends I {
91
91
  * and combines it with the text in Stripo's alert-message layout.
92
92
  */
93
93
  _setInfoMessageValue(e, t) {
94
- const E = this.getContainer(), o = E.querySelector(`[data-icon-key="${e}"]`), r = o == null ? void 0 : o.querySelector("ue-icon-component"), l = (r == null ? void 0 : r.outerHTML) ?? "";
94
+ const o = this.getContainer(), E = o.querySelector(`[data-icon-key="${e}"]`), a = E == null ? void 0 : E.querySelector("ue-icon-component"), l = (a == null ? void 0 : a.outerHTML) ?? "";
95
95
  this.api.setUIEAttribute(
96
96
  e,
97
97
  "value",
@@ -104,8 +104,8 @@ class _ extends I {
104
104
  </div>
105
105
  `
106
106
  );
107
- const u = E.querySelector(`[data-info-message="${e}"]`);
108
- u && (u.style.display = "");
107
+ const T = o.querySelector(`[data-info-message="${e}"]`);
108
+ T && (T.style.display = "");
109
109
  }
110
110
  _GuToggle(e) {
111
111
  return `
@@ -121,59 +121,59 @@ class _ extends I {
121
121
  ${$.SELECT_ITEM.value}="${t}">
122
122
  </${n.SELECT_ITEM}>`;
123
123
  }
124
- _GuSelect({ name: e, placeholder: t, options: E, className: o = "es-180w" }) {
124
+ _GuSelect({ name: e, placeholder: t, options: o, className: E = "es-180w" }) {
125
125
  return `
126
126
  <${n.SELECTPICKER}
127
- class="${o}"
127
+ class="${E}"
128
128
  ${$.SELECTPICKER.name}="${e}"
129
129
  ${$.SELECTPICKER.placeholder}="${t}">
130
- ${E.map((r) => this._GuSelectItem(r)).join("")}
130
+ ${o.map((a) => this._GuSelectItem(a)).join("")}
131
131
  </${n.SELECTPICKER}>
132
132
  `;
133
133
  }
134
- _GuTextInput({ name: e, placeholder: t, className: E = "", disabled: o = !1 }) {
134
+ _GuTextInput({ name: e, placeholder: t, className: o = "", disabled: E = !1 }) {
135
135
  return `
136
136
  <${n.TEXT}
137
- class=${E}
137
+ class=${o}
138
138
  ${$.TEXT.name}="${e}"
139
139
  placeholder="${t || e}"
140
- ${o ? `${$.TEXT.disabled}="true"` : ""}>
140
+ ${E ? `${$.TEXT.disabled}="true"` : ""}>
141
141
  </${n.TEXT}>
142
142
  `;
143
143
  }
144
- _GuCounter({ name: e, maxValue: t, minValue: E = 1, step: o = 1 }) {
144
+ _GuCounter({ name: e, maxValue: t, minValue: o = 1, step: E = 1 }) {
145
145
  return `
146
146
  <${n.COUNTER}
147
147
  ${$.COUNTER.name}="${e}"
148
- ${$.COUNTER.minValue}="${E}"
148
+ ${$.COUNTER.minValue}="${o}"
149
149
  ${$.COUNTER.maxValue}="${t}"
150
- ${$.COUNTER.step}="${o}">
150
+ ${$.COUNTER.step}="${E}">
151
151
  </${n.COUNTER}>
152
152
  `;
153
153
  }
154
- _GuRadioButtonItem({ text: e, value: t, icon: E }) {
154
+ _GuRadioButtonItem({ text: e, value: t, icon: o }) {
155
155
  return `
156
156
  <${n.RADIO_ITEM}
157
157
  ${$.RADIO_ITEM.value}="${t}"
158
158
  ${e ? `${$.RADIO_ITEM.text}="${e}"` : ""}
159
- ${E ? `${$.RADIO_ITEM.icon}="${E}"` : ""}>
159
+ ${o ? `${$.RADIO_ITEM.icon}="${o}"` : ""}>
160
160
  </${n.RADIO_ITEM}>
161
161
  `;
162
162
  }
163
- _GuRadioButton({ name: e, buttons: t, id: E = "" }) {
163
+ _GuRadioButton({ name: e, buttons: t, id: o = "" }) {
164
164
  return `
165
165
  <${n.RADIO_BUTTONS}
166
- ${E ? `id="${E}"` : ""}
166
+ ${o ? `id="${o}"` : ""}
167
167
  ${$.RADIO_BUTTONS.name}="${e}">
168
- ${t.map((o) => this._GuRadioButtonItem(o)).join("")}
168
+ ${t.map((E) => this._GuRadioButtonItem(E)).join("")}
169
169
  </${n.RADIO_BUTTONS}>
170
170
  `;
171
171
  }
172
- _GuButton({ name: e, label: t, id: E = "" }) {
172
+ _GuButton({ name: e, label: t, id: o = "" }) {
173
173
  return `
174
174
  <${n.BUTTON}
175
175
  ${$.BUTTON.name}="${e}"
176
- ${E ? `id="${E}"` : ""}
176
+ ${o ? `id="${o}"` : ""}
177
177
  ${$.BUTTON.caption}="${t}"}>
178
178
  </${n.BUTTON}>
179
179
  `;
@@ -191,10 +191,10 @@ class _ extends I {
191
191
  * @param param0
192
192
  * @returns It returns a button with an icon.
193
193
  */
194
- _GuIconButton({ name: e, icon: t, className: E = "" }) {
194
+ _GuIconButton({ name: e, icon: t, className: o = "" }) {
195
195
  return `
196
196
  <${n.BUTTON}
197
- class="${E}"
197
+ class="${o}"
198
198
  ${$.BUTTON.name}="${e}"
199
199
  ${$.BUTTON.icon}="${t}">
200
200
  </${n.BUTTON}>
@@ -222,19 +222,19 @@ class _ extends I {
222
222
  * @returns HTML string for the orderable control
223
223
  */
224
224
  _GuOrderable(e, t) {
225
- let E = "";
226
- t.forEach((r) => {
225
+ let o = "";
226
+ t.forEach((a) => {
227
227
  const l = $.ORDERABLE_ITEM && "name" in $.ORDERABLE_ITEM ? $.ORDERABLE_ITEM.name : "name";
228
- E += `
229
- <${n.ORDERABLE_ITEM} ${l}="${r.key}">
230
- ${r.content}
228
+ o += `
229
+ <${n.ORDERABLE_ITEM} ${l}="${a.key}">
230
+ ${a.content}
231
231
  </${n.ORDERABLE_ITEM}>
232
232
  `;
233
233
  });
234
- const o = $.ORDERABLE && "name" in $.ORDERABLE ? $.ORDERABLE.name : "name";
234
+ const E = $.ORDERABLE && "name" in $.ORDERABLE ? $.ORDERABLE.name : "name";
235
235
  return `
236
- <${n.ORDERABLE} ${o}="${e}">
237
- ${E}
236
+ <${n.ORDERABLE} ${E}="${e}">
237
+ ${o}
238
238
  </${n.ORDERABLE}>
239
239
  `;
240
240
  }
@@ -275,16 +275,16 @@ class _ extends I {
275
275
  `;
276
276
  }
277
277
  _GuRadioButtons(e, t) {
278
- const E = t.map((o) => `
278
+ const o = t.map((E) => `
279
279
  <${n.RADIO_ITEM}
280
- ${$.RADIO_ITEM.text}="${o.text}"
281
- ${$.RADIO_ITEM.value}="${o.value}">
280
+ ${$.RADIO_ITEM.text}="${E.text}"
281
+ ${$.RADIO_ITEM.value}="${E.value}">
282
282
  </${n.RADIO_ITEM}>
283
283
  `).join("");
284
284
  return `
285
285
  <${n.RADIO_BUTTONS}
286
286
  ${$.RADIO_BUTTONS.name}="${e}">
287
- ${E}
287
+ ${o}
288
288
  </${n.RADIO_BUTTONS}>
289
289
  `;
290
290
  }
@@ -296,20 +296,7 @@ class _ extends I {
296
296
  </${n.CHECKBOX}>
297
297
  `;
298
298
  }
299
- // Tag/chips input (Stripo MULTIPLE_SELECT): add-by-Enter, remove-by-×.
300
- // Value is read/written as a string[] via updateValues / onValueChanged.
301
- _GuMultiSelect({ name: e, placeholder: t = "", className: E = "", disabled: o = !1 }) {
302
- const r = [E, o ? "" : "click-enabled"].filter(Boolean).join(" ");
303
- return `
304
- <${n.MULTIPLE_SELECT}
305
- class="${r}"
306
- ${$.MULTIPLE_SELECT.name}="${e}"
307
- ${$.MULTIPLE_SELECT.placeholder}="${t}"
308
- ${o ? `${$.MULTIPLE_SELECT.disabled}="true"` : ""}>
309
- </${n.MULTIPLE_SELECT}>
310
- `;
311
- }
312
299
  }
313
300
  export {
314
- _ as CommonControl
301
+ d as CommonControl
315
302
  };
@@ -24,6 +24,6 @@ export declare class AlgorithmControl extends CommonControl {
24
24
  _initializeSelectItems(): void;
25
25
  _setProductIdsVisibility(strategy?: string): void;
26
26
  _onAlgorithmChange(value: string): void;
27
- _onProductIdsChange(value: string[]): void;
27
+ _onProductIdsChange(value: string): void;
28
28
  _listenToFormUpdates(): void;
29
29
  }
@@ -6,12 +6,6 @@ interface TextInputProps {
6
6
  className?: string;
7
7
  disabled?: boolean;
8
8
  }
9
- interface MultiSelectProps {
10
- name: string;
11
- placeholder?: string;
12
- className?: string;
13
- disabled?: boolean;
14
- }
15
9
  interface LabelProps {
16
10
  text: string;
17
11
  name?: string;
@@ -151,6 +145,5 @@ export declare abstract class CommonControl extends Control {
151
145
  value: string;
152
146
  }[]): string;
153
147
  _GuCheckbox(name: string, caption: string): string;
154
- _GuMultiSelect({ name, placeholder, className, disabled }: MultiSelectProps): string;
155
148
  }
156
149
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@useinsider/guido",
3
- "version": "3.9.0-beta.fc7d209",
3
+ "version": "3.9.0-beta.fcaa08b",
4
4
  "description": "Guido is a Vue + TypeScript wrapper for Email Plugin. Easily embed the email editor in your Vue applications.",
5
5
  "main": "./dist/guido.umd.cjs",
6
6
  "module": "./dist/library.js",