pxx-vue-quill 1.0.53 → 1.0.54
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/vue-quill.umd.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*
|
|
8
8
|
* Copyright (c) 2025 Pxx-Team
|
|
9
9
|
* Released under the MIT license
|
|
10
|
-
* Date: 2025-09-
|
|
10
|
+
* Date: 2025-09-02T08:02:24.939Z
|
|
11
11
|
*/
|
|
12
12
|
(function (global, factory) {
|
|
13
13
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vue')) :
|
|
@@ -20186,7 +20186,8 @@
|
|
|
20186
20186
|
});
|
|
20187
20187
|
const removeQuillBlotFormatter = () => {
|
|
20188
20188
|
const overlay = quill === null || quill === void 0 ? void 0 : quill.getModule('blotFormatter').overlay;
|
|
20189
|
-
overlay
|
|
20189
|
+
if (overlay)
|
|
20190
|
+
overlay.remove();
|
|
20190
20191
|
};
|
|
20191
20192
|
vue.onBeforeUnmount(() => {
|
|
20192
20193
|
removeQuillBlotFormatter();
|
|
@@ -20391,6 +20392,7 @@
|
|
|
20391
20392
|
ctx.emit('blur', editor);
|
|
20392
20393
|
});
|
|
20393
20394
|
const handleEditorChange = (...args) => {
|
|
20395
|
+
removeQuillBlotFormatter();
|
|
20394
20396
|
if (args[0] === 'text-change')
|
|
20395
20397
|
ctx.emit('editorChange', {
|
|
20396
20398
|
name: args[0],
|