@myissue/vue-website-page-builder 3.2.74 → 3.2.76

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.2.74",
3
+ "version": "v3.2.76",
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",
@@ -84,7 +84,7 @@ const configPageBuilder = {
84
84
  userSettings: {
85
85
  theme: 'light' as 'light',
86
86
  language: 'en',
87
- autoSave: false,
87
+ autoSave: true,
88
88
  },
89
89
  settings: {
90
90
  brandColor: '#DB93B0',
@@ -1433,7 +1433,6 @@ class PageBuilderClass {
1433
1433
 
1434
1434
  // Private method to parse JSON components and save savedAt to localStorage
1435
1435
  #parseJSONComponents(jsonData: string): void {
1436
- console.log(1111)
1437
1436
  try {
1438
1437
  const parsedData = JSON.parse(jsonData)
1439
1438
  let componentsArray: ComponentObject[] = []
@@ -1499,7 +1498,6 @@ class PageBuilderClass {
1499
1498
  }
1500
1499
  // Private method to parse HTML components
1501
1500
  #parseHTMLComponents(htmlData: string): void {
1502
- console.log(2222)
1503
1501
  try {
1504
1502
  const parser = new DOMParser()
1505
1503
  const doc = parser.parseFromString(htmlData, 'text/html')