@myissue/vue-website-page-builder 3.3.31 → 3.3.32
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 +6 -6
- package/dist/vue-website-page-builder.umd.cjs +2 -2
- package/package.json +1 -2
- package/src/Components/PageBuilder/ToolbarOption/ToolbarOption.vue +3 -3
- package/src/PageBuilder/PageBuilder.vue +1 -1
- package/src/css/app.css +15 -1
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.32",
|
|
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,7 +59,6 @@
|
|
|
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",
|
|
63
62
|
"preview": "vite preview",
|
|
64
63
|
"build-only": "vite build",
|
|
65
64
|
"type-check": "vue-tsc --build",
|
|
@@ -166,7 +166,7 @@ const openHTMLSettings = function () {
|
|
|
166
166
|
openMainSettings()
|
|
167
167
|
}
|
|
168
168
|
"
|
|
169
|
-
class="pbx-
|
|
169
|
+
class="pbx-mySecondaryButton pbx-text-xs pbx-font-normal"
|
|
170
170
|
type="button"
|
|
171
171
|
>
|
|
172
172
|
Config Overview
|
|
@@ -176,7 +176,7 @@ const openHTMLSettings = function () {
|
|
|
176
176
|
<!-- HTML Settings Start -->
|
|
177
177
|
<button
|
|
178
178
|
@click="openHTMLSettings"
|
|
179
|
-
class="pbx-
|
|
179
|
+
class="pbx-mySecondaryButton pbx-text-xs pbx-font-normal"
|
|
180
180
|
type="button"
|
|
181
181
|
>
|
|
182
182
|
HTML Overview
|
|
@@ -186,7 +186,7 @@ const openHTMLSettings = function () {
|
|
|
186
186
|
<!-- Delete Layout Start -->
|
|
187
187
|
<button
|
|
188
188
|
@click="deleteAllComponentsFromDOM"
|
|
189
|
-
class="pbx-
|
|
189
|
+
class="pbx-myPrimaryDeleteButton pbx-text-xs pbx-font-normal"
|
|
190
190
|
type="button"
|
|
191
191
|
>
|
|
192
192
|
Delete Layout
|
|
@@ -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 pbx-border-gray-400 pbx-inset-x-0 pbx-z-10 pbx-bg-white pbx-overflow-x-auto pbx-h-full"
|
|
366
|
+
class="pbx-font-sans pbx-max-w-full pbx-m-1 pbx-border 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
|
package/src/css/app.css
CHANGED
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
@apply pbx-min-h-[3rem] lg:pbx-px-4 lg:pbx-py-3 pbx-px-3 pbx-py-3 pbx-font-sans
|
|
150
150
|
sm:pbx-text-sm pbx-text-xs pbx-whitespace-nowrap pbx-break-keep pbx-font-medium pbx-inline-flex pbx-gap-1 pbx-items-center pbx-justify-center pbx-rounded-full pbx-border pbx-border-transparent pbx-bg-myPrimaryLinkColor pbx-text-white pbx-shadow-sm hover:pbx-bg-myPrimaryLinkColor sm:pbx-w-auto
|
|
151
151
|
focus:pbx-outline-none focus:pbx-ring-2 focus:pbx-ring-myPrimaryLinkColor focus:pbx-ring-offset-2
|
|
152
|
-
focus-visible:pbx-ring-2 focus-visible:pbx-ring-myPrimaryLinkColor;
|
|
152
|
+
focus-visible:pbx-ring-2 focus-visible:pbx-ring-myPrimaryLinkColor pbx-cursor-pointer;
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
.pbx-mySecondaryButton {
|
|
@@ -369,3 +369,17 @@
|
|
|
369
369
|
margin-bottom: 20px;
|
|
370
370
|
padding-bottom: 100px;
|
|
371
371
|
}
|
|
372
|
+
|
|
373
|
+
#page-builder-editor ol,
|
|
374
|
+
#page-builder-editor-editable-area ol,
|
|
375
|
+
#page-builder-editor ul,
|
|
376
|
+
#page-builder-editor-editable-area ul {
|
|
377
|
+
list-style: disc !important;
|
|
378
|
+
padding: 0 0 0 1rem;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
#page-builder-editor li,
|
|
382
|
+
#page-builder-editor-editable-area li {
|
|
383
|
+
line-height: 1.2;
|
|
384
|
+
margin-left: 1em; /* Adjust this value as needed */
|
|
385
|
+
}
|