bkui-vue 0.0.1-beta.337 → 0.0.1-beta.338

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/index.esm.js CHANGED
@@ -19725,7 +19725,7 @@ var Component$d = defineComponent({
19725
19725
  const getSelectedTagNodes = () => {
19726
19726
  var _a;
19727
19727
  const nodes = Array.from(((_a = tagListRef.value) == null ? void 0 : _a.childNodes) || []);
19728
- return nodes.filter((node) => node.nodeType !== Node.TEXT_NODE);
19728
+ return nodes.filter((node) => ![Node.TEXT_NODE, Node.COMMENT_NODE].includes(node.nodeType));
19729
19729
  };
19730
19730
  const focusInputTrigger = (e) => {
19731
19731
  if (props2.disabled)