@gingkoo/pandora-explorer 0.0.1-alpha.78 → 0.0.1-alpha.79

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.
@@ -1,7 +1,7 @@
1
1
  import './index.less';
2
2
  interface MenuProps {
3
3
  menu?: MenuItem[];
4
- onChange?: (key: string) => any;
4
+ onChange?: (key: string, parent?: MenuItem) => any;
5
5
  loadMenu?: (item: MenuItem) => MenuItem;
6
6
  store?: any;
7
7
  }
@@ -13,5 +13,6 @@ export interface MenuItem {
13
13
  children: MenuItem | null;
14
14
  [key: string]: any;
15
15
  }
16
+ export declare function menuIcon(icon: any): import("react/jsx-runtime").JSX.Element | undefined;
16
17
  export default function Menu(props: MenuProps): import("react/jsx-runtime").JSX.Element;
17
18
  export {};
@@ -1,5 +1,10 @@
1
1
  import './index.less';
2
2
  import { ReactNode } from 'react';
3
+ /***
4
+ *
5
+ * 功能:选中,拖拽上传,框选
6
+ *
7
+ */
3
8
  interface SelectBoxProps {
4
9
  checks: string[];
5
10
  getContainer: string;