@myissue/vue-website-page-builder 3.3.73 → 3.3.74

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myissue/vue-website-page-builder",
3
- "version": "3.3.73",
3
+ "version": "3.3.74",
4
4
  "description": "Vue 3 page builder component with drag & drop functionality.",
5
5
  "type": "module",
6
6
  "main": "./dist/vue-website-page-builder.umd.cjs",
@@ -429,7 +429,7 @@ onMounted(async () => {
429
429
 
430
430
  <template>
431
431
  <div
432
- class="pbx-font-sans pbx-max-w-full pbx-border-solid pbx-border pbx-border-gray-400 pbx-inset-x-0 pbx-z-10 pbx-bg-white pbx-overflow-x-auto pbx-h-full"
432
+ class="pbx-font-sans pbx-text-black pbx-max-w-full pbx-border-solid pbx-border pbx-border-gray-400 pbx-inset-x-0 pbx-z-10 pbx-bg-white pbx-overflow-x-auto pbx-h-full"
433
433
  >
434
434
  <GlobalLoader
435
435
  v-if="(getIsLoadingGlobal && !openAppNotStartedModal) || isLoadingLang"
@@ -457,7 +457,7 @@ onMounted(async () => {
457
457
  ></BuilderComponents>
458
458
 
459
459
  <ModalBuilder
460
- title="{{ translate('Preview') }}"
460
+ title="Desktop"
461
461
  :showModalBuilder="openPageBuilderPreviewModal"
462
462
  @closeMainModalBuilder="firstPageBuilderPreviewModalButton"
463
463
  maxWidth="screen"
@@ -466,7 +466,7 @@ onMounted(async () => {
466
466
  </ModalBuilder>
467
467
 
468
468
  <ModalBuilder
469
- title="{{ translate('Mobile') }}"
469
+ title="Mobile"
470
470
  :showModalBuilder="openPageBuilderPreviewMobile"
471
471
  @closeMainModalBuilder="firstPageBuilderPreviewModalButtonMobile"
472
472
  maxWidth="lg"
@@ -55,9 +55,8 @@ const configPageBuilder = {
55
55
  } as const
56
56
 
57
57
  onMounted(async () => {
58
- // const result = await pageBuilderService.startBuilder(configPageBuilder, components)
59
- const result = await pageBuilderService.startBuilder(configPageBuilder)
60
- console.log('Page Builder inspect the result for message, status, or error::', result)
58
+ const result = await pageBuilderService.startBuilder(configPageBuilder, components)
59
+ console.log('Page Builder result for message, status, or error::', result)
61
60
  })
62
61
  </script>
63
62