pxx-vue-quill 1.0.138 → 1.0.140

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-10T09:20:50.978Z
10
+ * Date: 2025-09-10T09:35:50.237Z
11
11
  */
12
12
  (function (global, factory) {
13
13
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vue')) :
@@ -20610,6 +20610,14 @@
20610
20610
  if (isCustomLinkClick) {
20611
20611
  return;
20612
20612
  }
20613
+ const isToolbarButton = target.closest('.ql-toolbar') ||
20614
+ target.closest('.ql-picker') ||
20615
+ target.closest('.ql-picker-options') ||
20616
+ target.closest('.ql-picker-item') ||
20617
+ target.closest('.ql-picker-label');
20618
+ if (isToolbarButton) {
20619
+ return;
20620
+ }
20613
20621
  const clickedEditorContainer = target.closest('.quill-editor-container');
20614
20622
  if (clickedEditorContainer) {
20615
20623
  const currentEditorContainer = (_a = editor.value) === null || _a === void 0 ? void 0 : _a.closest('.quill-editor-container');