@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.
- package/dist/index.esm.js +503 -51
- package/dist/index.js +503 -47
- package/dist/src/apaas/SubForm/index.d.ts +2 -0
- package/dist/src/constants/index.d.ts +1 -0
- package/dist/src/constants/skx.d.ts +3 -0
- package/dist/src/index.d.ts +3 -0
- package/dist/src/jst/Goods/index.d.ts +1 -0
- package/dist/src/skx/Goods/index.d.ts +6 -0
- package/dist/src/skx/IdInputSelect/index.d.ts +13 -0
- package/dist/src/skx/common/index.d.ts +6 -0
- package/package.json +3 -3
package/dist/src/index.d.ts
CHANGED
|
@@ -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,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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/basic-components",
|
|
3
|
-
"version": "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.
|
|
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": "
|
|
68
|
+
"gitHead": "b20787bca696d9a4b8d4df3ea151139d552b7042"
|
|
69
69
|
}
|