@myissue/vue-website-page-builder 3.4.19 → 3.4.20
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.4.
|
|
3
|
+
"version": "3.4.20",
|
|
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",
|
|
@@ -85,8 +85,7 @@
|
|
|
85
85
|
"@tiptap/vue-3": "^2.14.0",
|
|
86
86
|
"pinia": "^2.1.7",
|
|
87
87
|
"uuid": "^9.0.0",
|
|
88
|
-
"vue": "^3.5.13"
|
|
89
|
-
"vue-website-page-builder": "file:"
|
|
88
|
+
"vue": "^3.5.13"
|
|
90
89
|
},
|
|
91
90
|
"devDependencies": {
|
|
92
91
|
"@rushstack/eslint-patch": "^1.8.0",
|
|
@@ -250,13 +250,13 @@ const handleDelete = function () {
|
|
|
250
250
|
:firstButtonText="firstButtonModalTipTap"
|
|
251
251
|
:secondButtonText="secondButtonModalTipTap"
|
|
252
252
|
:thirdButtonText="thirdButtonModalTipTap"
|
|
253
|
-
@
|
|
253
|
+
@firstModalButtonFunctionDynamicModalBuilder="
|
|
254
254
|
firstModalButtonFunctionDynamicModalBuilderTipTap
|
|
255
255
|
"
|
|
256
|
-
@
|
|
256
|
+
@secondModalButtonFunctionDynamicModalBuilder="
|
|
257
257
|
secondModalButtonFunctionDynamicModalBuilderTipTap
|
|
258
258
|
"
|
|
259
|
-
@
|
|
259
|
+
@thirdModalButtonFunctionDynamicModalBuilder="
|
|
260
260
|
thirdModalButtonFunctionDynamicModalBuilderTipTap
|
|
261
261
|
"
|
|
262
262
|
>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script setup>
|
|
2
|
-
import { useEditor
|
|
2
|
+
import { useEditor } from '@tiptap/vue-3'
|
|
3
3
|
import StarterKit from '@tiptap/starter-kit'
|
|
4
4
|
import { computed, onBeforeMount, onMounted, ref, watch } from 'vue'
|
|
5
5
|
import Link from '@tiptap/extension-link'
|
|
@@ -329,6 +329,7 @@ onMounted(() => {
|
|
|
329
329
|
</div>
|
|
330
330
|
|
|
331
331
|
<editor-content
|
|
332
|
+
v-if="editor"
|
|
332
333
|
id="page-builder-editor"
|
|
333
334
|
:editor="editor"
|
|
334
335
|
class="pbx-p-2 pbx-prounded-lg lg:pbx-min-h-[20rem] lg:pbx-max-h-[30rem] md:pbx-min-h-[20rem] md:pbx-max-h-[20rem] pbx-min-h-[20rem] pbx-max-h-[20rem] pbx-overflow-y-auto"
|