@bit-sun/business-component 2.0.2 → 2.0.3
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/AddSelectBusiness/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +506 -82
- package/dist/index.js +506 -81
- package/package.json +1 -1
- package/src/components/Business/AddSelectBusiness/index.md +37 -0
- package/src/components/Business/AddSelectBusiness/index.tsx +295 -0
- package/src/components/Business/CommodityEntry/index.tsx +5 -2
- package/src/components/Functional/AddSelect/index.less +10 -1
- package/src/components/Functional/AddSelect/index.tsx +102 -15
- package/src/components/Functional/DataImport/index.tsx +0 -1
- package/src/components/Functional/DataValidation/index.tsx +8 -1
- package/src/index.ts +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const AddSkuSelect: (parProps: any) => JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export { default as QueryMutipleInput } from './components/Functional/QueryMutip
|
|
|
4
4
|
export { default as SearchSelect } from './components/Functional/SearchSelect';
|
|
5
5
|
export { default as AddSelect } from './components/Functional/AddSelect';
|
|
6
6
|
export { default as BusinessSearchSelect } from './components/Business/SearchSelect';
|
|
7
|
+
export * from './components/Business/AddSelectBusiness';
|
|
7
8
|
export { default as CommodityEntry } from './components/Business/CommodityEntry';
|
|
8
9
|
export { default as CheckOneUser } from './utils/CheckOneUser';
|
|
9
10
|
export { default as TreeSearchSelect } from './components/Functional/TreeSearchSelect';
|