@zipify/wysiwyg 1.0.0-dev.51 → 1.0.0-dev.52

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/dist/wysiwyg.mjs CHANGED
@@ -17429,7 +17429,7 @@ const $B = je.create({
17429
17429
  if (!e.startsWith("#"))
17430
17430
  return ht.URL;
17431
17431
  const t = e.replace("#", "");
17432
- return this.options.pageBlocks.value.find((i) => i.id === parseInt(t)) ? ht.BLOCK : ht.URL;
17432
+ return this.options.pageBlocksRef.value.find((i) => i.id === parseInt(t)) ? ht.BLOCK : ht.URL;
17433
17433
  }
17434
17434
  }
17435
17435
  };
@@ -18091,7 +18091,7 @@ function fL(r) {
18091
18091
  const e = (i) => r.presetsRef.value.find((o) => o.id === i), t = e(r.defaultPresetId), n = e("link");
18092
18092
  return uL().concat([
18093
18093
  rB.configure({
18094
- presets: r.presetsRef,
18094
+ presetsRef: r.presetsRef,
18095
18095
  defaultId: r.defaultPresetId,
18096
18096
  baseClass: r.basePresetClass,
18097
18097
  makeVariable: r.makePresetVariable
@@ -18100,7 +18100,7 @@ function fL(r) {
18100
18100
  baseClass: r.baseListClass
18101
18101
  }),
18102
18102
  aB.configure({
18103
- device: r.deviceRef
18103
+ deviceRef: r.deviceRef
18104
18104
  }),
18105
18105
  eB.configure({
18106
18106
  fonts: r.fonts,
@@ -18125,7 +18125,7 @@ function fL(r) {
18125
18125
  FB.configure({
18126
18126
  preset: n,
18127
18127
  basePresetClass: r.basePresetClass,
18128
- pageBlocks: r.pageBlocksRef
18128
+ pageBlocksRef: r.pageBlocksRef
18129
18129
  })
18130
18130
  ]);
18131
18131
  }