@bit-sun/business-component 1.1.3 → 1.1.7

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.
@@ -0,0 +1,2 @@
1
+ declare const BusinessSearchSelect: (props: any) => JSX.Element;
2
+ export default BusinessSearchSelect;
@@ -0,0 +1,22 @@
1
+ export declare function commonFun(type?: string, prefixURL: any): {
2
+ modalTableProps: {
3
+ modalTableTitle: string;
4
+ tableSearchForm: any[];
5
+ tableColumns: ({
6
+ title: string;
7
+ dataIndex: string;
8
+ render?: undefined;
9
+ } | {
10
+ title: string;
11
+ dataIndex: string;
12
+ render: (text: number) => any;
13
+ })[];
14
+ };
15
+ requestConfig: {
16
+ url: string;
17
+ filter: string;
18
+ otherParams: {
19
+ sorter: string;
20
+ };
21
+ };
22
+ };
@@ -1,9 +1,3 @@
1
1
  import './index.less';
2
- declare const SearchSelect: ({ onValueChange, selectProps, selectDataUrl, initValue, modalTableProps }: {
3
- onValueChange: any;
4
- selectProps?: {} | undefined;
5
- selectDataUrl: any;
6
- initValue: any;
7
- modalTableProps?: {} | undefined;
8
- }) => JSX.Element;
2
+ declare const SearchSelect: (props: any) => JSX.Element;
9
3
  export default SearchSelect;
package/dist/index.d.ts CHANGED
@@ -2,3 +2,4 @@ export { default as DataValidation } from './components/DataValidation';
2
2
  export { default as QueryMutipleInput } from './components/QueryMutipleInput';
3
3
  export { default as CheckOneUser } from './utils/CheckOneUser';
4
4
  export { default as SearchSelect } from './components/SearchSelect';
5
+ export { default as BusinessSearchSelect } from './components/SearchSelect/business/BusinessSearchSelect';