3h1-ui 2.9.7 → 2.9.9

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/es/index.js CHANGED
@@ -15445,6 +15445,14 @@ const _sfc_main$k = defineComponent({
15445
15445
  return;
15446
15446
  if (tableAdvancedSearchWrapperRef.value.contains(e.target))
15447
15447
  return;
15448
+ const selectList = document.getElementsByClassName("ant-select-dropdown");
15449
+ const pickList = document.getElementsByClassName("ant-picker-dropdown");
15450
+ const domList = [...Array.from(selectList), ...Array.from(pickList)];
15451
+ const flag = (domList == null ? void 0 : domList.length) && domList.some((dom) => {
15452
+ return dom.contains(e.target);
15453
+ });
15454
+ if (flag)
15455
+ return;
15448
15456
  table2.closeAdvancedSearch();
15449
15457
  };
15450
15458
  onMounted(() => {
package/lib/index.js CHANGED
@@ -15447,6 +15447,14 @@ const _sfc_main$k = vue.defineComponent({
15447
15447
  return;
15448
15448
  if (tableAdvancedSearchWrapperRef.value.contains(e.target))
15449
15449
  return;
15450
+ const selectList = document.getElementsByClassName("ant-select-dropdown");
15451
+ const pickList = document.getElementsByClassName("ant-picker-dropdown");
15452
+ const domList = [...Array.from(selectList), ...Array.from(pickList)];
15453
+ const flag = (domList == null ? void 0 : domList.length) && domList.some((dom) => {
15454
+ return dom.contains(e.target);
15455
+ });
15456
+ if (flag)
15457
+ return;
15450
15458
  table2.closeAdvancedSearch();
15451
15459
  };
15452
15460
  vue.onMounted(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "3h1-ui",
3
- "version": "2.9.7",
3
+ "version": "2.9.9",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",