@useinsider/guido 1.0.2-beta.86f7e79 → 1.0.2-beta.93e2012
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/README.md +31 -1
- package/dist/@types/generic.d.ts +4 -0
- package/dist/components/Guido.vue.d.ts +3 -1
- package/dist/components/Guido.vue.js +5 -5
- package/dist/components/Guido.vue2.js +76 -65
- package/dist/components/organisms/LoadingWrapper.vue.js +1 -1
- package/dist/components/organisms/email-preview/amp/AmpToggle.vue.js +3 -2
- package/dist/components/organisms/header/HeaderWrapper.vue.d.ts +3 -1
- package/dist/components/organisms/header/HeaderWrapper.vue.js +6 -6
- package/dist/components/organisms/header/HeaderWrapper.vue2.js +15 -9
- package/dist/components/organisms/header/RightSlot.vue.d.ts +3 -1
- package/dist/components/organisms/header/RightSlot.vue.js +5 -3
- package/dist/components/organisms/header/RightSlot.vue2.js +26 -27
- package/dist/components/organisms/onboarding/AMPOnboarding.vue2.js +11 -11
- package/dist/components/organisms/onboarding/GenericOnboarding.vue.js +1 -1
- package/dist/components/organisms/onboarding/GenericOnboarding.vue2.js +8 -8
- package/dist/components/organisms/onboarding/TextBlockOnboarding.vue.js +1 -1
- package/dist/components/organisms/onboarding/TextBlockOnboarding.vue2.js +40 -28
- package/dist/components/organisms/onboarding/VersionHistoryOnboarding.vue2.js +6 -6
- package/dist/composables/useCustomInterfaceAppearance.js +22 -18
- package/dist/composables/useHtmlCompiler.js +17 -9
- package/dist/composables/useHtmlValidator.d.ts +3 -0
- package/dist/composables/useHtmlValidator.js +120 -0
- package/dist/composables/useRecommendation.d.ts +19 -0
- package/dist/composables/useRecommendation.js +27 -0
- package/dist/composables/useSave.d.ts +4 -0
- package/dist/composables/useSave.js +15 -0
- package/dist/composables/useStripo.js +27 -25
- package/dist/composables/useToaster.js +17 -17
- package/dist/config/compiler/outlookCompilerRules.d.ts +2 -0
- package/dist/config/compiler/outlookCompilerRules.js +36 -0
- package/dist/config/compiler/recommendationCompilerRules.d.ts +2 -0
- package/dist/config/compiler/recommendationCompilerRules.js +83 -0
- package/dist/config/compiler/socialCompilerRules.d.ts +2 -0
- package/dist/config/compiler/socialCompilerRules.js +21 -0
- package/dist/config/compiler/unsubscribeCompilerRules.d.ts +2 -0
- package/dist/config/compiler/unsubscribeCompilerRules.js +64 -0
- package/dist/enums/defaults.d.ts +5 -1
- package/dist/enums/defaults.js +14 -10
- package/dist/enums/html-validator.d.ts +6 -0
- package/dist/enums/html-validator.js +7 -0
- package/dist/enums/recommendation.d.ts +54 -0
- package/dist/enums/recommendation.js +56 -0
- package/dist/enums/unsubscribe.d.ts +15 -0
- package/dist/enums/unsubscribe.js +17 -0
- package/dist/guido.css +1 -1
- package/dist/mock/api/validator.d.ts +2 -0
- package/dist/static/styles/components/alert-message.css.js +32 -2
- package/dist/static/styles/components/button.css.js +32 -2
- package/dist/static/styles/components/notification.css.js +55 -0
- package/dist/static/styles/components/popup.css.js +68 -0
- package/dist/static/styles/components/wide-panel.css.js +5 -1
- package/dist/static/styles/customEditorStyle.css.js +6 -0
- package/dist/static/styles/variables.css.js +10 -0
- package/dist/stores/dynamic-content.d.ts +12 -0
- package/dist/stores/dynamic-content.js +7 -6
- package/dist/stores/recommendation.d.ts +10 -0
- package/dist/stores/recommendation.js +9 -0
- package/dist/stores/unsubscribe.d.ts +8 -0
- package/dist/stores/unsubscribe.js +9 -0
- package/dist/utils/genericUtil.js +9 -6
- package/dist/utils/templatePreparation.js +21 -14
- package/package.json +1 -1
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { useRecommendation as u } from "../../composables/useRecommendation.js";
|
|
2
|
+
import { DUMMY_IMAGE_MAPPINGS as P, REGEX as i, CSS as e, CONDITIONS as E, ATTRIBUTES as r, HTML as h } from "../../enums/recommendation.js";
|
|
3
|
+
const H = [
|
|
4
|
+
{
|
|
5
|
+
id: "replace-images-with-variable-names",
|
|
6
|
+
description: "Replacing dummy images with variable names in recommendation module",
|
|
7
|
+
type: "custom",
|
|
8
|
+
processor: (a) => {
|
|
9
|
+
let t = a;
|
|
10
|
+
return Object.entries(P).forEach(([, n]) => {
|
|
11
|
+
Object.entries(n).forEach(([s, o]) => {
|
|
12
|
+
t = t.replaceAll(o, `{{${s}}}`);
|
|
13
|
+
});
|
|
14
|
+
}), t;
|
|
15
|
+
},
|
|
16
|
+
priority: 50
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
id: "replace-recommendation-button-span-css",
|
|
20
|
+
description: "Replacing recommendation button span css",
|
|
21
|
+
type: "replace",
|
|
22
|
+
search: ".ext-product-button span,",
|
|
23
|
+
replacement: ".ext-product-button,",
|
|
24
|
+
replaceAll: !0,
|
|
25
|
+
priority: 51
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
id: "add-recommendation-unresponsive-css",
|
|
29
|
+
description: "Adding recommendation unresponsive css",
|
|
30
|
+
type: "custom",
|
|
31
|
+
processor: (a) => {
|
|
32
|
+
const { getRecommendationCampaignData: t } = u();
|
|
33
|
+
let n = a;
|
|
34
|
+
const s = n.match(i.ID);
|
|
35
|
+
if (s) {
|
|
36
|
+
const o = [];
|
|
37
|
+
if (s.forEach((c) => {
|
|
38
|
+
const m = c.slice(35, c.length - 1).trim();
|
|
39
|
+
t(m);
|
|
40
|
+
}), o.length) {
|
|
41
|
+
const c = `width:${Math.min(...o)}px!important;`;
|
|
42
|
+
n = n.replace(e.REGULAR_NAME_HEIGHT, `${e.TRIMMED_NAME_HEIGHT} ${c} ${e.ELLIPSIS}`).replace(e.REGULAR_NAME_CONTAINER_HEIGHT, e.TRIMMED_NAME_CONTAINER_CSS).replace(e.RESPONSIVE_NAME_SIZE, `${e.RESPONSIVE_NAME_HEIGHT} ${c} ${e.ELLIPSIS}`).replace(e.RESPONSIVE_NAME_CONTAINER_HEIGHT, e.TRIMMED_RESPONSIVE_NAME_CONTAINER_CSS);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
return n;
|
|
46
|
+
},
|
|
47
|
+
priority: 52
|
|
48
|
+
},
|
|
49
|
+
// TODO: prepareRecommendations
|
|
50
|
+
// TODO: addRecommendationCustomFields
|
|
51
|
+
{
|
|
52
|
+
id: "add-discount-conditions",
|
|
53
|
+
description: "Adding discount conditions to the recommendation block",
|
|
54
|
+
type: "custom",
|
|
55
|
+
processor: (a) => {
|
|
56
|
+
let t = a;
|
|
57
|
+
const n = t.match(i.ATTRIBUTE_PARAGRAPH), { getRecommendationCampaignData: s } = u();
|
|
58
|
+
return n !== null && n.forEach((o) => {
|
|
59
|
+
const c = o.match(i.CUSTOM_FIELD);
|
|
60
|
+
if (!c)
|
|
61
|
+
return;
|
|
62
|
+
const [m] = c, p = m.match(i.CUSTOM_FIELD_INDEXES_PART), A = m.match(i.CUSTOM_FIELD_NAME_PART), _ = o.match(i.ATTRIBUTE_PARAGRAPH_START_TAG);
|
|
63
|
+
if (!p || !A || !_)
|
|
64
|
+
return;
|
|
65
|
+
const [l] = p, [T] = A, [d] = _, N = T.substring(1, T.length - 2), R = d.match(i.COMPOSITION) !== null;
|
|
66
|
+
let O = m;
|
|
67
|
+
if (R) {
|
|
68
|
+
const M = l.substring(2, l.length - 3);
|
|
69
|
+
s(M);
|
|
70
|
+
}
|
|
71
|
+
const I = l.substring(2);
|
|
72
|
+
let S = "";
|
|
73
|
+
N in E.IF && (S = E.IF[N].replaceAll(`{${r.DISCOUNT}}`, `${I}${r.DISCOUNT}`).replaceAll(`{${r.OMNIBUS_DISCOUNT}}`, `${I}${r.OMNIBUS_DISCOUNT}`).replaceAll(`{${r.OMNIBUS_PRICE}}`, `${I}${r.OMNIBUS_PRICE}`));
|
|
74
|
+
const $ = `${d}${O}${h.PARAGRAPH_END_TAG}`, C = `${S}${R ? $ : o}${E.ELSE}${d}${h.PARAGRAPH_END_TAG}${E.END_IF}`;
|
|
75
|
+
t = t.replace(o, C);
|
|
76
|
+
}), t;
|
|
77
|
+
},
|
|
78
|
+
priority: 53
|
|
79
|
+
}
|
|
80
|
+
];
|
|
81
|
+
export {
|
|
82
|
+
H as recommendationCompilerRules
|
|
83
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
const a = [
|
|
2
|
+
{
|
|
3
|
+
id: "fix-custom-social-block",
|
|
4
|
+
description: "Fixing custom social block.",
|
|
5
|
+
type: "custom",
|
|
6
|
+
processor: (e) => {
|
|
7
|
+
let c = e;
|
|
8
|
+
const s = c.match(/<table[^>]*?class="[^>]*?es-social[^>]*?"[\S\s]*?<\/table>/gm);
|
|
9
|
+
return s && s.forEach((o) => {
|
|
10
|
+
if (o.match(/<img[^>]*?height="[0-9]+?"/gm)) {
|
|
11
|
+
const i = o.replace(/<img[^>]*?height="[0-9]+?"/gm, (t) => t.replace("height", "width"));
|
|
12
|
+
c = c.replace(o, i);
|
|
13
|
+
}
|
|
14
|
+
}), c;
|
|
15
|
+
},
|
|
16
|
+
priority: 80
|
|
17
|
+
}
|
|
18
|
+
];
|
|
19
|
+
export {
|
|
20
|
+
a as socialCompilerRules
|
|
21
|
+
};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { usePartner as m } from "../../composables/usePartner.js";
|
|
2
|
+
import { LINK_REGEXES as c, LINK_TYPES as p, URLS as E } from "../../enums/unsubscribe.js";
|
|
3
|
+
import { useUnsubscribeStore as b } from "../../stores/unsubscribe.js";
|
|
4
|
+
const S = [
|
|
5
|
+
{
|
|
6
|
+
id: "add-unsubscribe-link-values",
|
|
7
|
+
description: "Adding unsubscribe link values",
|
|
8
|
+
type: "custom",
|
|
9
|
+
processor: (n) => {
|
|
10
|
+
var a, u;
|
|
11
|
+
const { getPartnerName: i } = m(), t = b();
|
|
12
|
+
let e = n;
|
|
13
|
+
const o = `/${i()}/email/0?user={{iid}}`, r = (a = t.selectedUnsubscribePages) == null ? void 0 : a.find((l) => l.type === p.UNSUBSCRIBE_LINK_TYPE), s = (u = t.selectedUnsubscribePages) == null ? void 0 : u.find((l) => l.type === p.PREFERENCES_LINK_TYPE);
|
|
14
|
+
return r && (e = e.replace(
|
|
15
|
+
c.GLOBAL_UNSUBSCRIBE_LINK_REGEX,
|
|
16
|
+
E.UNSUBSCRIBE_URL + o
|
|
17
|
+
)), s && (e = e.replace(
|
|
18
|
+
c.PREFERENCES_UNSUBSCRIBE_LINK_REGEX,
|
|
19
|
+
E.PREFERENCES_URL + o
|
|
20
|
+
)), e.replace(c.UNSUBSCRIBE_LINK_REGEX, "");
|
|
21
|
+
},
|
|
22
|
+
priority: 60
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
id: "remove-data-ogsb-button-styles",
|
|
26
|
+
description: "Removing styles like [data-ogsb] .es-button.es-button-123 { background: red; }",
|
|
27
|
+
type: "regex",
|
|
28
|
+
pattern: c.DATA_OGSB_BUTTON_CSS_REGEX,
|
|
29
|
+
replacement: "",
|
|
30
|
+
flags: "g",
|
|
31
|
+
priority: 61
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
id: "format-comment-braces",
|
|
35
|
+
description: "Adding spaces around comment braces for proper formatting",
|
|
36
|
+
type: "custom",
|
|
37
|
+
processor: (n) => n.replace(/{#/g, "{ #").replace(/#}/g, "# }"),
|
|
38
|
+
priority: 62
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
id: "add-universal-link-flags",
|
|
42
|
+
description: "Adding universal link flags",
|
|
43
|
+
type: "custom",
|
|
44
|
+
processor: (n) => {
|
|
45
|
+
let i = n;
|
|
46
|
+
const t = i.match(/<a[^>]+>(.*?)<\/a>/gm);
|
|
47
|
+
return t && t.forEach((e) => {
|
|
48
|
+
if (e.includes("insEmail=1"))
|
|
49
|
+
return;
|
|
50
|
+
if (e.match(/<a\s+(?:[^>]*?\s+)?href=(["'`”])(.*?)\1\s+(?:[^>]*?\s+)?universal=(["'`”])true\3/gm)) {
|
|
51
|
+
const o = e.replace(/href=(["'`”])(.*?)\1/gm, (r) => {
|
|
52
|
+
const s = r.slice(6, r.length - 1).trim();
|
|
53
|
+
return r.includes("?") || r.includes("#") ? s.slice(-1) === "&" ? r.replace(s, `${s}insEmail=1`) : r.replace(s, `${s}&insEmail=1`) : r.replace(s, `${s}?insEmail=1`);
|
|
54
|
+
});
|
|
55
|
+
i = i.replace(e, o);
|
|
56
|
+
}
|
|
57
|
+
}), i;
|
|
58
|
+
},
|
|
59
|
+
priority: 63
|
|
60
|
+
}
|
|
61
|
+
];
|
|
62
|
+
export {
|
|
63
|
+
S as unsubscribeCompilerRules
|
|
64
|
+
};
|
package/dist/enums/defaults.d.ts
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import type { GuidoConfig } from '@@/Types/generic';
|
|
2
2
|
export declare const DefaultGuidoConfig: GuidoConfig;
|
|
3
|
+
export declare const TemplateTypes: {
|
|
4
|
+
promotional: number;
|
|
5
|
+
transactional: number;
|
|
6
|
+
};
|
|
3
7
|
export declare const DefaultProductType = "email";
|
|
4
8
|
export declare const DefaultUsername = "Guido User";
|
|
5
|
-
export declare const DefaultMessageType
|
|
9
|
+
export declare const DefaultMessageType: number;
|
|
6
10
|
export declare const EditorType: number;
|
|
7
11
|
export declare const ProductIds: Record<string, number>;
|
|
8
12
|
export declare const TEST_PARTNER_LIST: string[];
|
package/dist/enums/defaults.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
1
|
+
const a = {
|
|
2
2
|
translationsPath: "window.trans.en",
|
|
3
3
|
emailHeader: {
|
|
4
4
|
senderName: "",
|
|
@@ -10,10 +10,13 @@ const t = {
|
|
|
10
10
|
versionHistory: !0
|
|
11
11
|
},
|
|
12
12
|
useHeader: !0
|
|
13
|
-
},
|
|
13
|
+
}, t = {
|
|
14
|
+
promotional: 1,
|
|
15
|
+
transactional: 2
|
|
16
|
+
}, e = "email", o = "Guido User", n = t.promotional, i = 2, s = {
|
|
14
17
|
email: 60,
|
|
15
18
|
architect: 49
|
|
16
|
-
},
|
|
19
|
+
}, u = [
|
|
17
20
|
"alfredtesting",
|
|
18
21
|
"electio",
|
|
19
22
|
"eurekatest",
|
|
@@ -46,11 +49,12 @@ const t = {
|
|
|
46
49
|
"stripoeditorlivetest"
|
|
47
50
|
];
|
|
48
51
|
export {
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
52
|
+
a as DefaultGuidoConfig,
|
|
53
|
+
n as DefaultMessageType,
|
|
54
|
+
e as DefaultProductType,
|
|
55
|
+
o as DefaultUsername,
|
|
56
|
+
i as EditorType,
|
|
57
|
+
s as ProductIds,
|
|
58
|
+
u as TEST_PARTNER_LIST,
|
|
59
|
+
t as TemplateTypes
|
|
56
60
|
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare const CanNotMakeAnyChangesForRunningKey = "newsletter.already-in-progress";
|
|
2
|
+
export declare const CanNotMakeAnyChangesKey = "newsletter.can-not-make-any-changes";
|
|
3
|
+
export declare const CampaignCouldNotBeSavedKey = "newsletter.campaign-could-not-be-saved";
|
|
4
|
+
export declare const DISPLAY_CONDITIONS_REGEX: RegExp;
|
|
5
|
+
export declare const DISPLAY_CONDITIONS_EXCEPTIONS_REGEX: RegExp;
|
|
6
|
+
export declare const REMOVE_CONDITIONS_REGEX: RegExp;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
const e = "newsletter.already-in-progress", n = "newsletter.campaign-could-not-be-saved", o = / (==|<=|>=|!=|>|<|in) | (if|elif|endif|else|and|or) |("[\S ]+")|('[\S ]+')|([^”\s\n]+)|(({%)|( %}))/gm, a = /{%( )*now( )(".*")( )*%}/gm;
|
|
2
|
+
export {
|
|
3
|
+
n as CampaignCouldNotBeSavedKey,
|
|
4
|
+
e as CanNotMakeAnyChangesForRunningKey,
|
|
5
|
+
a as DISPLAY_CONDITIONS_EXCEPTIONS_REGEX,
|
|
6
|
+
o as DISPLAY_CONDITIONS_REGEX
|
|
7
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
export declare const DefaultPadding = 20;
|
|
2
|
+
export declare const MinDeviceViewport = 320;
|
|
3
|
+
export declare const VerticalOrientation = "vertical";
|
|
4
|
+
export declare const DUMMY_IMAGE_MAPPINGS: {
|
|
5
|
+
CART_ABANDONMENT: {
|
|
6
|
+
ins_apr_img_1: string;
|
|
7
|
+
ins_apr_img_2: string;
|
|
8
|
+
ins_apr_img_3: string;
|
|
9
|
+
ins_apr_img_4: string;
|
|
10
|
+
};
|
|
11
|
+
BROWSE_ABANDONMENT: {
|
|
12
|
+
browsed_item_img_1: string;
|
|
13
|
+
browsed_item_img_2: string;
|
|
14
|
+
browsed_item_img_3: string;
|
|
15
|
+
browsed_item_img_4: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export declare const ATTRIBUTES: {
|
|
19
|
+
DISCOUNT: string;
|
|
20
|
+
OMNIBUS_DISCOUNT: string;
|
|
21
|
+
OMNIBUS_PRICE: string;
|
|
22
|
+
};
|
|
23
|
+
export declare const CONDITIONS: {
|
|
24
|
+
IF: {
|
|
25
|
+
discount: string;
|
|
26
|
+
omnibus_discount: string;
|
|
27
|
+
omnibus_price: string;
|
|
28
|
+
};
|
|
29
|
+
ELSE: string;
|
|
30
|
+
END_IF: string;
|
|
31
|
+
};
|
|
32
|
+
export declare const REGEX: {
|
|
33
|
+
ID: RegExp;
|
|
34
|
+
ATTRIBUTE_PARAGRAPH: RegExp;
|
|
35
|
+
ATTRIBUTE_PARAGRAPH_START_TAG: RegExp;
|
|
36
|
+
COMPOSITION: RegExp;
|
|
37
|
+
CUSTOM_FIELD: RegExp;
|
|
38
|
+
CUSTOM_FIELD_INDEXES_PART: RegExp;
|
|
39
|
+
CUSTOM_FIELD_NAME_PART: RegExp;
|
|
40
|
+
};
|
|
41
|
+
export declare const HTML: {
|
|
42
|
+
PARAGRAPH_END_TAG: string;
|
|
43
|
+
};
|
|
44
|
+
export declare const CSS: {
|
|
45
|
+
REGULAR_NAME_HEIGHT: string;
|
|
46
|
+
TRIMMED_NAME_HEIGHT: string;
|
|
47
|
+
ELLIPSIS: string;
|
|
48
|
+
REGULAR_NAME_CONTAINER_HEIGHT: string;
|
|
49
|
+
TRIMMED_NAME_CONTAINER_CSS: string;
|
|
50
|
+
RESPONSIVE_NAME_SIZE: string;
|
|
51
|
+
RESPONSIVE_NAME_HEIGHT: string;
|
|
52
|
+
RESPONSIVE_NAME_CONTAINER_HEIGHT: string;
|
|
53
|
+
TRIMMED_RESPONSIVE_NAME_CONTAINER_CSS: string;
|
|
54
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
const s = 20, e = 320, t = {
|
|
2
|
+
CART_ABANDONMENT: {
|
|
3
|
+
ins_apr_img_1: "https://s3-eu-west-1.amazonaws.com/web-image.useinsider.com/email-assets/dummyImages/ins_apr_img_1.png",
|
|
4
|
+
ins_apr_img_2: "https://s3-eu-west-1.amazonaws.com/web-image.useinsider.com/email-assets/dummyImages/ins_apr_img_2.png",
|
|
5
|
+
ins_apr_img_3: "https://s3-eu-west-1.amazonaws.com/web-image.useinsider.com/email-assets/dummyImages/ins_apr_img_3.png",
|
|
6
|
+
ins_apr_img_4: "https://s3-eu-west-1.amazonaws.com/web-image.useinsider.com/email-assets/dummyImages/ins_apr_img_4.png"
|
|
7
|
+
},
|
|
8
|
+
BROWSE_ABANDONMENT: {
|
|
9
|
+
browsed_item_img_1: "https://s3-eu-west-1.amazonaws.com/web-image.useinsider.com/email-assets/dummyImages/browsed_item_img_1.jpg",
|
|
10
|
+
browsed_item_img_2: "https://s3-eu-west-1.amazonaws.com/web-image.useinsider.com/email-assets/dummyImages/browsed_item_img_2.jpg",
|
|
11
|
+
browsed_item_img_3: "https://s3-eu-west-1.amazonaws.com/web-image.useinsider.com/email-assets/dummyImages/browsed_item_img_3.jpg",
|
|
12
|
+
browsed_item_img_4: "https://s3-eu-west-1.amazonaws.com/web-image.useinsider.com/email-assets/dummyImages/browsed_item_img_4.jpg"
|
|
13
|
+
}
|
|
14
|
+
}, i = {
|
|
15
|
+
DISCOUNT: "discount",
|
|
16
|
+
OMNIBUS_DISCOUNT: "omnibus_discount",
|
|
17
|
+
OMNIBUS_PRICE: "omnibus_price"
|
|
18
|
+
}, m = {
|
|
19
|
+
IF: {
|
|
20
|
+
discount: `{% if {${i.DISCOUNT}} != "0%" and {${i.DISCOUNT}} != "" %}`,
|
|
21
|
+
omnibus_discount: `{% if {${i.DISCOUNT}} != "0%" and {${i.DISCOUNT}} != "" and {${i.OMNIBUS_DISCOUNT}} != "0%" and {${i.OMNIBUS_DISCOUNT}} != "" %}`,
|
|
22
|
+
omnibus_price: `{% if {${i.DISCOUNT}} != "0%" and {${i.DISCOUNT}} != "" and {${i.OMNIBUS_PRICE}} != "" %}`
|
|
23
|
+
},
|
|
24
|
+
ELSE: "{% else %}",
|
|
25
|
+
END_IF: "{% endif %}"
|
|
26
|
+
}, _ = {
|
|
27
|
+
ID: /ins-recommendation-v3-campaign-id="(.*?)"/gi,
|
|
28
|
+
ATTRIBUTE_PARAGRAPH: /<p[^>]*?product-attr="(discount|omnibus_discount|omnibus_price)">[\S\s]*?<\/p>/gm,
|
|
29
|
+
ATTRIBUTE_PARAGRAPH_START_TAG: /<p[^>]*?product-attr="(discount|omnibus_discount|omnibus_price)">/gm,
|
|
30
|
+
COMPOSITION: /composition="true"/gm,
|
|
31
|
+
CUSTOM_FIELD: /{{[0-9]+_[0-8]_(discount|omnibus_discount|omnibus_price)}}/gm,
|
|
32
|
+
CUSTOM_FIELD_INDEXES_PART: /{{[0-9]+_[0-8]_/gm,
|
|
33
|
+
CUSTOM_FIELD_NAME_PART: /_(discount|omnibus_discount|omnibus_price)}}/gm
|
|
34
|
+
}, a = {
|
|
35
|
+
PARAGRAPH_END_TAG: "</p>"
|
|
36
|
+
}, n = {
|
|
37
|
+
REGULAR_NAME_HEIGHT: ".ext-product-name.ins-vertical p { height:90px!important;",
|
|
38
|
+
TRIMMED_NAME_HEIGHT: ".ext-product-name.ins-vertical p { height:18px!important;",
|
|
39
|
+
ELLIPSIS: "text-overflow:ellipsis!important; white-space:nowrap!important;",
|
|
40
|
+
REGULAR_NAME_CONTAINER_HEIGHT: ".ext-product-name.ins-vertical { height:100px!important",
|
|
41
|
+
TRIMMED_NAME_CONTAINER_CSS: ".ext-product-name.ins-vertical { height:38px!important; padding:0px!important",
|
|
42
|
+
RESPONSIVE_NAME_SIZE: ".ext-product-name p { height:unset!important; width:100%!important;",
|
|
43
|
+
RESPONSIVE_NAME_HEIGHT: ".ext-product-name p { height:24px!important;",
|
|
44
|
+
RESPONSIVE_NAME_CONTAINER_HEIGHT: ".ext-product-name { height:unset!important",
|
|
45
|
+
TRIMMED_RESPONSIVE_NAME_CONTAINER_CSS: ".ext-product-name { height:44px!important; padding:0px!important"
|
|
46
|
+
};
|
|
47
|
+
export {
|
|
48
|
+
i as ATTRIBUTES,
|
|
49
|
+
m as CONDITIONS,
|
|
50
|
+
n as CSS,
|
|
51
|
+
t as DUMMY_IMAGE_MAPPINGS,
|
|
52
|
+
s as DefaultPadding,
|
|
53
|
+
a as HTML,
|
|
54
|
+
e as MinDeviceViewport,
|
|
55
|
+
_ as REGEX
|
|
56
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const LINK_TYPES: {
|
|
2
|
+
UNSUBSCRIBE_LINK_TYPE: number;
|
|
3
|
+
PREFERENCES_LINK_TYPE: number;
|
|
4
|
+
};
|
|
5
|
+
export declare const LINK_REGEXES: {
|
|
6
|
+
UNSUBSCRIBE_LINK_REGEX: RegExp;
|
|
7
|
+
DATA_OGSB_BUTTON_CSS_REGEX: string;
|
|
8
|
+
GLOBAL_UNSUBSCRIBE_LINK_REGEX: RegExp;
|
|
9
|
+
PREFERENCES_UNSUBSCRIBE_LINK_REGEX: RegExp;
|
|
10
|
+
};
|
|
11
|
+
export declare const URLS: {
|
|
12
|
+
UNSUBSCRIBE_URL: string;
|
|
13
|
+
PREFERENCES_URL: string;
|
|
14
|
+
};
|
|
15
|
+
export declare const INSIDER_ID = "iid";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
const E = {
|
|
2
|
+
UNSUBSCRIBE_LINK_TYPE: 1,
|
|
3
|
+
PREFERENCES_LINK_TYPE: 3
|
|
4
|
+
}, s = {
|
|
5
|
+
UNSUBSCRIBE_LINK_REGEX: /{{ins-unsubscribe-link}}/g,
|
|
6
|
+
DATA_OGSB_BUTTON_CSS_REGEX: "\\[data-ogsb\\]\\s*\\.es-button\\.es-button-[0-9]+\\s*\\{(?:[^\\}]*)\\}",
|
|
7
|
+
GLOBAL_UNSUBSCRIBE_LINK_REGEX: /{{ins-global-unsubscribe-link}}/g,
|
|
8
|
+
PREFERENCES_UNSUBSCRIBE_LINK_REGEX: /{{ins-preferences-unsubscribe-link}}/g
|
|
9
|
+
}, _ = {
|
|
10
|
+
UNSUBSCRIBE_URL: "https://mail.useinsider.com/user/v1/unsub",
|
|
11
|
+
PREFERENCES_URL: "https://mail.useinsider.com/user/v1/prefs"
|
|
12
|
+
};
|
|
13
|
+
export {
|
|
14
|
+
s as LINK_REGEXES,
|
|
15
|
+
E as LINK_TYPES,
|
|
16
|
+
_ as URLS
|
|
17
|
+
};
|
package/dist/guido.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
[data-v-a18ac2d3] .in-button-v2__wrapper{line-height:0}.version-history-item[data-v-ee4b9c3f]{flex-basis:200px}.version-history-wrapper[data-v-52a77eec]{gap:8px}.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}.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}.guido-loading__wrapper[data-v-
|
|
1
|
+
[data-v-a18ac2d3] .in-button-v2__wrapper{line-height:0}[data-v-b5997368] .in-segments-wrapper .in-tooltip-wrapper__box{text-align:left}.version-history-item[data-v-ee4b9c3f]{flex-basis:200px}.version-history-wrapper[data-v-52a77eec]{gap:8px}.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}.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}.guido-loading__wrapper[data-v-dced5582]{height:100%;top:75px}.guido-editor__wrapper[data-v-cebb8ab0],.guido-editor__container[data-v-cebb8ab0]{width:100%;height:calc(100vh - 128px)}.guido-editor__no-header[data-v-cebb8ab0]{height:calc(100vh - 75px)}.error-list[data-v-7a09985c]{gap:16px}[data-v-c2adc57d] .in-progress-wrapper__progress p span:last-child{display:none!important}.desktop-preview-container[data-v-2dd60b0c],[data-v-2dd60b0c] .desktop-preview-container .in-container{min-height:720px!important;height:100%}.cropped-text[data-v-f20b3a9b]{width:220px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}[data-v-d3c52b44] .vueperslides__bullets,[data-v-a408dcea] .vueperslides__bullets{pointer-events:none!important}[data-v-a408dcea] .vueperslides__parallax-wrapper{height:110px!important}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
1
|
+
const r = `.alert-message-wrapper {
|
|
2
2
|
box-shadow: none;
|
|
3
3
|
border: 1px solid var(--guido-color-gray-300);
|
|
4
4
|
color: var(--guido-color-gray-600);
|
|
@@ -16,6 +16,36 @@ const n = `.alert-message-wrapper {
|
|
|
16
16
|
color: var(--guido-color-border-onpage-message-info);
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
+
.alert-message-wrapper.warn {
|
|
20
|
+
background: var(--guido-color-background-onpage-message-warn);
|
|
21
|
+
border-color: var(--guido-color-border-onpage-message-warn);
|
|
22
|
+
color: inherit;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.alert-message-wrapper.warn ue-icon-component.icon {
|
|
26
|
+
color: var(--guido-color-border-onpage-message-warn);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.alert-message-wrapper.success {
|
|
30
|
+
background: var(--guido-color-background-onpage-message-success);
|
|
31
|
+
border-color: var(--guido-color-border-onpage-message-success);
|
|
32
|
+
color: inherit;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.alert-message-wrapper.success ue-icon-component.icon {
|
|
36
|
+
color: var(--guido-color-border-onpage-message-success);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.alert-message-wrapper.error {
|
|
40
|
+
background: var(--guido-color-background-onpage-message-error);
|
|
41
|
+
border-color: var(--guido-color-border-onpage-message-error);
|
|
42
|
+
color: inherit;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.alert-message-wrapper.error ue-icon-component.icon {
|
|
46
|
+
color: var(--guido-color-border-onpage-message-error);
|
|
47
|
+
}
|
|
48
|
+
|
|
19
49
|
.alert-message-wrapper ue-button {
|
|
20
50
|
padding: 0;
|
|
21
51
|
}
|
|
@@ -35,5 +65,5 @@ const n = `.alert-message-wrapper {
|
|
|
35
65
|
}
|
|
36
66
|
`;
|
|
37
67
|
export {
|
|
38
|
-
|
|
68
|
+
r as default
|
|
39
69
|
};
|
|
@@ -60,8 +60,28 @@ const o = `.control-shadow-wrapper:has(.button) {
|
|
|
60
60
|
color: var(--guido-color-primary-500);
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
-
.
|
|
64
|
-
|
|
63
|
+
.primary > .button {
|
|
64
|
+
border: none;
|
|
65
|
+
background-color: var(--guido-color-neutral-200);
|
|
66
|
+
color: var(--guido-color-neutral-800);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.primary > .button .icon-button {
|
|
70
|
+
color: var(--guido-color-neutral-800);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.primary > .button:hover:not(:disabled,.disabled) {
|
|
74
|
+
background-color: var(--guido-color-neutral-100);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.danger > .button {
|
|
78
|
+
background-color: var(--guido-color-danger-500);
|
|
79
|
+
color: var(--guido-color-white);
|
|
80
|
+
border: none;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.danger > .button:hover:not(:disabled,.disabled) {
|
|
84
|
+
background-color: var(--guido-color-danger-300);
|
|
65
85
|
}
|
|
66
86
|
|
|
67
87
|
ue-check-button.checked:not(.flat-white) input:checked + label {
|
|
@@ -100,6 +120,16 @@ ue-color {
|
|
|
100
120
|
ue-color .base-input {
|
|
101
121
|
width: 100%;
|
|
102
122
|
}
|
|
123
|
+
|
|
124
|
+
ue-select-text-input .select-text-input-toggle {
|
|
125
|
+
top: 0;
|
|
126
|
+
right: 0;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
ue-select-text-input .select-text-input-toggle .button {
|
|
130
|
+
justify-content: center;
|
|
131
|
+
background-color: transparent !important;
|
|
132
|
+
}
|
|
103
133
|
`;
|
|
104
134
|
export {
|
|
105
135
|
o as default
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
const n = `ue-notifications-container {
|
|
2
|
+
left: 96px;
|
|
3
|
+
margin: 0;
|
|
4
|
+
bottom: 32px;
|
|
5
|
+
top: unset;
|
|
6
|
+
width: unset;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
ue-notifications-container ue-message + ue-message {
|
|
10
|
+
margin-bottom: 24px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
ue-notifications-container .alert-message-wrapper {
|
|
14
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.07);
|
|
15
|
+
border: none;
|
|
16
|
+
padding: 16px 24px;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
ue-notifications-container .alert-message-wrapper .alert-message-main .alert-message-content {
|
|
20
|
+
width: calc(100% - 64px);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
ue-notifications-container .alert-message-wrapper .alert-message-main .alert-message-text {
|
|
24
|
+
font-size: 15px;
|
|
25
|
+
font-weight: 600;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
ue-notifications-container .alert-message-text,
|
|
29
|
+
ue-notifications-container .alert-message-wrapper ue-icon-component.icon,
|
|
30
|
+
ue-notifications-container .alert-message-wrapper ue-icon-component.icon-button {
|
|
31
|
+
color: var(--guido-color-white);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
ue-notifications-container ue-message ue-button.close {
|
|
35
|
+
margin: 0 0 0 16px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
ue-notifications-container .alert-message-wrapper.success {
|
|
39
|
+
background: var(--guido-color-background-toaster-success);
|
|
40
|
+
color: inherit;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
ue-notifications-container .alert-message-wrapper.error {
|
|
44
|
+
background: var(--guido-color-background-toaster-error);
|
|
45
|
+
color: inherit;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
ue-notifications-container .alert-message-wrapper.warn {
|
|
49
|
+
background: var(--guido-color-background-toaster-warn);
|
|
50
|
+
color: inherit;
|
|
51
|
+
}
|
|
52
|
+
`;
|
|
53
|
+
export {
|
|
54
|
+
n as default
|
|
55
|
+
};
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
const n = `ue-popup {
|
|
2
|
+
-webkit-backdrop-filter: unset;
|
|
3
|
+
backdrop-filter: unset;
|
|
4
|
+
background-color: rgba(44, 53, 70, 0.5);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
ue-popup .popup-wrapper {
|
|
8
|
+
max-width: 400px;
|
|
9
|
+
border: 1px solid var(--guido-color-neutral-200);
|
|
10
|
+
box-shadow: none;
|
|
11
|
+
background: var(--guido-color-white);
|
|
12
|
+
font-size: 15px;
|
|
13
|
+
line-height: 24px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
ue-popup .popup-title {
|
|
17
|
+
padding: 32px 56px 0 32px;
|
|
18
|
+
line-height: 24px;
|
|
19
|
+
font-size: 20px;
|
|
20
|
+
font-weight: 400;
|
|
21
|
+
border-bottom: none;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
ue-popup .confirmation .confirmation-wrapper {
|
|
25
|
+
padding: 32px;
|
|
26
|
+
gap: 16px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
ue-popup .confirmation .confirmation-actions {
|
|
30
|
+
flex-direction: row-reverse;
|
|
31
|
+
justify-content: space-between;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
ue-popup .danger > .button {
|
|
35
|
+
font-size: 15px;
|
|
36
|
+
padding: 8px 16px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
ue-popup .e2e-cancel {
|
|
40
|
+
margin-left: unset;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
ue-popup .e2e-cancel .button {
|
|
44
|
+
background-color: transparent;
|
|
45
|
+
border: none;
|
|
46
|
+
padding: 8px 0;
|
|
47
|
+
font-size: 15px;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
ue-popup .e2e-cancel .button:hover:not(:disabled,.disabled) {
|
|
51
|
+
text-decoration: underline;
|
|
52
|
+
background-color: transparent;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
ue-popup .popup-close {
|
|
56
|
+
top: 32px;
|
|
57
|
+
right: 32px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
ue-popup .popup-close .button {
|
|
61
|
+
padding: 0;
|
|
62
|
+
min-width: unset;
|
|
63
|
+
min-height: unset;
|
|
64
|
+
}
|
|
65
|
+
`;
|
|
66
|
+
export {
|
|
67
|
+
n as default
|
|
68
|
+
};
|
|
@@ -2,6 +2,10 @@ const n = `ue-wide-panel {
|
|
|
2
2
|
width: 425px;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
+
ue-main-editor-container[panel-position=SETTINGS_BLOCKS] ue-wide-panel {
|
|
6
|
+
right: calc(100% - calc(var(--ue-spacing-step, 5px) * 3) - 425px);
|
|
7
|
+
}
|
|
8
|
+
|
|
5
9
|
ue-main-tabs-panel-component .fixed-panel-header {
|
|
6
10
|
display: none;
|
|
7
11
|
}
|
|
@@ -17,7 +21,7 @@ ue-description a {
|
|
|
17
21
|
}
|
|
18
22
|
|
|
19
23
|
.stacked-panel {
|
|
20
|
-
overflow:
|
|
24
|
+
overflow: auto;
|
|
21
25
|
}
|
|
22
26
|
|
|
23
27
|
.stacked-panel-title {
|
|
@@ -12,6 +12,12 @@ const n = `.esd-x,
|
|
|
12
12
|
.ue-preview-control-wrapper ue-icon-component:not([disabled=true]):not(.stripo-static-icon):hover {
|
|
13
13
|
background: none;
|
|
14
14
|
}
|
|
15
|
+
|
|
16
|
+
.ue-email-wrapper-rounded,
|
|
17
|
+
.ue-email-wrapper-rounded-top {
|
|
18
|
+
border-radius: 0;
|
|
19
|
+
box-shadow: none;
|
|
20
|
+
}
|
|
15
21
|
`;
|
|
16
22
|
export {
|
|
17
23
|
n as default
|