@kmkf-fe-packages/basic-components 0.25.2 → 0.25.3-beta.0

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 React from 'react';
2
2
  interface BsGoodsProps {
3
3
  value: any[];
4
- type: number;
4
+ type: string;
5
5
  options: any[];
6
6
  disabled: boolean;
7
7
  showHeader: string[];
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ interface GoodModelProps {
3
+ shopId: number | string;
4
+ maxLength: number;
5
+ shopList: any[];
6
+ width?: string | number;
7
+ shopCode?: string;
8
+ companyKey: string;
9
+ onSubmit: (...args: any[]) => any;
10
+ }
11
+ declare const _default: React.ForwardRefExoticComponent<GoodModelProps & React.RefAttributes<unknown>>;
12
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const CommonGoods: (props: any) => React.JSX.Element;
3
+ export default CommonGoods;
@@ -43,6 +43,7 @@ export { default as BsReissue } from './bs/Reissue';
43
43
  export { default as BsReturn } from './bs/Return';
44
44
  export { default as BsSystemOrder } from './bs/SystemOrder';
45
45
  export { default as WlnGoods } from './wln/Goods';
46
+ export { default as CommonGoods } from './common/CommonGoods';
46
47
  export { default as GoodsTable } from './common/GoodsTable';
47
48
  export { default as CommonStatus } from './common/CommonStatus';
48
49
  export { default as CommonSystemOrder } from './common/CommonSystemOrder';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/basic-components",
3
- "version": "0.25.2",
3
+ "version": "0.25.3-beta.0",
4
4
  "description": "> TODO: description",
5
5
  "homepage": "",
6
6
  "license": "ISC",
@@ -20,7 +20,7 @@
20
20
  "watch": "nodemon --ignore dist/ --ignore node_modules/ --watch src/ -C -e ts,tsx,less --debug -x 'yarn async'"
21
21
  },
22
22
  "dependencies": {
23
- "@kmkf-fe-packages/kmkf-utils": "^0.25.2",
23
+ "@kmkf-fe-packages/kmkf-utils": "^0.25.3-beta.0",
24
24
  "ahooks": "^3.7.4",
25
25
  "kmkf-monitor": "^0.8.8",
26
26
  "lodash": "^4.17.21",
@@ -64,5 +64,5 @@
64
64
  "publishConfig": {
65
65
  "access": "public"
66
66
  },
67
- "gitHead": "09935c5679a8aa924d30de2c76ba2d58bae44b42"
67
+ "gitHead": "faddfa7118f1c64694d536f2bc04162916c9ac82"
68
68
  }