@myissue/vue-website-page-builder 3.3.32 → 3.3.34
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.js +6 -6
- package/dist/vue-website-page-builder.umd.cjs +1 -1
- package/package.json +1 -1
- package/src/Components/Modals/BuilderComponents.vue +1 -1
- package/src/Components/PageBuilder/DefaultComponents/DefaultBuilderComponents.vue +3 -3
- package/src/Components/PageBuilder/EditorMenu/EditorAccordion.vue +4 -1
package/package.json
CHANGED
|
@@ -38,7 +38,7 @@ const firstButtonBuilder = function () {
|
|
|
38
38
|
minHeight=""
|
|
39
39
|
maxHeight=""
|
|
40
40
|
>
|
|
41
|
-
<div class="pbx-w-full pbx-inset-x-0 pbx-bg-white pbx-overflow-x-
|
|
41
|
+
<div class="pbx-w-full pbx-inset-x-0 pbx-bg-white pbx-overflow-x-auto lg:pbx-pt-2 pbx-pt-2">
|
|
42
42
|
<div>
|
|
43
43
|
<!-- Only show custom search component if provided -->
|
|
44
44
|
<div v-if="CustomBuilderComponents">
|
|
@@ -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 pbx-border-gray-
|
|
56
|
+
class="pbx-border 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,11 +74,11 @@ 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 pbx-border-gray-
|
|
77
|
+
class="pbx-border 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
|
|
81
|
-
class="pbx-overflow-hidden pbx-whitespace-pre-line pbx-flex-1 pbx-h-auto pbx-border-b pbx-border-gray-200 lg:pbx-py-10 pbx-py-8 pbx-px-2"
|
|
81
|
+
class="pbx-overflow-hidden pbx-whitespace-pre-line pbx-flex-1 pbx-h-auto pbx-border-b pbx-border-solid pbx-border-gray-200 lg:pbx-py-10 pbx-py-8 pbx-px-2"
|
|
82
82
|
>
|
|
83
83
|
<!-- Use SVG preview instead of external images -->
|
|
84
84
|
<div
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
2
|
+
<div
|
|
3
|
+
class="pbx-flex pbx-flex-col pbx-border pbx-border-solid pbx-border-gray-400"
|
|
4
|
+
:class="{ '': expanded }"
|
|
5
|
+
>
|
|
3
6
|
<div
|
|
4
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 pbx-border-b pbx-border-gray-200"
|
|
5
8
|
@click="expanded = !expanded"
|