@gingkoo/pandora-explorer 0.0.1-alpha.86 → 0.0.1-alpha.87

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/lib/es/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @gingkoo/pandora-explorer v0.0.1-alpha.86
2
+ * @gingkoo/pandora-explorer v0.0.1-alpha.87
3
3
  */
4
4
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
5
5
  import cx$1 from 'classnames';
@@ -2115,6 +2115,7 @@ const ExplorerHead = props => {
2115
2115
  children: jsxs("span", {
2116
2116
  className: 'title',
2117
2117
  onClick: () => {
2118
+ if (hidden) return;
2118
2119
  let curinfo = store.curInfo;
2119
2120
  if (store.menutype == 'column' && store.curSelectFile) {
2120
2121
  curinfo = store.dataMap?.[store.curSelectFile];
@@ -7762,7 +7763,7 @@ const SelectBox = props => {
7762
7763
  y: e.clientY,
7763
7764
  startkey: curColumnkey
7764
7765
  });
7765
- if (!isDrag && checkMode == 'check') {
7766
+ if (checkMode == 'check') {
7766
7767
  if (!checks.includes(type?.[0])) {
7767
7768
  let arr = [...selects, ...type];
7768
7769
  setSelect(arr);