@kmkf-fe-packages/basic-components 2.2.2 → 2.2.3-rc.1

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.
@@ -25,6 +25,8 @@ type SubFormProps = {
25
25
  tableHeader: subConfigType[];
26
26
  disabled: boolean;
27
27
  platform: string;
28
+ manual?: boolean;
29
+ maxCount?: number;
28
30
  };
29
31
  declare const SubForm: (props: SubFormProps) => React.JSX.Element;
30
32
  export default SubForm;
@@ -3,3 +3,4 @@ export { default as getWlnColumns } from './wln';
3
3
  export { default as getGyColumns } from './gy';
4
4
  export { default as getWdtColumns } from './wdt';
5
5
  export { default as getKmColumns } from './km';
6
+ export { default as getSkxColumns } from './skx';
@@ -0,0 +1,3 @@
1
+ import { GetColumnsBaseInfoMapFnType } from './columnsBaseInfoMap';
2
+ declare const getColumns: GetColumnsBaseInfoMapFnType;
3
+ export default getColumns;
@@ -68,5 +68,8 @@ export { default as GyReissue } from './gy/Reissue';
68
68
  export * from './constants/index';
69
69
  export { default as GyReturn } from './gy/Return';
70
70
  export { default as KmVideo } from './km/KmVideo';
71
+ export { default as SkxIdInputSelect } from './skx/IdInputSelect';
72
+ export { default as SkxGoods } from './skx/Goods';
73
+ export { skxUtils } from './skx/common';
71
74
  export { default as columnsBaseInfoMap, erpColumnsMap, erpFormValidator, } from './constants/columnsBaseInfoMap';
72
75
  export { default as erpModalColumnsMap } from './bs/component/model/Columns';
@@ -10,6 +10,7 @@ interface JstGoodsProps {
10
10
  platformType?: string;
11
11
  onlyShowFieldSelect: boolean;
12
12
  expressDateInstance: InstanceType<typeof ExpressData>;
13
+ logisticsCompanyFormType?: string;
13
14
  }
14
15
  declare const jstGoods: (props: Partial<JstGoodsProps>) => React.JSX.Element;
15
16
  export default jstGoods;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import type { FormInstance } from 'antd';
3
+ declare const SkxGoods: (props: any & {
4
+ form: FormInstance;
5
+ }) => React.JSX.Element;
6
+ export default SkxGoods;
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ import { FormInstance } from 'antd';
3
+ interface IdInputSelectProps {
4
+ value?: string;
5
+ onChange?: (value: any) => void;
6
+ onBlur?: (value: any) => void;
7
+ disabled?: boolean;
8
+ form: FormInstance;
9
+ templateDetail: any;
10
+ type: string;
11
+ }
12
+ declare const IdInputSelect: (props: IdInputSelectProps) => React.JSX.Element;
13
+ export default IdInputSelect;
@@ -0,0 +1,6 @@
1
+ export declare const skxUtils: {
2
+ getAllGoods: (params: {
3
+ tid?: string;
4
+ onBillNo?: string;
5
+ }, setLoading?: ((loading: boolean) => void) | undefined) => Promise<any>;
6
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/basic-components",
3
- "version": "2.2.2",
3
+ "version": "2.2.3-rc.1",
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": "2.2.2",
23
+ "@kmkf-fe-packages/kmkf-utils": "2.2.3-rc.1",
24
24
  "ahooks": "^3.7.4",
25
25
  "bignumber.js": "^9.1.2",
26
26
  "kmkf-monitor": "^0.8.9",
@@ -65,5 +65,5 @@
65
65
  "publishConfig": {
66
66
  "access": "public"
67
67
  },
68
- "gitHead": "e64669cc6f32f9d152afbb1af40c8d10da055f04"
68
+ "gitHead": "b20787bca696d9a4b8d4df3ea151139d552b7042"
69
69
  }