@myissue/vue-website-page-builder 3.2.80 → 3.2.81

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.80",
3
+ "version": "v3.2.81",
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",
@@ -226,7 +226,7 @@ const handlerRumeEditingForUpdate = async function () {
226
226
  secondModalButtonResumeEditingFunction.value = function () {}
227
227
  thirdModalButtonResumeEditingFunction.value = async function () {
228
228
  isLoadingResumeEditing.value = true
229
- await delay(1000)
229
+ await delay(600)
230
230
  await pageBuilderClass.resumeEditingForUpdate()
231
231
  isLoadingResumeEditing.value = false
232
232
  showModalResumeEditing.value = false
@@ -1234,7 +1234,7 @@ class PageBuilderClass {
1234
1234
  const draft = localStorage.getItem(key)
1235
1235
  if (draft) {
1236
1236
  try {
1237
- await this.delay(1000)
1237
+ await this.delay(500)
1238
1238
  const draftParsed = JSON.parse(draft)
1239
1239
  const dbComponents = this.getComponents.value
1240
1240
  return JSON.stringify(draftParsed.components) !== JSON.stringify(dbComponents)