pxx-vue-quill 1.0.124 → 1.0.126

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.
@@ -7,7 +7,7 @@
7
7
  *
8
8
  * Copyright (c) 2025 Pxx-Team
9
9
  * Released under the MIT license
10
- * Date: 2025-09-10T06:17:09.563Z
10
+ * Date: 2025-09-10T07:09:05.326Z
11
11
  */
12
12
  (function (global, factory) {
13
13
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vue')) :
@@ -20555,6 +20555,9 @@
20555
20555
  var _a;
20556
20556
  if (!editor.value)
20557
20557
  return;
20558
+ if (props.enableImageResize) {
20559
+ registerBlotFormatter();
20560
+ }
20558
20561
  options = composeOptions();
20559
20562
  setIcons();
20560
20563
  quill = new Quill(editor.value, options);
@@ -20562,9 +20565,6 @@
20562
20565
  setLinkQuill(quill);
20563
20566
  controlToolbarVisible(false);
20564
20567
  setContents(props.content);
20565
- if (props.enableImageResize) {
20566
- registerBlotFormatter();
20567
- }
20568
20568
  quill.on('text-change', handleTextChange);
20569
20569
  quill.on('selection-change', handleSelectionChange);
20570
20570
  quill.on('editor-change', handleEditorChange);