@myissue/vue-website-page-builder 3.3.29 → 3.3.30
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.
|
|
3
|
+
"version": "3.3.30",
|
|
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",
|
|
@@ -59,6 +59,7 @@
|
|
|
59
59
|
"dev": "vite",
|
|
60
60
|
"build": "run-p type-check \"build-only {@}\" --",
|
|
61
61
|
"build:lib": "vue-tsc --declaration --emitDeclarationOnly --outDir dist && vite build --mode lib",
|
|
62
|
+
"type:build": "vue-tsc --declaration --emitDeclarationOnly --outDir dist",
|
|
62
63
|
"preview": "vite preview",
|
|
63
64
|
"build-only": "vite build",
|
|
64
65
|
"type-check": "vue-tsc --build",
|
|
@@ -589,7 +589,7 @@ onMounted(async () => {
|
|
|
589
589
|
>
|
|
590
590
|
<div class="pbx-flex pbx-items-center pbx-justify-center pbx-gap-2">
|
|
591
591
|
<span class="lg:pbx-block pbx-hidden">
|
|
592
|
-
<div class="pbx-whitespace-nowrap">Add new Components</div>
|
|
592
|
+
<div class="pbx-whitespace-nowrap pbx-cursor-pointer">Add new Components</div>
|
|
593
593
|
</span>
|
|
594
594
|
<span
|
|
595
595
|
class="pbx-h-10 pbx-w-10 pbx-cursor-pointer pbx-rounded-full pbx-flex pbx-items-center pbx-border-none pbx-justify-center pbx-bg-gray-50 pbx-aspect-square hover:pbx-bg-myPrimaryLinkColor hover:pbx-text-white focus-visible:pbx-ring-0"
|
|
@@ -611,7 +611,9 @@ onMounted(async () => {
|
|
|
611
611
|
"
|
|
612
612
|
>
|
|
613
613
|
<div class="pbx-flex pbx-items-center pbx-justify-center pbx-gap-2">
|
|
614
|
-
<div class="pbx-whitespace-nowrap lg:pbx-block pbx-hidden">
|
|
614
|
+
<div class="pbx-whitespace-nowrap lg:pbx-block pbx-hidden pbx-cursor-pointer">
|
|
615
|
+
Preview
|
|
616
|
+
</div>
|
|
615
617
|
|
|
616
618
|
<span
|
|
617
619
|
class="pbx-h-10 pbx-w-10 pbx-cursor-pointer pbx-rounded-full pbx-flex pbx-items-center pbx-border-none pbx-justify-center pbx-bg-gray-50 pbx-aspect-square hover:pbx-bg-myPrimaryLinkColor hover:pbx-text-white focus-visible:pbx-ring-0"
|
|
@@ -812,24 +814,24 @@ onMounted(async () => {
|
|
|
812
814
|
</template>
|
|
813
815
|
|
|
814
816
|
<style>
|
|
815
|
-
#pagebuilder a {
|
|
816
|
-
cursor: default;
|
|
817
|
-
}
|
|
818
|
-
|
|
819
817
|
#pagebuilder [element] {
|
|
820
|
-
outline: rgba(255, 255, 255, 0) dashed
|
|
821
|
-
outline-offset: -
|
|
818
|
+
outline: rgba(255, 255, 255, 0) dashed 4px !important;
|
|
819
|
+
outline-offset: -2px !important;
|
|
822
820
|
}
|
|
823
821
|
#pagebuilder [hovered] {
|
|
824
|
-
outline: rgb(0, 140, 14, 1) dashed
|
|
825
|
-
outline-offset: -
|
|
822
|
+
outline: rgb(0, 140, 14, 1) dashed 4px !important;
|
|
823
|
+
outline-offset: -2px !important;
|
|
826
824
|
}
|
|
827
825
|
|
|
828
826
|
#pagebuilder [selected] {
|
|
829
827
|
position: relative;
|
|
830
828
|
|
|
831
|
-
outline: rgb(185, 16, 16) dashed
|
|
832
|
-
outline-offset: -
|
|
829
|
+
outline: rgb(185, 16, 16) dashed 4px !important;
|
|
830
|
+
outline-offset: -2px !important;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
#pagebuilder a {
|
|
834
|
+
cursor: default;
|
|
833
835
|
}
|
|
834
836
|
|
|
835
837
|
/* sortable */
|
package/src/css/app.css
CHANGED
|
@@ -364,9 +364,8 @@
|
|
|
364
364
|
box-shadow: none !important;
|
|
365
365
|
background: #fff;
|
|
366
366
|
min-height: 25rem;
|
|
367
|
-
border: 1px solid #aaa;
|
|
368
|
-
|
|
369
|
-
padding: 6px;
|
|
367
|
+
border-bottom: 1px solid #aaa;
|
|
368
|
+
padding: 0px 0px 10px 16px;
|
|
370
369
|
margin-bottom: 20px;
|
|
371
370
|
padding-bottom: 100px;
|
|
372
371
|
}
|
package/src/css/dev-global.css
CHANGED
|
@@ -81,13 +81,7 @@ These styles affect all HTML elements (like input, button, h1, etc.) in the cons
|
|
|
81
81
|
#page-builder-editor ul,
|
|
82
82
|
#pagebuilder ul {
|
|
83
83
|
list-style: disc !important;
|
|
84
|
-
padding:
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
#page-builder-editor li,
|
|
88
|
-
#pagebuilder li {
|
|
89
|
-
line-height: 2.2rem;
|
|
90
|
-
margin-left: 1.5em;
|
|
84
|
+
padding: 0rem;
|
|
91
85
|
}
|
|
92
86
|
|
|
93
87
|
/* Scrollbar Styles - start */
|