@myissue/vue-website-page-builder 3.0.29 → 3.0.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": "v3.0.29",
3
+ "version": "v3.0.30",
4
4
  "description": "🚧 DEVELOPMENT VERSION - Vue.js page builder component with drag & drop functionality. Not ready for production use.",
5
5
  "type": "module",
6
6
  "main": "./dist/vue-website-page-builder.umd.cjs",
@@ -94,7 +94,7 @@ provide('closeMediaLibraryModal', closeMediaLibraryModal)
94
94
  leave-to="opacity-0 scale-95"
95
95
  >
96
96
  <div
97
- class="relative max-h-[65rem] my-2 inline-block align-bottom bg-white rounded-2xl text-left overflow-hidden shadow-xl transform transition-all sm:align-middle sm:max-w-7xl sm:w-full w-[96%]"
97
+ class="font-sans relative max-h-[65rem] my-2 inline-block align-bottom bg-white rounded-2xl text-left overflow-hidden shadow-xl transform transition-all sm:align-middle sm:max-w-7xl sm:w-full w-[96%]"
98
98
  >
99
99
  <div
100
100
  class="flex gap-2 justify-between items-center border-b border-gray-200 p-4 mb-2"
@@ -48,7 +48,9 @@ const handleEscapeKey = function () {
48
48
  class="fixed z-30 inset-0 overflow-y-auto focus:outline-none"
49
49
  tabindex="0"
50
50
  >
51
- <div class="flex items-end justify-center pb-20 text-center sm:block sm:p-0 bg-white">
51
+ <div
52
+ class="font-sans flex items-end justify-center pb-20 text-center sm:block sm:p-0 bg-white"
53
+ >
52
54
  <TransitionChild
53
55
  as="template"
54
56
  enter="ease-out duration-100"
@@ -78,11 +80,13 @@ const handleEscapeKey = function () {
78
80
  class="bg-red-100 inline-block align-bottom text-left transform transition-all sm:align-middle w-full overflow-hidden h-[100vh] top-0 left-0 right-0 absolute"
79
81
  >
80
82
  <div
81
- class="px-4 px-4 lg:h-[10vh] h-[16vh] flex items-center justify-between border-b border-gray-200 bg-white"
83
+ class="px-4 lg:h-[10vh] h-[16vh] flex items-center justify-between border-b border-gray-200 bg-white"
82
84
  >
83
- <button type="button" @click="firstButton">
84
- <img class="h-6" src="/logo/logo.svg" alt="Logo" />
85
- </button>
85
+ <template v-if="getPageBuilderLogo">
86
+ <div class="border-r border-gray-200 pr-6">
87
+ <img class="h-6" :src="getPageBuilderLogo" alt="Logo" />
88
+ </div>
89
+ </template>
86
90
  <div
87
91
  @click="firstButton"
88
92
  class="flex items-center justify-center gap-1 cursor-pointer"
@@ -1,5 +1,3 @@
1
1
  <template>
2
- <div class="font-sans">
3
- <div>NoneCustomMediaLibraryComponent here for the page builder to add media if needed</div>
4
- </div>
2
+ <div>NoneCustomMediaLibraryComponent here for the page builder to add media if needed</div>
5
3
  </template>
@@ -63,7 +63,7 @@ const getSvgPreview = (title: string) => {
63
63
  </style>
64
64
 
65
65
  <template>
66
- <div class="font-sans p-4">
66
+ <div class="p-4">
67
67
  <!-- Helper Components Section -->
68
68
  <div class="mb-8">
69
69
  <h3 class="myQuaternaryHeader mb-4">Helper Components</h3>