@myissue/vue-website-page-builder 3.3.53 → 3.3.54

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.53",
3
+ "version": "3.3.54",
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",
@@ -102,7 +102,7 @@ watch(
102
102
  <div
103
103
  v-if="borderColor !== 'none'"
104
104
  class="pbx-aspect-square pbx-w-6 pbx-h-6 pbx-border-solid pbx-border pbx-border-gray-100 pbx-rounded-sm"
105
- :class="`bg-${borderColor?.replace('border-', '')}`"
105
+ :class="`pbx-bg-${borderColor?.replace('pbx-border-', '')}`"
106
106
  ></div>
107
107
  <span class="pbx-block pbx-truncate">{{ borderColor }}</span>
108
108
  </span>
@@ -147,7 +147,7 @@ watch(
147
147
  <div
148
148
  v-if="color !== 'none'"
149
149
  class="pbx-aspect-square pbx-w-6 pbx-h-6 pbx-bg-gray-950"
150
- :class="`bg-${color.replace('border-', '')}`"
150
+ :class="`pbx-bg-${color.replace('pbx-border-', '')}`"
151
151
  ></div>
152
152
  <span v-if="color === 'none'" class="pbx-ml-3">Transparent</span>
153
153
  <span v-if="color !== 'none'" class="pbx-ml-3">{{ color }}</span>