@retailrocketgroup/retailrocket-edit.multicast-vue-email-template-render 5.0.384767 → 6.0.388330-dev
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/.turbo/turbo-build.log +4 -4
- package/dist/assets/index.css +1 -1
- package/dist/assets/index.js +204 -205
- package/package.json +1 -1
- package/src/editMulticastEmailTemplate.ts +4 -4
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@ import { createApp } from 'vue';
|
|
|
6
6
|
import { createVuetify } from 'vuetify';
|
|
7
7
|
import { ClickOutside } from 'vuetify/directives';
|
|
8
8
|
import { createSimpleDataForm, matcherFactory } from '@easy-wizzy/core';
|
|
9
|
-
import {
|
|
9
|
+
import { WysiwygTemplateEditor } from '@easy-wizzy/core';
|
|
10
10
|
import { expressionEvaluatorFactory } from '@easy-wizzy/core';
|
|
11
11
|
import { listExpressionEvaluatorFactory } from '@easy-wizzy/core';
|
|
12
12
|
import { numberExpressionEvaluatorDelegate } from '@easy-wizzy/core';
|
|
@@ -22,7 +22,7 @@ import { defaultComponentLibraryFactory } from '@easy-wizzy/component-library';
|
|
|
22
22
|
import type { ApiMachineFetchDelegate } from '@easy-wizzy/common-app';
|
|
23
23
|
|
|
24
24
|
import { apiMachineFetchFactory, variableSelectorDepsFactory } from '@easy-wizzy/common-app';
|
|
25
|
-
import {
|
|
25
|
+
import { wysiwygTemplateEditorDepsFactory } from '@easy-wizzy/common-app';
|
|
26
26
|
import { wysiwygTemplateEditorBffClientFactory } from '@easy-wizzy/common-app';
|
|
27
27
|
import { productImageUrlBuilderExpressionEvaluatorFactory } from '@easy-wizzy/common-app';
|
|
28
28
|
|
|
@@ -186,7 +186,7 @@ const dataStructExpressionEvaluator = dataStructBuilderExpressionEvaluatorFactor
|
|
|
186
186
|
});
|
|
187
187
|
|
|
188
188
|
const app = createApp(
|
|
189
|
-
|
|
189
|
+
WysiwygTemplateEditor,
|
|
190
190
|
{
|
|
191
191
|
onTemplateReset: () => {
|
|
192
192
|
//eslint-disable-next-line no-console
|
|
@@ -194,7 +194,7 @@ const app = createApp(
|
|
|
194
194
|
resetTemplate();
|
|
195
195
|
},
|
|
196
196
|
deps:
|
|
197
|
-
|
|
197
|
+
wysiwygTemplateEditorDepsFactory<
|
|
198
198
|
MulticastListExpressionDataSource,
|
|
199
199
|
MulticastNumberExpressionDataSource,
|
|
200
200
|
MulticastStringExpressionDataSource
|