@myissue/vue-website-page-builder 3.3.82 → 3.3.83

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.82",
3
+ "version": "3.3.83",
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",
@@ -44,7 +44,7 @@ const handleDropComponent = async function (componentObject: ComponentObject) {
44
44
  }
45
45
 
46
46
  // Helper function to convert ComponentData to ComponentObject
47
- const convertToComponentObject = function (comp: ComponentObject): ComponentObject {
47
+ const convertToComponentObject = function (comp: any): ComponentObject {
48
48
  return {
49
49
  id: null, // Generate ID when needed in PageBuilderClass
50
50
  html_code: comp.html_code,