@bit-sun/business-component 1.1.22 → 1.1.25

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.
Files changed (31) hide show
  1. package/dist/components/Business/CommodityEntry/index.d.ts +2 -0
  2. package/dist/components/{SearchSelect/business → Business/SearchSelect}/BusinessUtils.d.ts +1 -0
  3. package/dist/components/Business/SearchSelect/common.d.ts +13 -0
  4. package/dist/components/{SearchSelect/business/BusinessSearchSelect.d.ts → Business/SearchSelect/index.d.ts} +0 -0
  5. package/dist/components/Business/SearchSelect/utils.d.ts +4 -0
  6. package/dist/components/{DataValidation → Functional/DataValidation}/index.d.ts +0 -0
  7. package/dist/components/{QueryMutipleInput → Functional/QueryMutipleInput}/index.d.ts +0 -0
  8. package/dist/components/{SearchSelect → Functional/SearchSelect}/index.d.ts +0 -0
  9. package/dist/index.d.ts +5 -4
  10. package/dist/index.esm.js +949 -136
  11. package/dist/index.js +947 -133
  12. package/package.json +1 -1
  13. package/src/components/Business/CommodityEntry/index.md +69 -0
  14. package/src/components/Business/CommodityEntry/index.tsx +75 -0
  15. package/src/components/Business/SearchSelect/BusinessUtils.ts +888 -0
  16. package/src/components/Business/SearchSelect/common.ts +34 -0
  17. package/src/components/Business/SearchSelect/index.md +906 -0
  18. package/src/components/{SearchSelect/business/BusinessSearchSelect.tsx → Business/SearchSelect/index.tsx} +3 -2
  19. package/src/components/Business/SearchSelect/utils.ts +74 -0
  20. package/src/components/{DataValidation → Functional/DataValidation}/index.less +0 -0
  21. package/src/components/{DataValidation → Functional/DataValidation}/index.md +3 -3
  22. package/src/components/{DataValidation → Functional/DataValidation}/index.tsx +1 -1
  23. package/src/components/{QueryMutipleInput → Functional/QueryMutipleInput}/index.less +0 -0
  24. package/src/components/{QueryMutipleInput → Functional/QueryMutipleInput}/index.md +3 -3
  25. package/src/components/{QueryMutipleInput → Functional/QueryMutipleInput}/index.tsx +0 -0
  26. package/src/components/{SearchSelect → Functional/SearchSelect}/index.less +0 -0
  27. package/src/components/{SearchSelect → Functional/SearchSelect}/index.md +14 -11
  28. package/src/components/{SearchSelect → Functional/SearchSelect}/index.tsx +225 -105
  29. package/src/index.ts +5 -4
  30. package/src/components/SearchSelect/business/BusinessUtils.ts +0 -464
  31. package/src/components/SearchSelect/business/index.md +0 -181
@@ -0,0 +1,2 @@
1
+ declare const CommodityEntry: (props: any) => JSX.Element;
2
+ export default CommodityEntry;
@@ -19,4 +19,5 @@ export declare function commonFun(type?: string, prefixUrl: any): {
19
19
  sorter: string;
20
20
  };
21
21
  };
22
+ needModalTable: boolean;
22
23
  };
@@ -0,0 +1,13 @@
1
+ declare const shopFileType: {
2
+ text: string;
3
+ value: string;
4
+ }[];
5
+ declare const arrivalPaySupportList: {
6
+ text: string;
7
+ value: number;
8
+ }[];
9
+ declare const sharingType: {
10
+ text: string;
11
+ value: string;
12
+ }[];
13
+ export { shopFileType, arrivalPaySupportList, sharingType };
@@ -0,0 +1,4 @@
1
+ declare const getDictionarySource: (dicCode: string, needConvertInterger?: boolean) => {};
2
+ declare const getDictionaryTextByValue: (dicCode: string, value: string | number) => any;
3
+ declare const loadSelectSource: (url: string, params?: any) => Promise<unknown>;
4
+ export { getDictionarySource, getDictionaryTextByValue, loadSelectSource };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
- export { default as DataValidation } from './components/DataValidation';
2
- export { default as QueryMutipleInput } from './components/QueryMutipleInput';
1
+ export { default as DataValidation } from './components/Functional/DataValidation';
2
+ export { default as QueryMutipleInput } from './components/Functional/QueryMutipleInput';
3
+ export { default as SearchSelect } from './components/Functional/SearchSelect';
4
+ export { default as BusinessSearchSelect } from './components/Business/SearchSelect';
5
+ export { default as CommodityEntry } from './components/Business/CommodityEntry';
3
6
  export { default as CheckOneUser } from './utils/CheckOneUser';
4
- export { default as SearchSelect } from './components/SearchSelect';
5
- export { default as BusinessSearchSelect } from './components/SearchSelect/business/BusinessSearchSelect';