@useinsider/guido 1.0.2-beta.c3f86dc → 1.0.2-beta.c50c279
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 +24 -1
- package/dist/@types/events.d.ts +6 -0
- package/dist/components/Guido.vue.js +2 -2
- package/dist/components/Guido.vue2.js +41 -39
- package/dist/components/organisms/header/RightSlot.vue.js +1 -1
- package/dist/components/organisms/header/RightSlot.vue2.js +20 -25
- package/dist/components/organisms/header/ViewOptions.vue.js +11 -11
- package/dist/components/organisms/header/ViewOptions.vue2.js +5 -5
- package/dist/components/organisms/header/version-history/ViewOptions.vue.js +11 -11
- package/dist/components/organisms/header/version-history/ViewOptions.vue2.js +5 -5
- package/dist/components/organisms/onboarding/AMPOnboarding.vue.d.ts +2 -0
- package/dist/components/organisms/onboarding/AMPOnboarding.vue.js +20 -0
- package/dist/components/organisms/onboarding/AMPOnboarding.vue2.js +37 -0
- package/dist/components/organisms/onboarding/GenericOnboarding.vue.d.ts +2 -0
- package/dist/components/organisms/onboarding/GenericOnboarding.vue.js +21 -0
- package/dist/components/organisms/onboarding/GenericOnboarding.vue2.js +83 -0
- package/dist/components/organisms/onboarding/NewVersionPopup.vue.d.ts +2 -0
- package/dist/components/organisms/onboarding/NewVersionPopup.vue.js +17 -0
- package/dist/components/organisms/onboarding/NewVersionPopup.vue2.js +30 -0
- package/dist/components/organisms/onboarding/OnboardingWrapper.vue.d.ts +2 -0
- package/dist/components/organisms/onboarding/OnboardingWrapper.vue.js +19 -0
- package/dist/components/organisms/onboarding/OnboardingWrapper.vue2.js +43 -0
- package/dist/components/organisms/onboarding/TextBlockOnboarding.vue.d.ts +2 -0
- package/dist/components/organisms/onboarding/TextBlockOnboarding.vue.js +21 -0
- package/dist/components/organisms/onboarding/TextBlockOnboarding.vue2.js +74 -0
- package/dist/components/organisms/onboarding/VersionHistoryOnboarding.vue.d.ts +2 -0
- package/dist/components/organisms/onboarding/VersionHistoryOnboarding.vue.js +20 -0
- package/dist/components/organisms/onboarding/VersionHistoryOnboarding.vue2.js +37 -0
- 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/usePartner.d.ts +1 -0
- package/dist/composables/usePartner.js +16 -9
- package/dist/composables/useRecommendation.d.ts +19 -0
- package/dist/composables/useRecommendation.js +27 -0
- package/dist/composables/useSave.d.ts +3 -0
- package/dist/composables/useSave.js +14 -0
- package/dist/composables/useStripo.js +37 -35
- package/dist/composables/useStripoEventHandler.d.ts +3 -0
- package/dist/composables/useStripoEventHandler.js +20 -0
- 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 +6 -1
- package/dist/enums/defaults.js +45 -9
- package/dist/enums/html-validator.d.ts +6 -0
- package/dist/enums/html-validator.js +7 -0
- package/dist/enums/onboarding.d.ts +1 -0
- package/dist/enums/onboarding.js +8 -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/user-modal-state.d.ts +2 -0
- package/dist/mock/api/validator.d.ts +2 -0
- package/dist/services/onboardingApi.d.ts +4 -0
- package/dist/services/onboardingApi.js +23 -0
- package/dist/static/assets/onboarding-img.svg.js +4 -0
- package/dist/stores/editor.d.ts +21 -0
- package/dist/stores/editor.js +2 -1
- package/dist/stores/onboarding.d.ts +1068 -0
- package/dist/stores/onboarding.js +95 -0
- 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/templatePreparation.js +21 -14
- package/package.json +4 -2
package/dist/stores/editor.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
6
6
|
isPreviewModeOpen: boolean;
|
|
7
7
|
editorVisualMode: string;
|
|
8
8
|
hasChanges: boolean;
|
|
9
|
+
isStripoInitialized: boolean;
|
|
9
10
|
}, {
|
|
10
11
|
isUndoButtonDisabled: (state: {
|
|
11
12
|
loadingStatus: boolean;
|
|
@@ -15,6 +16,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
15
16
|
isPreviewModeOpen: boolean;
|
|
16
17
|
editorVisualMode: string;
|
|
17
18
|
hasChanges: boolean;
|
|
19
|
+
isStripoInitialized: boolean;
|
|
18
20
|
} & import("pinia").PiniaCustomStateProperties<{
|
|
19
21
|
loadingStatus: boolean;
|
|
20
22
|
isCodeEditorOpen: boolean;
|
|
@@ -23,6 +25,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
23
25
|
isPreviewModeOpen: boolean;
|
|
24
26
|
editorVisualMode: string;
|
|
25
27
|
hasChanges: boolean;
|
|
28
|
+
isStripoInitialized: boolean;
|
|
26
29
|
}>) => boolean;
|
|
27
30
|
isRedoButtonDisabled: (state: {
|
|
28
31
|
loadingStatus: boolean;
|
|
@@ -32,6 +35,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
32
35
|
isPreviewModeOpen: boolean;
|
|
33
36
|
editorVisualMode: string;
|
|
34
37
|
hasChanges: boolean;
|
|
38
|
+
isStripoInitialized: boolean;
|
|
35
39
|
} & import("pinia").PiniaCustomStateProperties<{
|
|
36
40
|
loadingStatus: boolean;
|
|
37
41
|
isCodeEditorOpen: boolean;
|
|
@@ -40,6 +44,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
40
44
|
isPreviewModeOpen: boolean;
|
|
41
45
|
editorVisualMode: string;
|
|
42
46
|
hasChanges: boolean;
|
|
47
|
+
isStripoInitialized: boolean;
|
|
43
48
|
}>) => boolean;
|
|
44
49
|
isCodeEditorButtonDisabled: (state: {
|
|
45
50
|
loadingStatus: boolean;
|
|
@@ -49,6 +54,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
49
54
|
isPreviewModeOpen: boolean;
|
|
50
55
|
editorVisualMode: string;
|
|
51
56
|
hasChanges: boolean;
|
|
57
|
+
isStripoInitialized: boolean;
|
|
52
58
|
} & import("pinia").PiniaCustomStateProperties<{
|
|
53
59
|
loadingStatus: boolean;
|
|
54
60
|
isCodeEditorOpen: boolean;
|
|
@@ -57,6 +63,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
57
63
|
isPreviewModeOpen: boolean;
|
|
58
64
|
editorVisualMode: string;
|
|
59
65
|
hasChanges: boolean;
|
|
66
|
+
isStripoInitialized: boolean;
|
|
60
67
|
}>) => boolean;
|
|
61
68
|
isPreviewButtonDisabled: (state: {
|
|
62
69
|
loadingStatus: boolean;
|
|
@@ -66,6 +73,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
66
73
|
isPreviewModeOpen: boolean;
|
|
67
74
|
editorVisualMode: string;
|
|
68
75
|
hasChanges: boolean;
|
|
76
|
+
isStripoInitialized: boolean;
|
|
69
77
|
} & import("pinia").PiniaCustomStateProperties<{
|
|
70
78
|
loadingStatus: boolean;
|
|
71
79
|
isCodeEditorOpen: boolean;
|
|
@@ -74,6 +82,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
74
82
|
isPreviewModeOpen: boolean;
|
|
75
83
|
editorVisualMode: string;
|
|
76
84
|
hasChanges: boolean;
|
|
85
|
+
isStripoInitialized: boolean;
|
|
77
86
|
}>) => boolean;
|
|
78
87
|
isViewOptionsDisabled: (state: {
|
|
79
88
|
loadingStatus: boolean;
|
|
@@ -83,6 +92,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
83
92
|
isPreviewModeOpen: boolean;
|
|
84
93
|
editorVisualMode: string;
|
|
85
94
|
hasChanges: boolean;
|
|
95
|
+
isStripoInitialized: boolean;
|
|
86
96
|
} & import("pinia").PiniaCustomStateProperties<{
|
|
87
97
|
loadingStatus: boolean;
|
|
88
98
|
isCodeEditorOpen: boolean;
|
|
@@ -91,6 +101,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
91
101
|
isPreviewModeOpen: boolean;
|
|
92
102
|
editorVisualMode: string;
|
|
93
103
|
hasChanges: boolean;
|
|
104
|
+
isStripoInitialized: boolean;
|
|
94
105
|
}>) => boolean;
|
|
95
106
|
isVersionHistoryButtonDisabled: (state: {
|
|
96
107
|
loadingStatus: boolean;
|
|
@@ -100,6 +111,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
100
111
|
isPreviewModeOpen: boolean;
|
|
101
112
|
editorVisualMode: string;
|
|
102
113
|
hasChanges: boolean;
|
|
114
|
+
isStripoInitialized: boolean;
|
|
103
115
|
} & import("pinia").PiniaCustomStateProperties<{
|
|
104
116
|
loadingStatus: boolean;
|
|
105
117
|
isCodeEditorOpen: boolean;
|
|
@@ -108,6 +120,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
108
120
|
isPreviewModeOpen: boolean;
|
|
109
121
|
editorVisualMode: string;
|
|
110
122
|
hasChanges: boolean;
|
|
123
|
+
isStripoInitialized: boolean;
|
|
111
124
|
}>) => boolean;
|
|
112
125
|
isExportButtonDisabled: (state: {
|
|
113
126
|
loadingStatus: boolean;
|
|
@@ -117,6 +130,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
117
130
|
isPreviewModeOpen: boolean;
|
|
118
131
|
editorVisualMode: string;
|
|
119
132
|
hasChanges: boolean;
|
|
133
|
+
isStripoInitialized: boolean;
|
|
120
134
|
} & import("pinia").PiniaCustomStateProperties<{
|
|
121
135
|
loadingStatus: boolean;
|
|
122
136
|
isCodeEditorOpen: boolean;
|
|
@@ -125,6 +139,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
125
139
|
isPreviewModeOpen: boolean;
|
|
126
140
|
editorVisualMode: string;
|
|
127
141
|
hasChanges: boolean;
|
|
142
|
+
isStripoInitialized: boolean;
|
|
128
143
|
}>) => boolean;
|
|
129
144
|
isSaveAsButtonDisabled: (state: {
|
|
130
145
|
loadingStatus: boolean;
|
|
@@ -134,6 +149,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
134
149
|
isPreviewModeOpen: boolean;
|
|
135
150
|
editorVisualMode: string;
|
|
136
151
|
hasChanges: boolean;
|
|
152
|
+
isStripoInitialized: boolean;
|
|
137
153
|
} & import("pinia").PiniaCustomStateProperties<{
|
|
138
154
|
loadingStatus: boolean;
|
|
139
155
|
isCodeEditorOpen: boolean;
|
|
@@ -142,6 +158,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
142
158
|
isPreviewModeOpen: boolean;
|
|
143
159
|
editorVisualMode: string;
|
|
144
160
|
hasChanges: boolean;
|
|
161
|
+
isStripoInitialized: boolean;
|
|
145
162
|
}>) => boolean;
|
|
146
163
|
isTestButtonDisabled: (state: {
|
|
147
164
|
loadingStatus: boolean;
|
|
@@ -151,6 +168,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
151
168
|
isPreviewModeOpen: boolean;
|
|
152
169
|
editorVisualMode: string;
|
|
153
170
|
hasChanges: boolean;
|
|
171
|
+
isStripoInitialized: boolean;
|
|
154
172
|
} & import("pinia").PiniaCustomStateProperties<{
|
|
155
173
|
loadingStatus: boolean;
|
|
156
174
|
isCodeEditorOpen: boolean;
|
|
@@ -159,6 +177,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
159
177
|
isPreviewModeOpen: boolean;
|
|
160
178
|
editorVisualMode: string;
|
|
161
179
|
hasChanges: boolean;
|
|
180
|
+
isStripoInitialized: boolean;
|
|
162
181
|
}>) => boolean;
|
|
163
182
|
isSaveButtonDisabled: (state: {
|
|
164
183
|
loadingStatus: boolean;
|
|
@@ -168,6 +187,7 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
168
187
|
isPreviewModeOpen: boolean;
|
|
169
188
|
editorVisualMode: string;
|
|
170
189
|
hasChanges: boolean;
|
|
190
|
+
isStripoInitialized: boolean;
|
|
171
191
|
} & import("pinia").PiniaCustomStateProperties<{
|
|
172
192
|
loadingStatus: boolean;
|
|
173
193
|
isCodeEditorOpen: boolean;
|
|
@@ -176,5 +196,6 @@ export declare const useEditorStore: import("pinia").StoreDefinition<"editor", {
|
|
|
176
196
|
isPreviewModeOpen: boolean;
|
|
177
197
|
editorVisualMode: string;
|
|
178
198
|
hasChanges: boolean;
|
|
199
|
+
isStripoInitialized: boolean;
|
|
179
200
|
}>) => boolean;
|
|
180
201
|
}, {}>;
|