@useinsider/guido 2.0.0-beta.6b24cb0 → 2.0.0-beta.6da018c
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/@types/config/schemas.js +36 -50
- package/dist/components/Guido.vue.js +1 -1
- package/dist/components/Guido.vue2.js +59 -57
- package/dist/components/organisms/base/Toaster.vue.js +6 -6
- package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue.js +6 -6
- package/dist/components/organisms/email-preview/desktop-preview/EmailSizeIndicator.vue2.js +2 -2
- package/dist/components/organisms/header/RightSlot.vue2.js +10 -10
- package/dist/composables/useConfig.js +27 -29
- package/dist/composables/useSave.js +11 -13
- package/dist/extensions/Blocks/CouponBlock/constants.js +4 -0
- package/dist/extensions/Blocks/CouponBlock/controls/index.js +29 -0
- package/dist/extensions/Blocks/CouponBlock/extension.js +5 -4
- package/dist/extensions/Blocks/CouponBlock/settingsPanel.js +20 -14
- package/dist/extensions/Blocks/CouponBlock/template.js +22 -11
- package/dist/extensions/Blocks/Unsubscribe/extension.js +9 -9
- package/dist/extensions/Blocks/controlFactories.js +122 -111
- package/dist/guido.css +1 -1
- package/dist/node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js +57 -52
- package/dist/src/@types/config/index.d.ts +2 -2
- package/dist/src/@types/config/schemas.d.ts +0 -26
- package/dist/src/@types/config/types.d.ts +1 -7
- package/dist/src/composables/useConfig.d.ts +0 -6
- package/dist/src/extensions/Blocks/CouponBlock/constants.d.ts +14 -0
- package/dist/src/extensions/Blocks/CouponBlock/controls/index.d.ts +108 -0
- package/dist/src/extensions/Blocks/CouponBlock/template.d.ts +1 -1
- package/dist/src/extensions/Blocks/controlFactories.d.ts +30 -7
- package/dist/src/stores/config.d.ts +1 -146
- package/dist/static/styles/components/button.css.js +1 -1
- package/dist/stores/config.js +0 -7
- package/package.json +1 -1
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { ExtensionBuilder as o } from "../../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
|
|
2
2
|
import { CouponBlock as t } from "./block.js";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
|
|
3
|
+
import { TextAlignControl as n, TextColorControl as r, TextSizeControl as l, TextStyleControl as d, TextFontFamilyControl as e, TextBackgroundControl as i, TextPaddingsControl as C, TextLineSpacingControl as a } from "./controls/index.js";
|
|
4
|
+
import { CouponIconsRegistry as s } from "./iconsRegistry.js";
|
|
5
|
+
import { CouponBlockSettings as m } from "./settingsPanel.js";
|
|
6
|
+
const u = new o().addBlock(t).withSettingsPanelRegistry(m).addControl(n).addControl(r).addControl(l).addControl(d).addControl(e).addControl(i).addControl(C).addControl(a).withIconsRegistry(s).build();
|
|
6
7
|
export {
|
|
7
|
-
|
|
8
|
+
u as default
|
|
8
9
|
};
|
|
@@ -1,24 +1,30 @@
|
|
|
1
|
-
import { SettingsPanelRegistry as
|
|
2
|
-
import { COUPON_BLOCK_ID as
|
|
3
|
-
|
|
1
|
+
import { SettingsPanelRegistry as n, SettingsPanelTab as o, SettingsTab as t } from "../../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
|
|
2
|
+
import { COUPON_BLOCK_ID as E } from "./block.js";
|
|
3
|
+
import { CouponControlId as T } from "./constants.js";
|
|
4
|
+
class i extends n {
|
|
4
5
|
registerBlockControls(e) {
|
|
5
|
-
e[
|
|
6
|
+
e[E] = [
|
|
6
7
|
new o(
|
|
7
|
-
|
|
8
|
+
t.SETTINGS,
|
|
8
9
|
[
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
10
|
+
T.TEXT_STYLE,
|
|
11
|
+
T.TEXT_ALIGN,
|
|
12
|
+
T.TEXT_PADDINGS
|
|
13
|
+
]
|
|
14
|
+
),
|
|
15
|
+
new o(
|
|
16
|
+
t.STYLES,
|
|
17
|
+
[
|
|
18
|
+
T.TEXT_BACKGROUND,
|
|
19
|
+
T.TEXT_FONT_FAMILY,
|
|
20
|
+
T.TEXT_LINE_SPACING,
|
|
21
|
+
T.TEXT_SIZE,
|
|
22
|
+
T.TEXT_COLOR
|
|
17
23
|
]
|
|
18
24
|
)
|
|
19
25
|
];
|
|
20
26
|
}
|
|
21
27
|
}
|
|
22
28
|
export {
|
|
23
|
-
|
|
29
|
+
i as CouponBlockSettings
|
|
24
30
|
};
|
|
@@ -1,18 +1,29 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
esd-extension-block-id="
|
|
1
|
+
import { BlockType as o } from "../../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
|
|
2
|
+
import { COUPON_BLOCK_ID as e } from "./block.js";
|
|
3
|
+
const t = `
|
|
4
|
+
<${o.BLOCK_TEXT}
|
|
5
|
+
class="coupon-block ins-coupon-code coupon-block-v2 es-p10"
|
|
6
|
+
align="center"
|
|
7
|
+
esd-extension-block-id="${e}">
|
|
8
|
+
<p
|
|
9
|
+
path="1"
|
|
10
|
+
contenteditable="false"
|
|
11
|
+
style="font-size: 16px; color: #333333;">
|
|
12
|
+
<strong path="1,0">{@COUPON_CODE}</strong>
|
|
13
|
+
</p>
|
|
14
|
+
</${o.BLOCK_TEXT}>
|
|
15
|
+
`, l = `
|
|
16
|
+
<td
|
|
17
|
+
class="coupon-block coupon-block-v2 ins-coupon-code esd-block-text esd-extension-block"
|
|
18
|
+
esd-extension-block-id="${e}"
|
|
8
19
|
>
|
|
9
20
|
<p class="ins-title" contenteditable="false">{@COUPON_CODE}</p>
|
|
10
21
|
</td>
|
|
11
22
|
`;
|
|
12
|
-
function
|
|
13
|
-
return
|
|
23
|
+
function s() {
|
|
24
|
+
return t;
|
|
14
25
|
}
|
|
15
26
|
export {
|
|
16
|
-
|
|
17
|
-
|
|
27
|
+
l as default,
|
|
28
|
+
s as getDefaultTemplate
|
|
18
29
|
};
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import { ExtensionBuilder as e } from "../../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
|
|
2
2
|
import { UnsubscribeBlock as i } from "./block.js";
|
|
3
3
|
import { UnsubscribeControl as t } from "./control.js";
|
|
4
|
-
import { PreviewUIElement as
|
|
5
|
-
import { UnsubscribeIconsRegistry as
|
|
6
|
-
import { SettingsPanel as
|
|
4
|
+
import { PreviewUIElement as o } from "./elements/preview.js";
|
|
5
|
+
import { UnsubscribeIconsRegistry as r } from "./iconsRegistry.js";
|
|
6
|
+
import { SettingsPanel as s } from "./settingsPanel.js";
|
|
7
7
|
import n from "./styles.css.js";
|
|
8
|
-
import { UnsubscribeTagRegistry as
|
|
9
|
-
const
|
|
8
|
+
import { UnsubscribeTagRegistry as l } from "./tagRegistry.js";
|
|
9
|
+
const f = new e().addBlock(i).withSettingsPanelRegistry(s).addControl(t).addUiElement(o).addStyles(n).withLocalization({
|
|
10
10
|
en: {
|
|
11
|
-
"Unsubscribe Block": "Unsubscribe",
|
|
12
|
-
"Unsubscribe Block Description": "
|
|
11
|
+
"Unsubscribe Block": "Unsubscribe Block",
|
|
12
|
+
"Unsubscribe Block Description": "Add an unsubscribe link to your email",
|
|
13
13
|
"Select Template": "Select Template",
|
|
14
14
|
"Unsubscribe Template": "Unsubscribe Template",
|
|
15
15
|
Showing: "Showing",
|
|
16
16
|
of: "of"
|
|
17
17
|
}
|
|
18
|
-
}).withUiElementTagRegistry(
|
|
18
|
+
}).withUiElementTagRegistry(l).withIconsRegistry(r).build();
|
|
19
19
|
export {
|
|
20
|
-
|
|
20
|
+
f as default
|
|
21
21
|
};
|
|
@@ -1,223 +1,234 @@
|
|
|
1
|
-
import { TextAlignBuiltInControl as
|
|
2
|
-
function
|
|
3
|
-
return class extends
|
|
1
|
+
import { TextAlignBuiltInControl as o, TextColorBuiltInControl as l, TextSizeBuiltInControl as s, TextStyleBuiltInControl as u, TextFontFamilyBuiltInControl as i, ButtonBackgroundColorBuiltInControl as c, TextPaddingsBuiltInControl as d, ImageSizeBuiltInControl as a, ImageMarginsBuiltInControl as g, ButtonAlignBuiltInControl as x, ButtonBorderBuiltInControl as C, ButtonBorderRadiusBuiltInControl as B, ButtonColorBuiltInControl as T, ButtonFontFamilyBuiltInControl as I, ButtonMarginsBuiltInControl as f, ButtonPaddingsBuiltInControl as m, ButtonTextBuiltInControl as y, ButtonTextSizeBuiltInControl as A, ButtonTextStyleAndFontColorBuiltInControl as S, ButtonFitToContainerBuiltInControl as N, TextLineSpacingBuiltInControl as b } from "../../node_modules/@stripoinc/ui-editor-extensions/dist/esm/index.js";
|
|
2
|
+
function $(r, t, n) {
|
|
3
|
+
return class extends o {
|
|
4
4
|
getId() {
|
|
5
|
-
return
|
|
5
|
+
return r;
|
|
6
6
|
}
|
|
7
|
-
getTargetNodes(
|
|
8
|
-
return
|
|
7
|
+
getTargetNodes(e) {
|
|
8
|
+
return !t || !n ? [e] : e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
9
9
|
}
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
-
function
|
|
12
|
+
function k(r, t, n) {
|
|
13
13
|
return class extends l {
|
|
14
14
|
getId() {
|
|
15
|
-
return
|
|
15
|
+
return r;
|
|
16
16
|
}
|
|
17
|
-
getTargetNodes(
|
|
18
|
-
return
|
|
17
|
+
getTargetNodes(e) {
|
|
18
|
+
return !t || !n ? [e] : e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
19
19
|
}
|
|
20
20
|
};
|
|
21
21
|
}
|
|
22
|
-
function
|
|
22
|
+
function p(r, t, n) {
|
|
23
23
|
return class extends s {
|
|
24
24
|
getId() {
|
|
25
|
-
return
|
|
25
|
+
return r;
|
|
26
26
|
}
|
|
27
|
-
getTargetNodes(
|
|
28
|
-
return
|
|
27
|
+
getTargetNodes(e) {
|
|
28
|
+
return !t || !n ? [e] : e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
29
29
|
}
|
|
30
30
|
};
|
|
31
31
|
}
|
|
32
|
-
function
|
|
33
|
-
return class extends
|
|
32
|
+
function F(r, t, n) {
|
|
33
|
+
return class extends u {
|
|
34
34
|
getId() {
|
|
35
|
-
return
|
|
35
|
+
return r;
|
|
36
36
|
}
|
|
37
|
-
getTargetNodes(
|
|
38
|
-
return
|
|
37
|
+
getTargetNodes(e) {
|
|
38
|
+
return !t || !n ? [e] : e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
39
39
|
}
|
|
40
40
|
};
|
|
41
41
|
}
|
|
42
|
-
function
|
|
43
|
-
return class extends
|
|
42
|
+
function z(r, t, n) {
|
|
43
|
+
return class extends i {
|
|
44
44
|
getId() {
|
|
45
|
-
return
|
|
45
|
+
return r;
|
|
46
46
|
}
|
|
47
|
-
getTargetNodes(
|
|
48
|
-
return
|
|
47
|
+
getTargetNodes(e) {
|
|
48
|
+
return !t || !n ? [e] : e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
49
49
|
}
|
|
50
50
|
};
|
|
51
51
|
}
|
|
52
|
-
function
|
|
53
|
-
return class extends
|
|
52
|
+
function M(r, t, n) {
|
|
53
|
+
return class extends c {
|
|
54
54
|
getId() {
|
|
55
|
-
return
|
|
55
|
+
return r;
|
|
56
56
|
}
|
|
57
|
-
getTargetNodes(
|
|
58
|
-
return
|
|
57
|
+
getTargetNodes(e) {
|
|
58
|
+
return !t || !n ? [e] : e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
59
59
|
}
|
|
60
60
|
};
|
|
61
61
|
}
|
|
62
|
-
function
|
|
62
|
+
function P(r, t, n) {
|
|
63
63
|
return class extends d {
|
|
64
64
|
getId() {
|
|
65
|
-
return
|
|
65
|
+
return r;
|
|
66
|
+
}
|
|
67
|
+
getTargetNodes(e) {
|
|
68
|
+
return !t || !n ? [e] : e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
69
|
+
}
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
function L(r, t, n) {
|
|
73
|
+
return class extends b {
|
|
74
|
+
getId() {
|
|
75
|
+
return r;
|
|
66
76
|
}
|
|
67
|
-
getTargetNodes(
|
|
68
|
-
return
|
|
77
|
+
getTargetNodes(e) {
|
|
78
|
+
return [e];
|
|
69
79
|
}
|
|
70
80
|
};
|
|
71
81
|
}
|
|
72
|
-
function
|
|
82
|
+
function R(r, t, n = ".ins-recommendation-product-container") {
|
|
73
83
|
return class extends x {
|
|
74
84
|
getId() {
|
|
75
|
-
return
|
|
85
|
+
return r;
|
|
76
86
|
}
|
|
77
|
-
getTargetNodes(
|
|
78
|
-
return
|
|
87
|
+
getTargetNodes(e) {
|
|
88
|
+
return e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
79
89
|
}
|
|
80
90
|
};
|
|
81
91
|
}
|
|
82
|
-
function
|
|
83
|
-
return class extends
|
|
92
|
+
function h(r, t, n = ".ins-recommendation-product-container") {
|
|
93
|
+
return class extends T {
|
|
84
94
|
getId() {
|
|
85
|
-
return
|
|
95
|
+
return r;
|
|
86
96
|
}
|
|
87
|
-
getTargetNodes(
|
|
88
|
-
return
|
|
97
|
+
getTargetNodes(e) {
|
|
98
|
+
return e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
89
99
|
}
|
|
90
100
|
};
|
|
91
101
|
}
|
|
92
|
-
function
|
|
102
|
+
function j(r, t, n = ".ins-recommendation-product-container") {
|
|
93
103
|
return class extends C {
|
|
94
104
|
getId() {
|
|
95
|
-
return
|
|
105
|
+
return r;
|
|
96
106
|
}
|
|
97
|
-
getTargetNodes(
|
|
98
|
-
return
|
|
107
|
+
getTargetNodes(e) {
|
|
108
|
+
return e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
99
109
|
}
|
|
100
110
|
};
|
|
101
111
|
}
|
|
102
|
-
function
|
|
112
|
+
function v(r, t, n = ".ins-recommendation-product-container") {
|
|
103
113
|
return class extends B {
|
|
104
114
|
getId() {
|
|
105
|
-
return
|
|
115
|
+
return r;
|
|
106
116
|
}
|
|
107
|
-
getTargetNodes(
|
|
108
|
-
return
|
|
117
|
+
getTargetNodes(e) {
|
|
118
|
+
return e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
109
119
|
}
|
|
110
120
|
};
|
|
111
121
|
}
|
|
112
|
-
function
|
|
113
|
-
return class extends
|
|
122
|
+
function w(r, t, n = ".ins-recommendation-product-container") {
|
|
123
|
+
return class extends I {
|
|
114
124
|
getId() {
|
|
115
|
-
return
|
|
125
|
+
return r;
|
|
116
126
|
}
|
|
117
|
-
getTargetNodes(
|
|
118
|
-
return
|
|
127
|
+
getTargetNodes(e) {
|
|
128
|
+
return e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
119
129
|
}
|
|
120
130
|
};
|
|
121
131
|
}
|
|
122
|
-
function
|
|
123
|
-
return class extends
|
|
132
|
+
function D(r, t, n = ".ins-recommendation-product-container") {
|
|
133
|
+
return class extends f {
|
|
124
134
|
getId() {
|
|
125
|
-
return
|
|
135
|
+
return r;
|
|
126
136
|
}
|
|
127
|
-
getTargetNodes(
|
|
128
|
-
return
|
|
137
|
+
getTargetNodes(e) {
|
|
138
|
+
return e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
129
139
|
}
|
|
130
140
|
};
|
|
131
141
|
}
|
|
132
|
-
function
|
|
133
|
-
return class extends
|
|
142
|
+
function E(r, t, n = ".ins-recommendation-product-container") {
|
|
143
|
+
return class extends m {
|
|
134
144
|
getId() {
|
|
135
|
-
return
|
|
145
|
+
return r;
|
|
136
146
|
}
|
|
137
|
-
getTargetNodes(
|
|
138
|
-
return
|
|
147
|
+
getTargetNodes(e) {
|
|
148
|
+
return e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
139
149
|
}
|
|
140
150
|
};
|
|
141
151
|
}
|
|
142
|
-
function
|
|
152
|
+
function G(r, t, n = ".ins-recommendation-product-container") {
|
|
143
153
|
return class extends y {
|
|
144
154
|
getId() {
|
|
145
|
-
return
|
|
155
|
+
return r;
|
|
146
156
|
}
|
|
147
|
-
getTargetNodes(
|
|
148
|
-
return
|
|
157
|
+
getTargetNodes(e) {
|
|
158
|
+
return e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
149
159
|
}
|
|
150
160
|
};
|
|
151
161
|
}
|
|
152
|
-
function
|
|
162
|
+
function H(r, t, n = ".ins-recommendation-product-container") {
|
|
153
163
|
return class extends A {
|
|
154
164
|
getId() {
|
|
155
|
-
return
|
|
165
|
+
return r;
|
|
156
166
|
}
|
|
157
|
-
getTargetNodes(
|
|
158
|
-
return
|
|
167
|
+
getTargetNodes(e) {
|
|
168
|
+
return e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
159
169
|
}
|
|
160
170
|
};
|
|
161
171
|
}
|
|
162
|
-
function
|
|
163
|
-
return class extends
|
|
172
|
+
function J(r, t, n) {
|
|
173
|
+
return class extends S {
|
|
164
174
|
getId() {
|
|
165
|
-
return
|
|
175
|
+
return r;
|
|
166
176
|
}
|
|
167
|
-
getTargetNodes(
|
|
168
|
-
return
|
|
177
|
+
getTargetNodes(e) {
|
|
178
|
+
return e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
169
179
|
}
|
|
170
180
|
};
|
|
171
181
|
}
|
|
172
|
-
function
|
|
173
|
-
return class extends
|
|
182
|
+
function K(r, t, n) {
|
|
183
|
+
return class extends N {
|
|
174
184
|
getId() {
|
|
175
|
-
return
|
|
185
|
+
return r;
|
|
176
186
|
}
|
|
177
|
-
getTargetNodes(
|
|
178
|
-
return
|
|
187
|
+
getTargetNodes(e) {
|
|
188
|
+
return e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
179
189
|
}
|
|
180
190
|
};
|
|
181
191
|
}
|
|
182
|
-
function
|
|
192
|
+
function O(r, t, n) {
|
|
183
193
|
return class extends a {
|
|
184
194
|
getId() {
|
|
185
|
-
return
|
|
195
|
+
return r;
|
|
186
196
|
}
|
|
187
|
-
getTargetNodes(
|
|
188
|
-
return
|
|
197
|
+
getTargetNodes(e) {
|
|
198
|
+
return e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
189
199
|
}
|
|
190
200
|
};
|
|
191
201
|
}
|
|
192
|
-
function
|
|
202
|
+
function Q(r, t, n) {
|
|
193
203
|
return class extends g {
|
|
194
204
|
getId() {
|
|
195
|
-
return
|
|
205
|
+
return r;
|
|
196
206
|
}
|
|
197
|
-
getTargetNodes(
|
|
198
|
-
return
|
|
207
|
+
getTargetNodes(e) {
|
|
208
|
+
return e.closest(n).querySelectorAll(`[esd-extension-block-id="${t}"]`);
|
|
199
209
|
}
|
|
200
210
|
};
|
|
201
211
|
}
|
|
202
212
|
export {
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
p as
|
|
213
|
+
R as createButtonAlignControl,
|
|
214
|
+
j as createButtonBorderControl,
|
|
215
|
+
v as createButtonBorderRadiusControl,
|
|
216
|
+
h as createButtonColorControl,
|
|
217
|
+
K as createButtonFitToContainerControl,
|
|
218
|
+
w as createButtonFontFamilyControl,
|
|
219
|
+
D as createButtonMarginsControl,
|
|
220
|
+
E as createButtonPaddingsControl,
|
|
221
|
+
G as createButtonTextControl,
|
|
222
|
+
H as createButtonTextSizeControl,
|
|
223
|
+
J as createButtonTextStyleAndFontColorControl,
|
|
224
|
+
Q as createImageMarginsControl,
|
|
225
|
+
O as createImageSizeControl,
|
|
226
|
+
P as createPaddingsControl,
|
|
227
|
+
$ as createTextAlignControl,
|
|
228
|
+
M as createTextBackgroundColorControl,
|
|
229
|
+
k as createTextColorControl,
|
|
230
|
+
z as createTextFontFamilyControl,
|
|
231
|
+
L as createTextLineSpacingControl,
|
|
232
|
+
p as createTextSizeControl,
|
|
233
|
+
F as createTextStyleControl
|
|
223
234
|
};
|
package/dist/guido.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.gap-16[data-v-6562e38c],.gap-16[data-v-1ccb6d4a]{gap:16px}[data-v-06e6f7a7] .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-07c4b2d8]{height:100%;top:75px!important;bottom:0!important}.guido-editor__wrapper[data-v-
|
|
1
|
+
.gap-16[data-v-6562e38c],.gap-16[data-v-1ccb6d4a]{gap:16px}[data-v-06e6f7a7] .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-07c4b2d8]{height:100%;top:75px!important;bottom:0!important}.guido-editor__wrapper[data-v-9cd25be3]{position:relative;width:100%;height:calc(100vh - 128px)}.guido-editor__container[data-v-9cd25be3]{width:100%;height:calc(100vh - 128px)}.guido-editor__no-header[data-v-9cd25be3]{height:calc(100vh - 75px)}[data-v-293f1c47] .in-breadcrumb-wrapper__links{cursor:pointer}.templates-wrapper[data-v-a86fc486]{gap:16px;grid-template-columns:repeat(3,1fr)}.templates-wrapper .template-wrapper[data-v-a86fc486]{cursor:pointer}.templates-wrapper .template-wrapper .template-container[data-v-a86fc486]{height:274px;padding:2px;transition:none}.templates-wrapper .template-wrapper .template-container.selected[data-v-a86fc486]{padding:1px}.templates-wrapper .template-wrapper .template-container .thumbnail[data-v-a86fc486]{object-fit:cover;transform:scale(1)}[data-v-bb3bb07c] .guido__verion-history-view-option-selection-desktop svg,[data-v-bb3bb07c] .guido__verion-history-view-option-selection-mobile svg{margin:0 0 0 2px}[data-v-bb3bb07c] .in-segments-wrapper__button_selected,[data-v-bb3bb07c] .in-segments-wrapper__button_selected:hover{background-color:#dae1fb}.error-list[data-v-7a09985c]{gap:16px}[data-v-eb2f9f20] .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-4b876c1b]{width:220px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}[data-v-d3c52b44] .vueperslides__bullets,[data-v-dd1a237a] .vueperslides__bullets{pointer-events:none!important}[data-v-dd1a237a] .vueperslides__parallax-wrapper{height:110px!important}[data-v-a408dcea] .vueperslides__bullets{pointer-events:none!important}[data-v-a408dcea] .vueperslides__parallax-wrapper{height:110px!important}
|