@myissue/vue-website-page-builder 3.3.36 → 3.3.37
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/vue-website-page-builder.css +1 -1
- package/dist/vue-website-page-builder.js +20 -20
- package/dist/vue-website-page-builder.umd.cjs +5 -5
- package/package.json +1 -1
- package/src/Components/PageBuilder/DefaultComponents/DefaultBuilderComponents.vue +2 -2
- package/src/Components/PageBuilder/EditorMenu/Editables/BackgroundColorEditor.vue +1 -1
- package/src/Components/PageBuilder/EditorMenu/Editables/Borders.vue +1 -1
- package/src/Components/PageBuilder/EditorMenu/Editables/ClassEditor.vue +1 -1
- package/src/Components/PageBuilder/EditorMenu/Editables/LinkEditor.vue +1 -1
- package/src/Components/PageBuilder/EditorMenu/Editables/TextColorEditor.vue +1 -1
- package/src/Components/PageBuilder/EditorMenu/EditorAccordion.vue +2 -5
- package/src/Components/PageBuilder/EditorMenu/RightSidebarEditor.vue +1 -1
- package/src/Components/PageBuilder/Settings/AdvancedPageBuilderSettings.vue +3 -3
- package/src/Components/PageBuilder/ToolbarOption/ToolbarOption.vue +1 -1
- package/src/Components/TipTap/TipTapInput.vue +2 -2
- package/src/DemoComponents/DemoUnsplash.vue +2 -2
- package/src/PageBuilder/PageBuilder.vue +3 -3
package/package.json
CHANGED
|
@@ -53,7 +53,7 @@ const getSvgPreview = (title: string) => {
|
|
|
53
53
|
<div
|
|
54
54
|
v-for="helper in componentHelpers"
|
|
55
55
|
:key="helper.title"
|
|
56
|
-
class="pbx-border
|
|
56
|
+
class="pbx-border-solid pbx-border-gray-400 pbx-overflow-hidden hover:pbx-border-myPrimaryLinkColor pbx-duration-100 pbx-cursor-pointer pbx-p-4"
|
|
57
57
|
@click="handleDropComponent(helper)"
|
|
58
58
|
>
|
|
59
59
|
<div class="pbx-max-h-72 pbx-cursor-pointer pbx-object-contain pbx-bg-white pbx-mx-auto">
|
|
@@ -74,7 +74,7 @@ const getSvgPreview = (title: string) => {
|
|
|
74
74
|
<div
|
|
75
75
|
v-for="comp in components[0].components.data"
|
|
76
76
|
:key="comp.title"
|
|
77
|
-
class="pbx-border
|
|
77
|
+
class="pbx-border-solid pbx-border-gray-400 pbx-overflow-hidden hover:pbx-border-myPrimaryLinkColor pbx-duration-100 pbx-cursor-pointer"
|
|
78
78
|
@click="handleDropComponent(convertToComponentObject(comp))"
|
|
79
79
|
>
|
|
80
80
|
<div
|
|
@@ -74,7 +74,7 @@ watch(
|
|
|
74
74
|
</div>
|
|
75
75
|
<div v-if="color !== 'none'" class="pbx-flex pbx-items-center">
|
|
76
76
|
<div
|
|
77
|
-
class="pbx-aspect-square pbx-w-6 pbx-h-6 pbx-border pbx-border-gray-100 pbx-rounded-sm"
|
|
77
|
+
class="pbx-aspect-square pbx-w-6 pbx-h-6 pbx-border-solid pbx-border-gray-100 pbx-rounded-sm"
|
|
78
78
|
:class="`pbx-bg-${color.replace('pbx-bg-', '')}`"
|
|
79
79
|
></div>
|
|
80
80
|
<span class="pbx-ml-3">{{ color }}</span>
|
|
@@ -101,7 +101,7 @@ watch(
|
|
|
101
101
|
</div>
|
|
102
102
|
<div
|
|
103
103
|
v-if="borderColor !== 'none'"
|
|
104
|
-
class="pbx-aspect-square pbx-w-6 pbx-h-6 pbx-border pbx-border-gray-100 pbx-rounded-sm"
|
|
104
|
+
class="pbx-aspect-square pbx-w-6 pbx-h-6 pbx-border-solid pbx-border-gray-100 pbx-rounded-sm"
|
|
105
105
|
:class="`bg-${borderColor?.replace('border-', '')}`"
|
|
106
106
|
></div>
|
|
107
107
|
<span class="pbx-block pbx-truncate">{{ borderColor }}</span>
|
|
@@ -59,7 +59,7 @@ const handleAddClasses = async function () {
|
|
|
59
59
|
<div class="pbx-flex pbx-gap-2 pbx-item-center pbx-flex-col">
|
|
60
60
|
<div class="pbx-flex pbx-gap-2 pbx-item-center">
|
|
61
61
|
<div
|
|
62
|
-
class="pbx-mt-1 pbx-relative pbx-flex pbx-items-center pbx-w-full pbx-border pbx-myPrimaryInput pbx-py-0 pbx-p-0"
|
|
62
|
+
class="pbx-mt-1 pbx-relative pbx-flex pbx-items-center pbx-w-full pbx-border-solid pbx-myPrimaryInput pbx-py-0 pbx-p-0"
|
|
63
63
|
>
|
|
64
64
|
<input
|
|
65
65
|
v-model="inputClass"
|
|
@@ -219,7 +219,7 @@ const handleToggleOpenHyperlinkInNewTab = async function () {
|
|
|
219
219
|
<!-- no attached url - end -->
|
|
220
220
|
<div v-if="hyperlinkEnable === true" class="pbx-my-2 pbx-py-2">
|
|
221
221
|
<div
|
|
222
|
-
class="pbx-relative pbx-flex pbx-items-center pbx-w-full pbx-border pbx-myPrimaryInput pbx-py-0 pbx-p-0"
|
|
222
|
+
class="pbx-relative pbx-flex pbx-items-center pbx-w-full pbx-border-solid pbx-border-gray-200 pbx-myPrimaryInput pbx-py-0 pbx-p-0"
|
|
223
223
|
>
|
|
224
224
|
<input
|
|
225
225
|
v-model="urlInput"
|
|
@@ -73,7 +73,7 @@ watch(
|
|
|
73
73
|
</div>
|
|
74
74
|
<div v-if="color !== 'none'" class="pbx-flex pbx-items-center">
|
|
75
75
|
<div
|
|
76
|
-
class="pbx-aspect-square pbx-w-6 pbx-h-6 pbx-border pbx-border-gray-100 pbx-rounded-sm"
|
|
76
|
+
class="pbx-aspect-square pbx-w-6 pbx-h-6 pbx-border-solid pbx-border-gray-100 pbx-rounded-sm"
|
|
77
77
|
:class="`pbx-bg-${color.replace('pbx-text-', '')}`"
|
|
78
78
|
></div>
|
|
79
79
|
<span class="pbx-ml-3">{{ color }}</span>
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
3
|
-
class="pbx-flex pbx-flex-col pbx-border pbx-border-solid pbx-border-gray-400"
|
|
4
|
-
:class="{ '': expanded }"
|
|
5
|
-
>
|
|
2
|
+
<div class="pbx-flex pbx-flex-col pbx-border-solid pbx-border-gray-400" :class="{ '': expanded }">
|
|
6
3
|
<div
|
|
7
|
-
class="pbx-flex pbx-flex-row pbx-justify-between pbx-items-center pbx-pl-3 pbx-pr-3 pbx-py-5 pbx-cursor-pointer pbx-duration-200 hover:pbx-bg-myPrimaryLightGrayColor
|
|
4
|
+
class="pbx-flex pbx-flex-row pbx-justify-between pbx-items-center pbx-pl-3 pbx-pr-3 pbx-py-5 pbx-cursor-pointer pbx-duration-200 hover:pbx-bg-myPrimaryLightGrayColor"
|
|
8
5
|
@click="expanded = !expanded"
|
|
9
6
|
>
|
|
10
7
|
<p class="pbx-myPrimaryParagraph pbx-font-medium pbx-my-0 pbx-py-0">
|
|
@@ -65,7 +65,7 @@ function onScroll() {
|
|
|
65
65
|
</script>
|
|
66
66
|
|
|
67
67
|
<template>
|
|
68
|
-
<div class="pbx-flex pbx-
|
|
68
|
+
<div class="pbx-flex pbx-h-full pbx-flex-col">
|
|
69
69
|
<div
|
|
70
70
|
class="pbx-flex pbx-flex-row pbx-justify-between pbx-pt-7 pbx-pr-4 pbx-pl-4 pbx-items-center pbx-mb-3"
|
|
71
71
|
>
|
|
@@ -117,7 +117,7 @@ function prettifyHtml(html) {
|
|
|
117
117
|
</div>
|
|
118
118
|
<div
|
|
119
119
|
v-if="getElement"
|
|
120
|
-
class="pbx-overflow-hidden pbx-border pbx-border-gray-100 pbx-mb-6"
|
|
120
|
+
class="pbx-overflow-hidden pbx-border-solid pbx-border-gray-100 pbx-mb-6"
|
|
121
121
|
>
|
|
122
122
|
<div class="pbx-bg-stone-800 pbx-pt-4 pbx-1 pbx-border-b-solid pbx-border-gray-200">
|
|
123
123
|
<div class="pbx-overflow-x-auto">
|
|
@@ -202,7 +202,7 @@ function prettifyHtml(html) {
|
|
|
202
202
|
</div>
|
|
203
203
|
<div
|
|
204
204
|
v-if="getComponent"
|
|
205
|
-
class="pbx-overflow-hidden pbx-border pbx-border-gray-100 pbx-mb-6"
|
|
205
|
+
class="pbx-overflow-hidden pbx-border-solid pbx-border-gray-100 pbx-mb-6"
|
|
206
206
|
>
|
|
207
207
|
<div class="pbx-bg-stone-800 pbx-pt-4 pbx-1 pbx-border-b-solid pbx-border-gray-200">
|
|
208
208
|
<div class="pbx-overflow-x-auto">
|
|
@@ -287,7 +287,7 @@ function prettifyHtml(html) {
|
|
|
287
287
|
<div
|
|
288
288
|
v-for="component in getComponents"
|
|
289
289
|
:key="component.id"
|
|
290
|
-
class="pbx-overflow-hidden pbx-border pbx-border-gray-100 pbx-mb-6"
|
|
290
|
+
class="pbx-overflow-hidden pbx-border-solid pbx-border-gray-100 pbx-mb-6"
|
|
291
291
|
>
|
|
292
292
|
<!-- Id and Title above the table, styled to look connected -->
|
|
293
293
|
<div
|
|
@@ -156,7 +156,7 @@ const openHTMLSettings = function () {
|
|
|
156
156
|
<span> Options </span>
|
|
157
157
|
</button>
|
|
158
158
|
<div
|
|
159
|
-
class="pbx-absolute pbx-left-0 -pbx-ml-16 -pbx-mt-2 pbx-flex pbx-flex-col pbx-gap-3 pbx-shadow-lg pbx-bg-white pbx-w-max pbx-border pbx-border-gray-100 pbx-rounded-2xl pbx-transition-all pbx-duration-200 pbx-ease-out pbx-pt-4 pbx-pr-4 pbx-pb-4 pbx-pl-2 pbx-z-30 pbx-opacity-0 pbx-pointer-events-none pbx-translate-y-2 group-hover:pbx-opacity-100 group-hover:pbx-pointer-events-auto group-hover:pbx-translate-y-0"
|
|
159
|
+
class="pbx-absolute pbx-left-0 -pbx-ml-16 -pbx-mt-2 pbx-flex pbx-flex-col pbx-gap-3 pbx-shadow-lg pbx-bg-white pbx-w-max pbx-border-solid pbx-border-gray-100 pbx-rounded-2xl pbx-transition-all pbx-duration-200 pbx-ease-out pbx-pt-4 pbx-pr-4 pbx-pb-4 pbx-pl-2 pbx-z-30 pbx-opacity-0 pbx-pointer-events-none pbx-translate-y-2 group-hover:pbx-opacity-100 group-hover:pbx-pointer-events-auto group-hover:pbx-translate-y-0"
|
|
160
160
|
>
|
|
161
161
|
<!-- Main Settings Start -->
|
|
162
162
|
<button
|
|
@@ -224,7 +224,7 @@ onMounted(() => {
|
|
|
224
224
|
<div>
|
|
225
225
|
<div>
|
|
226
226
|
<div
|
|
227
|
-
class="pbx-px-2 pbx-flex pbx-items-center pbx-justify-start pbx-gap-2 pbx-w-max pbx-p-1 pbx-rounded-full pbx-border
|
|
227
|
+
class="pbx-px-2 pbx-flex pbx-items-center pbx-justify-start pbx-gap-2 pbx-w-max pbx-p-1 pbx-rounded-full pbx-border-solid pbx-border-gray-200 pbx-shadow-sm"
|
|
228
228
|
>
|
|
229
229
|
<button
|
|
230
230
|
@click="pageBuilderService.toggleTipTapModal(false)"
|
|
@@ -238,7 +238,7 @@ onMounted(() => {
|
|
|
238
238
|
</div>
|
|
239
239
|
</div>
|
|
240
240
|
<div
|
|
241
|
-
class="pbx-flex pbx-items-center pbx-p-1 pbx-rounded-full pbx-border
|
|
241
|
+
class="pbx-flex pbx-items-center pbx-p-1 pbx-rounded-full pbx-border-solid pbx-border-gray-200 pbx-shadow-sm"
|
|
242
242
|
>
|
|
243
243
|
<div class="pbx-px-2 pbx-flex pbx-items-center pbx-justify-start pbx-gap-2 pbx-w-max">
|
|
244
244
|
<button
|
|
@@ -169,7 +169,7 @@ onMounted(async () => {
|
|
|
169
169
|
<div class="pbx-mt-2">
|
|
170
170
|
<div
|
|
171
171
|
v-if="getUnsplashImages && getUnsplashImages.results"
|
|
172
|
-
class="pbx-flex lg:pbx-justify-between pbx-justify-end pbx-items-center pbx-gap-2 pbx-py-2 pbx-px-2 pbx-mb-1 pbx-rounded-full pbx-border
|
|
172
|
+
class="pbx-flex lg:pbx-justify-between pbx-justify-end pbx-items-center pbx-gap-2 pbx-py-2 pbx-px-2 pbx-mb-1 pbx-rounded-full pbx-border-solid pbx-border-gray-200 pbx-shadow-sm"
|
|
173
173
|
>
|
|
174
174
|
<div class="lg:pbx-flex pbx-hidden pbx-justify-left pbx-items-center pbx-gap-2">
|
|
175
175
|
<button
|
|
@@ -292,7 +292,7 @@ onMounted(async () => {
|
|
|
292
292
|
v-for="image in getUnsplashImages.results"
|
|
293
293
|
:key="image.id"
|
|
294
294
|
@click="handleImageClick({ url: image.urls.regular, user: image.user.name })"
|
|
295
|
-
class="pbx-border
|
|
295
|
+
class="pbx-border-solid pbx-border-gray-200 pbx-my-2 pbx-px-2 pbx-p-2 pbx-cursor-pointer"
|
|
296
296
|
>
|
|
297
297
|
<img
|
|
298
298
|
:alt="image.user.name"
|
|
@@ -363,7 +363,7 @@ onMounted(async () => {
|
|
|
363
363
|
|
|
364
364
|
<template>
|
|
365
365
|
<div
|
|
366
|
-
class="pbx-font-sans pbx-max-w-full pbx-m-1 pbx-border
|
|
366
|
+
class="pbx-font-sans pbx-max-w-full pbx-m-1 pbx-border-solid pbx-border-gray-400 pbx-inset-x-0 pbx-z-10 pbx-bg-white pbx-overflow-x-auto pbx-h-full"
|
|
367
367
|
>
|
|
368
368
|
<GlobalLoader v-if="getIsLoadingGlobal & !openAppNotStartedModal"></GlobalLoader>
|
|
369
369
|
<ModalBuilder
|
|
@@ -436,7 +436,7 @@ onMounted(async () => {
|
|
|
436
436
|
<!-- Top Layout Save And Reset Area - Start -->
|
|
437
437
|
<div
|
|
438
438
|
id="pagebuilder-toolbar-area"
|
|
439
|
-
class="pbx-flex pbx-items-center pbx-justify-between pbx-bg-myPrimaryLightGrayColor pbx-border-b
|
|
439
|
+
class="pbx-flex pbx-items-center pbx-justify-between pbx-bg-myPrimaryLightGrayColor pbx-border-b-solid pbx-border-gray-200 pbx-mb-2 lg:pbx-px-6 pbx-px-4 pbx-font-sans"
|
|
440
440
|
>
|
|
441
441
|
<template
|
|
442
442
|
v-if="
|
|
@@ -691,7 +691,7 @@ onMounted(async () => {
|
|
|
691
691
|
|
|
692
692
|
<main
|
|
693
693
|
ref="pbxToolBar"
|
|
694
|
-
class="pbx-flex pbx-flex-col pbx-grow pbx-rounded-tr-2xl pbx-rounded-tl-2xl pbx-border
|
|
694
|
+
class="pbx-flex pbx-flex-col pbx-grow pbx-rounded-tr-2xl pbx-rounded-tl-2xl pbx-border-solid pbx-border-gray-200 pbx-items-stretch pbx-h-[90vh]"
|
|
695
695
|
:class="{ 'pbx-mr-2': !getMenuRight, '': getMenuRight }"
|
|
696
696
|
>
|
|
697
697
|
<div
|