@useinsider/guido 3.2.0-beta.bbb580a → 3.2.0-beta.bbfbc6f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/organisms/extensions/recommendation/FilterItem.vue.js +10 -8
- package/dist/components/organisms/extensions/recommendation/FilterItem.vue2.js +35 -71
- package/dist/components/organisms/onboarding/AMPOnboarding.vue2.js +51 -31
- package/dist/components/organisms/onboarding/GenericOnboarding.vue.js +1 -1
- package/dist/components/organisms/onboarding/GenericOnboarding.vue2.js +23 -22
- package/dist/components/organisms/onboarding/ItemsOnboarding.vue.js +1 -1
- package/dist/components/organisms/onboarding/ItemsOnboarding.vue2.js +37 -39
- package/dist/components/organisms/onboarding/TextBlockOnboarding.vue.js +3 -3
- package/dist/components/organisms/onboarding/TextBlockOnboarding.vue2.js +30 -41
- package/dist/components/organisms/onboarding/VersionHistoryOnboarding.vue2.js +15 -14
- package/dist/composables/useRibbonOffset.js +21 -0
- package/dist/config/compiler/unsubscribeCompilerRules.js +40 -37
- package/dist/enums/date.js +3 -3
- package/dist/enums/extensions/recommendationBlock.js +27 -28
- package/dist/enums/onboarding.js +7 -2
- package/dist/enums/unsubscribe.js +34 -27
- package/dist/extensions/Blocks/Items/template.js +46 -48
- package/dist/extensions/Blocks/Recommendation/utils/filterUtil.js +5 -6
- package/dist/guido.css +1 -1
- package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +258 -236
- package/dist/package.json.js +1 -1
- package/dist/src/composables/useRibbonOffset.d.ts +4 -0
- package/dist/src/enums/date.d.ts +1 -1
- package/dist/src/enums/extensions/recommendationBlock.d.ts +0 -1
- package/dist/src/enums/onboarding.d.ts +6 -0
- package/dist/src/enums/unsubscribe.d.ts +5 -0
- package/dist/src/stores/onboarding.d.ts +4 -0
- package/dist/stores/onboarding.js +4 -0
- package/package.json +3 -3
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { BlockType as b, BlockAttr as
|
|
1
|
+
import { BlockType as b, BlockAttr as S } from "../../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
|
|
2
2
|
import { ItemsBlockId as O } from "./enums/controlEnums.js";
|
|
3
|
-
import { productPairs as
|
|
4
|
-
import { ItemInCartOptions as Y, SETTINGS_ENUMS as x, DefaultConfigValues as
|
|
3
|
+
import { productPairs as P, templateFirstLine as C } from "./enums/productEnums.js";
|
|
4
|
+
import { ItemInCartOptions as Y, SETTINGS_ENUMS as x, DefaultConfigValues as F } from "./enums/settingsEnums.js";
|
|
5
5
|
import j from "./layouts/horizontal.html.js";
|
|
6
6
|
import q from "./layouts/vertical.html.js";
|
|
7
7
|
import { escapeReplacement as V } from "./utils/nodeConfigUtils.js";
|
|
8
|
-
let [
|
|
9
|
-
const
|
|
8
|
+
let [M] = P.PAIRS_FOR_EXTENSION.imageSrc.CART_ITEMS.DEFAULT, [D] = P.PAIRS_FOR_EXTENSION.name.CART_ITEMS.DEFAULT, [N] = P.PAIRS_FOR_EXTENSION.price.CART_ITEMS.DEFAULT_PRICE_FORMATTED, [m] = P.PAIRS_FOR_EXTENSION.originalPrice.CART_ITEMS.DEFAULT_PRICE_FORMATTED, [U] = P.PAIRS_FOR_EXTENSION.quantity.CART_ITEMS.DEFAULT;
|
|
9
|
+
const g = (s, e) => s.split(";").map((r) => r.trim()).filter((r) => !r.toLowerCase().startsWith(e.toLowerCase())).join("; ").replace(/;\s*$/, ""), L = (s) => g(s, "text-align"), A = (s, e) => {
|
|
10
10
|
const r = new RegExp(`${e}\\s*:\\s*([^;]+)`, "i"), a = s.match(r);
|
|
11
11
|
return a ? a[1].trim() : null;
|
|
12
12
|
}, v = (s, e, r) => new RegExp(`(${e}\\s*:\\s*)[^;]+`, "gi").test(s) ? s.replace(
|
|
13
13
|
new RegExp(`(${e}\\s*:\\s*)[^;]+`, "gi"),
|
|
14
14
|
`$1${r}`
|
|
15
15
|
) : s, Z = (s, e, r, a) => {
|
|
16
|
-
const i = r ||
|
|
16
|
+
const i = r || F.productImageHeight, n = (a == null ? void 0 : a.imageVisible) === !1 ? "display: none; " : "";
|
|
17
17
|
return `
|
|
18
18
|
<td class="esd-block-image document-node-component default-block-component selectable ng-star-inserted"
|
|
19
19
|
align="center"
|
|
@@ -28,8 +28,7 @@ const U = (s, e) => s.split(";").map((r) => r.trim()).filter((r) => !r.toLowerCa
|
|
|
28
28
|
href="#!">
|
|
29
29
|
<img class="adapt-img document-node-component ng-star-inserted"
|
|
30
30
|
style="object-fit: contain;"
|
|
31
|
-
src="${
|
|
32
|
-
alt="${L}"
|
|
31
|
+
src="${M}"
|
|
33
32
|
width="${i}"
|
|
34
33
|
height="${i}">
|
|
35
34
|
</a>
|
|
@@ -37,11 +36,10 @@ const U = (s, e) => s.split(";").map((r) => r.trim()).filter((r) => !r.toLowerCa
|
|
|
37
36
|
`;
|
|
38
37
|
}, J = (s, e) => `
|
|
39
38
|
<${b.BLOCK_IMAGE}
|
|
40
|
-
${
|
|
41
|
-
${
|
|
42
|
-
${
|
|
43
|
-
${
|
|
44
|
-
${N.BLOCK_IMAGE.height}="${D.productImageWidth}"
|
|
39
|
+
${S.BLOCK_IMAGE.src}="${M}"
|
|
40
|
+
${S.BLOCK_IMAGE.href}="#!"
|
|
41
|
+
${S.BLOCK_IMAGE.width}="${F.productImageWidth}"
|
|
42
|
+
${S.BLOCK_IMAGE.height}="${F.productImageWidth}"
|
|
45
43
|
esd-extension-block-id="${O.IMAGE}"
|
|
46
44
|
data-slot-1
|
|
47
45
|
product-attr="imageSrc"
|
|
@@ -64,7 +62,7 @@ const U = (s, e) => s.split(";").map((r) => r.trim()).filter((r) => !r.toLowerCa
|
|
|
64
62
|
text-overflow: ellipsis;
|
|
65
63
|
`;
|
|
66
64
|
if (e) {
|
|
67
|
-
const c =
|
|
65
|
+
const c = A(a || "", "text-align") || "center", l = L(a || o), $ = A(l, "color"), t = A(l, "font-size"), E = A(l, "font-family"), _ = A(l, "font-weight"), u = A(l, "font-style"), w = _ === "bold" || _ === "700", p = u === "italic", R = [
|
|
68
66
|
$ ? `color: ${$}` : "",
|
|
69
67
|
t ? `font-size: ${t}` : "",
|
|
70
68
|
E ? `font-family: ${E}` : ""
|
|
@@ -74,17 +72,17 @@ const U = (s, e) => s.split(";").map((r) => r.trim()).filter((r) => !r.toLowerCa
|
|
|
74
72
|
"font-size",
|
|
75
73
|
"inherit"
|
|
76
74
|
);
|
|
77
|
-
d =
|
|
75
|
+
d = g(d, "font-weight"), d = g(d, "font-style");
|
|
78
76
|
const T = (i == null ? void 0 : i.nameVisible) === !1 ? "display: none;" : "display: table-cell;";
|
|
79
|
-
let
|
|
77
|
+
let I = `<a
|
|
80
78
|
href="#!"
|
|
81
79
|
style="${d}"
|
|
82
80
|
product-attr="name"
|
|
83
81
|
data-slot-2
|
|
84
82
|
width="100%">
|
|
85
|
-
${
|
|
83
|
+
${D}
|
|
86
84
|
</a>`;
|
|
87
|
-
return
|
|
85
|
+
return w && (I = `<strong>${I}</strong>`), p && (I = `<em>${I}</em>`), `
|
|
88
86
|
<td class="esd-block-text es-p10"
|
|
89
87
|
align="${c}"
|
|
90
88
|
width="100%"
|
|
@@ -92,7 +90,7 @@ const U = (s, e) => s.split(";").map((r) => r.trim()).filter((r) => !r.toLowerCa
|
|
|
92
90
|
esd-extension-block-id="${O.NAME}"
|
|
93
91
|
style="${T}">
|
|
94
92
|
<p contenteditable="false" path="1"${R ? ` style="${R}"` : ""}>
|
|
95
|
-
${
|
|
93
|
+
${I}
|
|
96
94
|
</p>
|
|
97
95
|
</td>
|
|
98
96
|
`;
|
|
@@ -124,26 +122,26 @@ const U = (s, e) => s.split(";").map((r) => r.trim()).filter((r) => !r.toLowerCa
|
|
|
124
122
|
product-attr="name"
|
|
125
123
|
data-slot-2
|
|
126
124
|
width="100%">
|
|
127
|
-
${
|
|
125
|
+
${D}
|
|
128
126
|
</a>
|
|
129
127
|
</p>
|
|
130
128
|
</${b.BLOCK_TEXT}>
|
|
131
129
|
`;
|
|
132
130
|
}, et = (s, e, r, a, i, n, o, c, l, $) => {
|
|
133
|
-
let t =
|
|
131
|
+
let t = N;
|
|
134
132
|
if (a && a.trim()) {
|
|
135
133
|
const T = `${a.trim()}`;
|
|
136
|
-
t = (i || "0") === "1" ? `${
|
|
134
|
+
t = (i || "0") === "1" ? `${N} ${T}` : `${T} ${N}`;
|
|
137
135
|
}
|
|
138
|
-
const E = i === "1" ? "after" : "before", _ = `data-formated="${r ? "true" : "false"}"`, u = `data-curency="${E}"`,
|
|
136
|
+
const E = i === "1" ? "after" : "before", _ = `data-formated="${r ? "true" : "false"}"`, u = `data-curency="${E}"`, w = a ? `data-currency_symbol="${a}"` : "", p = `data-single_price="${c ? "true" : "false"}"`, d = l === x.ORIENTATION.VERTICAL ? " es-p10b es-p10t" : "";
|
|
139
137
|
if (n) {
|
|
140
|
-
const
|
|
138
|
+
const h = L(o || "color: #060606; white-space: nowrap; font-size: 20px;"), I = $ ? "" : ' style="display: none;"';
|
|
141
139
|
return `
|
|
142
140
|
<td class="esd-block-text items-block-price${d}"
|
|
143
141
|
align="center"
|
|
144
142
|
esd-extension-block-id="${O.PRICE}"
|
|
145
143
|
width="100%"
|
|
146
|
-
${
|
|
144
|
+
${I}>
|
|
147
145
|
<p product-attr="price"
|
|
148
146
|
contenteditable="false"
|
|
149
147
|
data-slot-4
|
|
@@ -151,9 +149,9 @@ const U = (s, e) => s.split(";").map((r) => r.trim()).filter((r) => !r.toLowerCa
|
|
|
151
149
|
data-number="${e}"
|
|
152
150
|
${_}
|
|
153
151
|
${u}
|
|
154
|
-
${
|
|
152
|
+
${w}
|
|
155
153
|
${p}
|
|
156
|
-
style="${
|
|
154
|
+
style="${h}">
|
|
157
155
|
${t}
|
|
158
156
|
</p>
|
|
159
157
|
</td>`;
|
|
@@ -181,19 +179,19 @@ const U = (s, e) => s.split(";").map((r) => r.trim()).filter((r) => !r.toLowerCa
|
|
|
181
179
|
</${b.BLOCK_TEXT}>
|
|
182
180
|
`;
|
|
183
181
|
}, at = (s, e, r, a, i, n, o = !0, c, l, $) => {
|
|
184
|
-
let t =
|
|
182
|
+
let t = m;
|
|
185
183
|
if (a && a.trim()) {
|
|
186
184
|
const T = `${a.trim()}`;
|
|
187
|
-
t = (i || "0") === "1" ? `${
|
|
185
|
+
t = (i || "0") === "1" ? `${m} ${T}` : `${T} ${m}`;
|
|
188
186
|
}
|
|
189
|
-
const E = i === "1" ? "after" : "before", _ = `data-formated="${r ? "true" : "false"}"`, u = `data-curency="${E}"`,
|
|
187
|
+
const E = i === "1" ? "after" : "before", _ = `data-formated="${r ? "true" : "false"}"`, u = `data-curency="${E}"`, w = o ? "" : ' style="display: none;"', p = `data-single_price="${l ? "true" : "false"}"`, d = $ === x.ORIENTATION.VERTICAL ? " es-p10b es-p10t" : "";
|
|
190
188
|
if (n) {
|
|
191
|
-
const
|
|
189
|
+
const h = L(c || "color: #cc0000; white-space: nowrap; font-size: 19px;");
|
|
192
190
|
return `
|
|
193
191
|
<td class="esd-block-text items-block-price${d}"
|
|
194
192
|
esd-extension-block-id="${O.ORIGINAL_PRICE}"
|
|
195
193
|
width="100%"
|
|
196
|
-
align="center"${
|
|
194
|
+
align="center"${w}>
|
|
197
195
|
<p
|
|
198
196
|
product-attr="originalPrice"
|
|
199
197
|
contenteditable="false"
|
|
@@ -204,7 +202,7 @@ const U = (s, e) => s.split(";").map((r) => r.trim()).filter((r) => !r.toLowerCa
|
|
|
204
202
|
${u}
|
|
205
203
|
${a ? `data-currency_symbol="${a}"` : ""}
|
|
206
204
|
${p}
|
|
207
|
-
style="${
|
|
205
|
+
style="${h}">
|
|
208
206
|
<s>${t}</s>
|
|
209
207
|
</p>
|
|
210
208
|
</td>
|
|
@@ -237,7 +235,7 @@ const U = (s, e) => s.split(";").map((r) => r.trim()).filter((r) => !r.toLowerCa
|
|
|
237
235
|
}, st = (s = !0, e, r) => {
|
|
238
236
|
const a = s ? "" : 'style="display: none;"';
|
|
239
237
|
if (e) {
|
|
240
|
-
const i = "font-size: 14px;", n =
|
|
238
|
+
const i = "font-size: 14px;", n = A(r || "", "text-align") || "center", o = L(r || i);
|
|
241
239
|
return `
|
|
242
240
|
<td class="esd-block-text es-p10 document-node-component default-block-component selectable"
|
|
243
241
|
width="100%" align="${n}"
|
|
@@ -249,7 +247,7 @@ const U = (s, e) => s.split(";").map((r) => r.trim()).filter((r) => !r.toLowerCa
|
|
|
249
247
|
width="100%"
|
|
250
248
|
path="1"
|
|
251
249
|
style="${o}">
|
|
252
|
-
${
|
|
250
|
+
${U}
|
|
253
251
|
</p>
|
|
254
252
|
</td>`;
|
|
255
253
|
}
|
|
@@ -266,13 +264,13 @@ const U = (s, e) => s.split(";").map((r) => r.trim()).filter((r) => !r.toLowerCa
|
|
|
266
264
|
data-slot-3
|
|
267
265
|
contenteditable="false"
|
|
268
266
|
width="100%">
|
|
269
|
-
${
|
|
267
|
+
${U}
|
|
270
268
|
</p>
|
|
271
269
|
</${b.BLOCK_TEXT}>
|
|
272
270
|
`;
|
|
273
271
|
}, lt = (s, e, r = "Buy", a, i, n = !0, o = !0) => {
|
|
274
272
|
if (a) {
|
|
275
|
-
const c =
|
|
273
|
+
const c = A(i || "", "background") || A(i || "", "background-color"), l = c ? `border-width: 0px; background: ${c};` : "border-width: 0px;", $ = n ? "es-fw" : "es-il", t = (i || "").replace("border-width: 0;", "");
|
|
276
274
|
return `
|
|
277
275
|
<td class="esd-block-button ins-button default-block-component selectable"
|
|
278
276
|
align="center" width="100%" name="buy-button" caption="${r}"
|
|
@@ -328,10 +326,10 @@ const U = (s, e) => s.split(";").map((r) => r.trim()).filter((r) => !r.toLowerCa
|
|
|
328
326
|
}, it = (s) => s ? `<td align="center"
|
|
329
327
|
esd-extension-block-id="items-block" width="560"
|
|
330
328
|
data-number="4"
|
|
331
|
-
class="ins-product-td items-block items-block-v2 esd-items-block esd-extension-block esd-container-frame">` : C, z = (s, e, r, a, i, n, o, c, l, $, t, E, _, u = "horizontal",
|
|
332
|
-
const
|
|
329
|
+
class="ins-product-td items-block items-block-v2 esd-items-block esd-extension-block esd-container-frame">` : C, z = (s, e, r, a, i, n, o, c, l, $, t, E, _, u = "horizontal", w, p, R, d) => {
|
|
330
|
+
const I = `${`data-type="${e}" data-number="${r}"`} data-orientation="${a}"`, y = s.replace(
|
|
333
331
|
/<td([^>]*class="[^"]*ins-product-td[^"]*"[^>]*)>/,
|
|
334
|
-
`<td$1 ${
|
|
332
|
+
`<td$1 ${I}>`
|
|
335
333
|
), X = l == null ? void 0 : l["data-product_image_control_image-height"], G = n ? Z(e, r, X, t) : J(e, r), K = (t == null ? void 0 : t.buttonLabel) || "Buy", B = (t == null ? void 0 : t.buttonFullWidth) !== void 0 ? t.buttonFullWidth : !0, W = e === x.ITEMS_TYPE.BROWSED_ITEMS ? !1 : t == null ? void 0 : t.quantityControlEnabled, Q = (t == null ? void 0 : t.buttonVisible) !== void 0 ? t.buttonVisible : (l == null ? void 0 : l["data-product_button_control_enabled"]) !== "false", k = (t == null ? void 0 : t.priceVisible) !== void 0 ? t.priceVisible : (l == null ? void 0 : l["data-product_price_control_enabled"]) !== "false", f = (t == null ? void 0 : t.originalPriceVisible) !== void 0 ? t.originalPriceVisible : (l == null ? void 0 : l["data-product_original_price_control_enabled"]) !== "false", H = y.replace("{-{-TEMPLATE_FIRST_LINE-}-}", it(n)).replace("{-{-PRODUCT_IMAGE-}-}", G).replace("{-{-PRODUCT_NAME-}-}", tt(e, n, a, E, t)).replaceAll(
|
|
336
334
|
"{-{-PRODUCT_PRICE-}-}",
|
|
337
335
|
V(et(
|
|
@@ -341,7 +339,7 @@ const U = (s, e) => s.split(";").map((r) => r.trim()).filter((r) => !r.toLowerCa
|
|
|
341
339
|
o,
|
|
342
340
|
c,
|
|
343
341
|
n,
|
|
344
|
-
|
|
342
|
+
w,
|
|
345
343
|
d,
|
|
346
344
|
a,
|
|
347
345
|
k
|
|
@@ -387,7 +385,7 @@ function Tt({
|
|
|
387
385
|
priceStyles: E,
|
|
388
386
|
originalPriceStyles: _,
|
|
389
387
|
quantityStyles: u,
|
|
390
|
-
priceOrientation:
|
|
388
|
+
priceOrientation: w
|
|
391
389
|
}) {
|
|
392
390
|
const p = Y[e].findIndex((y) => y.value === r);
|
|
393
391
|
let R = "1";
|
|
@@ -398,10 +396,10 @@ function Tt({
|
|
|
398
396
|
y && y[1] && ([, R] = y);
|
|
399
397
|
}
|
|
400
398
|
const d = (l == null ? void 0 : l.priceSinglePrice) ?? (c == null ? void 0 : c["data-product_price_control_single_price"]) === "1" ?? !1;
|
|
401
|
-
|
|
402
|
-
const T =
|
|
403
|
-
d ? (
|
|
404
|
-
const
|
|
399
|
+
M = P.PAIRS_FOR_EXTENSION.imageSrc[e].DEFAULT[p >= 0 ? p : 0], D = P.PAIRS_FOR_EXTENSION.name[e].DEFAULT[p >= 0 ? p : 0];
|
|
400
|
+
const T = P.PAIRS_FOR_EXTENSION.price[e], h = P.PAIRS_FOR_EXTENSION.originalPrice[e];
|
|
401
|
+
d ? (N = o ? T.DEFAULT_SINGLE_PRICE_FORMATTED : T.DEFAULT_SINGLE_PRICE, m = o ? h.DEFAULT_SINGLE_PRICE_FORMATTED : h.DEFAULT_SINGLE_PRICE) : (N = o ? T.DEFAULT_PRICE_FORMATTED : T.DEFAULT_PRICE, m = o ? h.DEFAULT_PRICE_FORMATTED : h.DEFAULT_PRICE), U = P.PAIRS_FOR_EXTENSION.quantity[e].DEFAULT;
|
|
402
|
+
const I = w || (l == null ? void 0 : l.priceOrientation) || "horizontal";
|
|
405
403
|
return s === x.ORIENTATION.VERTICAL ? z(
|
|
406
404
|
q,
|
|
407
405
|
e,
|
|
@@ -417,7 +415,7 @@ function Tt({
|
|
|
417
415
|
l,
|
|
418
416
|
$,
|
|
419
417
|
t,
|
|
420
|
-
|
|
418
|
+
I,
|
|
421
419
|
E,
|
|
422
420
|
_,
|
|
423
421
|
u,
|
|
@@ -437,7 +435,7 @@ function Tt({
|
|
|
437
435
|
l,
|
|
438
436
|
$,
|
|
439
437
|
t,
|
|
440
|
-
|
|
438
|
+
I,
|
|
441
439
|
E,
|
|
442
440
|
_,
|
|
443
441
|
u,
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
function m(t) {
|
|
1
|
+
function l(t) {
|
|
3
2
|
if (t.length === 0)
|
|
4
3
|
return "";
|
|
5
4
|
const o = t.sort((r, e) => r.filterNumber - e.filterNumber), u = o.map((r) => {
|
|
6
|
-
const e = r.operator ===
|
|
5
|
+
const e = r.operator === "||", a = e ? "=" : r.operator, c = e ? decodeURIComponent(r.value).split(",").join("||") : r.value;
|
|
7
6
|
return `[${r.attribute}][${a}][${c}]`;
|
|
8
7
|
}), [s, ...p] = u;
|
|
9
8
|
let n = s;
|
|
@@ -13,12 +12,12 @@ function m(t) {
|
|
|
13
12
|
}
|
|
14
13
|
return `(${n})`;
|
|
15
14
|
}
|
|
16
|
-
function
|
|
15
|
+
function G(t) {
|
|
17
16
|
if (!t || t.length === 0)
|
|
18
17
|
return "";
|
|
19
18
|
const o = t.reduce((r, e) => (r[e.filterGroup] || (r[e.filterGroup] = []), r[e.filterGroup].push(e), r), {}), u = Object.keys(o).map(Number).sort((r, e) => r - e), s = u.map((r) => {
|
|
20
19
|
const e = o[r];
|
|
21
|
-
return
|
|
20
|
+
return l(e);
|
|
22
21
|
}), [p, ...n] = s;
|
|
23
22
|
let i = p;
|
|
24
23
|
for (let r = 0; r < n.length; r++) {
|
|
@@ -28,5 +27,5 @@ function y(t) {
|
|
|
28
27
|
return i.trim();
|
|
29
28
|
}
|
|
30
29
|
export {
|
|
31
|
-
|
|
30
|
+
G as generateCompleteFilterQuery
|
|
32
31
|
};
|
package/dist/guido.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.gap-16[data-v-
|
|
1
|
+
.gap-16[data-v-3b53a736],.gap-16[data-v-0e1b0c54]{gap:16px}[data-v-cd76c125] .in-button-v2__wrapper{line-height:0}[data-v-22226124] .in-segments-wrapper__button_selected,[data-v-22226124] .in-segments-wrapper__button_selected:hover{background-color:#dae1fb;color:#0010ac;border-color:#0010ac}[data-v-2cb418af] .in-progress-wrapper__progress p span:last-child{display:none!important}[data-v-2cb418af] .in-progress-description-status{display:none!important}.view-options-wrapper[data-v-195ab6d4]{position:relative;display:inline-block}.new-tag[data-v-195ab6d4]{position:absolute;top:-8px;right:-16px;z-index:10}[data-v-195ab6d4] .guido__view-option-selection-desktop svg,[data-v-195ab6d4] .guido__view-option-selection-mobile svg{margin:0 0 0 2px}[data-v-195ab6d4] .in-segments-wrapper__button_selected,[data-v-195ab6d4] .in-segments-wrapper__button_selected:hover{background-color:#dae1fb}[data-v-195ab6d4] .in-tooltip-wrapper__icon{cursor:pointer}.editor-toolbar[data-v-173c3a40]{gap:4px}.version-history-item[data-v-ee4b9c3f]{flex-basis:200px}.version-history[data-v-64c52560]{gap:8px}.version-history__toolbar[data-v-64c52560]{gap:4px}.view-options-wrapper[data-v-d405ca59]{position:relative;display:inline-block}.new-tag[data-v-d405ca59]{position:absolute;top:-8px;right:-16px;z-index:10}[data-v-d405ca59] .guido__verion-history-view-option-selection-desktop svg,[data-v-d405ca59] .guido__verion-history-view-option-selection-mobile svg{margin:0 0 0 2px}[data-v-d405ca59] .in-segments-wrapper__button_selected,[data-v-d405ca59] .in-segments-wrapper__button_selected:hover{background-color:#dae1fb}[data-v-d405ca59] .in-tooltip-wrapper__icon{cursor:pointer}.editor-actions[data-v-4e2a4adb]{gap:4px}.header-wrapper[data-v-5c02dcc7]{min-width:1000px}.guido-loading__wrapper[data-v-07c4b2d8]{height:100%;top:75px!important;bottom:0!important}.guido-editor__wrapper[data-v-25780af6]{--ribbon-offset: 0px;position:relative;width:100%;height:calc(100vh - 128px - var(--ribbon-offset))}.guido-editor__container[data-v-25780af6]{width:100%;height:calc(100vh - 128px - var(--ribbon-offset))}.guido-editor__no-header[data-v-25780af6]{height:calc(100vh - 75px - var(--ribbon-offset))}[data-v-293f1c47] .in-breadcrumb-wrapper__links{cursor:pointer}.templates-wrapper[data-v-df672485]{gap:16px;grid-template-columns:repeat(3,1fr)}.templates-wrapper .template-wrapper[data-v-df672485]{cursor:pointer}.templates-wrapper .template-wrapper .template-container[data-v-df672485]{height:274px;padding:2px;transition:none}.templates-wrapper .template-wrapper .template-container.selected[data-v-df672485]{padding:1px}.templates-wrapper .template-wrapper .template-container .thumbnail[data-v-df672485]{object-fit:cover;transform:scale(1)}[data-v-43c617a7] .guido__verion-history-view-option-selection-desktop svg,[data-v-43c617a7] .guido__verion-history-view-option-selection-mobile svg{margin:0 0 0 2px}[data-v-43c617a7] .in-segments-wrapper__button_selected,[data-v-43c617a7] .in-segments-wrapper__button_selected:hover{background-color:#dae1fb}.error-list[data-v-c3fd5d4b]{gap:16px}.desktop-browser-header[data-v-d86c5af5]{height:79px;min-height:79px}.desktop-browser-header__left[data-v-d86c5af5]{-webkit-user-drag:none;height:79px;width:378px}.desktop-browser-header__center[data-v-d86c5af5]{height:79px;background-repeat:repeat-x;background-size:auto 100%;background-position:left top}.desktop-browser-header__right[data-v-d86c5af5]{-webkit-user-drag:none;height:79px;width:112px}.desktop-preview[data-v-988f8da6]{min-width:602px;height:70vh;min-height:583px;border-radius:10px}.desktop-preview iframe[data-v-988f8da6]{min-height:504px}.iframe-wrapper[data-v-e0424e99]{width:258px}.iframe-scaled[data-v-e0424e99]{width:320px;height:124.0310077519%;transform:scale(.80625);transform-origin:top left}.cropped-text[data-v-eb3d05d7]{width:220px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mobile-preview-wrapper__phone[data-v-3f472f96]{width:282px}.mobile-preview-wrapper__phone img[data-v-3f472f96]{object-fit:cover;border-radius:44px}.mobile-preview-wrapper__content[data-v-3f472f96]{width:258px;height:450px;left:12px}[data-v-7419ae06] .vueperslides__bullets,[data-v-796d193b] .vueperslides__bullets{pointer-events:none!important}[data-v-796d193b] .vueperslides__parallax-wrapper{height:110px!important}[data-v-cadfc82d] .vueperslides__bullets{pointer-events:none!important}[data-v-cadfc82d] .vueperslides__parallax-wrapper{height:110px!important}
|