@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.
- package/dist/components/Business/CommodityEntry/index.d.ts +2 -0
- package/dist/components/{SearchSelect/business → Business/SearchSelect}/BusinessUtils.d.ts +1 -0
- package/dist/components/Business/SearchSelect/common.d.ts +13 -0
- package/dist/components/{SearchSelect/business/BusinessSearchSelect.d.ts → Business/SearchSelect/index.d.ts} +0 -0
- package/dist/components/Business/SearchSelect/utils.d.ts +4 -0
- package/dist/components/{DataValidation → Functional/DataValidation}/index.d.ts +0 -0
- package/dist/components/{QueryMutipleInput → Functional/QueryMutipleInput}/index.d.ts +0 -0
- package/dist/components/{SearchSelect → Functional/SearchSelect}/index.d.ts +0 -0
- package/dist/index.d.ts +5 -4
- package/dist/index.esm.js +949 -136
- package/dist/index.js +947 -133
- package/package.json +1 -1
- package/src/components/Business/CommodityEntry/index.md +69 -0
- package/src/components/Business/CommodityEntry/index.tsx +75 -0
- package/src/components/Business/SearchSelect/BusinessUtils.ts +888 -0
- package/src/components/Business/SearchSelect/common.ts +34 -0
- package/src/components/Business/SearchSelect/index.md +906 -0
- package/src/components/{SearchSelect/business/BusinessSearchSelect.tsx → Business/SearchSelect/index.tsx} +3 -2
- package/src/components/Business/SearchSelect/utils.ts +74 -0
- package/src/components/{DataValidation → Functional/DataValidation}/index.less +0 -0
- package/src/components/{DataValidation → Functional/DataValidation}/index.md +3 -3
- package/src/components/{DataValidation → Functional/DataValidation}/index.tsx +1 -1
- package/src/components/{QueryMutipleInput → Functional/QueryMutipleInput}/index.less +0 -0
- package/src/components/{QueryMutipleInput → Functional/QueryMutipleInput}/index.md +3 -3
- package/src/components/{QueryMutipleInput → Functional/QueryMutipleInput}/index.tsx +0 -0
- package/src/components/{SearchSelect → Functional/SearchSelect}/index.less +0 -0
- package/src/components/{SearchSelect → Functional/SearchSelect}/index.md +14 -11
- package/src/components/{SearchSelect → Functional/SearchSelect}/index.tsx +225 -105
- package/src/index.ts +5 -4
- package/src/components/SearchSelect/business/BusinessUtils.ts +0 -464
- package/src/components/SearchSelect/business/index.md +0 -181
|
@@ -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 };
|
|
File without changes
|
|
@@ -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 };
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
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';
|