pxx-vue-quill 1.0.68 → 1.0.69
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-04T01:38:35.848Z
|
|
11
11
|
*/
|
|
12
12
|
(function (global, factory) {
|
|
13
13
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vue')) :
|
|
@@ -20166,6 +20166,7 @@
|
|
|
20166
20166
|
'textChange',
|
|
20167
20167
|
'selectionChange',
|
|
20168
20168
|
'editorChange',
|
|
20169
|
+
'toolbarVisibleChange',
|
|
20169
20170
|
'update:content',
|
|
20170
20171
|
'focus',
|
|
20171
20172
|
'blur',
|
|
@@ -20386,10 +20387,12 @@
|
|
|
20386
20387
|
if (toolbar) {
|
|
20387
20388
|
if (isEditorFocus.value) {
|
|
20388
20389
|
toolbar.style.display = 'block';
|
|
20390
|
+
ctx.emit('toolbarVisibleChange', true);
|
|
20389
20391
|
}
|
|
20390
20392
|
else {
|
|
20391
20393
|
toolbar.style.display = 'none';
|
|
20392
20394
|
showMoreToolbar.value = false;
|
|
20395
|
+
ctx.emit('toolbarVisibleChange', false);
|
|
20393
20396
|
}
|
|
20394
20397
|
}
|
|
20395
20398
|
ctx.emit('selectionChange', { range, oldRange, source });
|