@kmkf-fe-packages/basic-components 2.0.19-beta.1 → 2.0.21
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/README.md +1 -1
- package/dist/index.esm.js +11 -529
- package/dist/index.js +9 -528
- package/dist/src/business/LogisticsInterception/index.d.ts +0 -4
- package/dist/src/index.d.ts +0 -1
- package/package.json +4 -4
- package/dist/src/gy/Return/index.d.ts +0 -3
|
@@ -16,8 +16,6 @@ interface LogisticsInterceptionValueType {
|
|
|
16
16
|
status: string;
|
|
17
17
|
reason: string;
|
|
18
18
|
};
|
|
19
|
-
interceptLogisticsUserKCode: string;
|
|
20
|
-
interceptLogisticsUserSecretKey: string;
|
|
21
19
|
}
|
|
22
20
|
interface LogisticsInterceptionProps {
|
|
23
21
|
value: Partial<LogisticsInterceptionValueType>;
|
|
@@ -26,8 +24,6 @@ interface LogisticsInterceptionProps {
|
|
|
26
24
|
disabled: boolean;
|
|
27
25
|
isEditing: boolean;
|
|
28
26
|
onChange: (value: Partial<LogisticsInterceptionValueType>) => void;
|
|
29
|
-
platform: string;
|
|
30
|
-
onJumpPage?: (val: any) => void;
|
|
31
27
|
}
|
|
32
28
|
declare const LogisticsInterception: (props: Partial<LogisticsInterceptionProps>) => React.JSX.Element;
|
|
33
29
|
export default LogisticsInterception;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -63,5 +63,4 @@ export { default as BsE3Reissue } from './e3/Reissue';
|
|
|
63
63
|
export type { WdtGoods } from './bs/component/model/WdtGoodList';
|
|
64
64
|
export { default as GyReissue } from './gy/Reissue';
|
|
65
65
|
export * from './constants/index';
|
|
66
|
-
export { default as GyReturn } from './gy/Return';
|
|
67
66
|
export { default as columnsBaseInfoMap } from './constants/columnsBaseInfoMap';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/basic-components",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.21",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"homepage": "",
|
|
6
6
|
"license": "ISC",
|
|
@@ -11,16 +11,16 @@
|
|
|
11
11
|
"dist"
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
|
+
"sync": "yarn build && yalc push",
|
|
14
15
|
"build": "yarn lint && father-build",
|
|
15
16
|
"lint": "eslint '**/*.{ts,tsx}'",
|
|
16
17
|
"lint:fix": "eslint --fix '**/*.{ts,tsx}'",
|
|
17
18
|
"start": "dumi dev",
|
|
18
|
-
"sync": "yarn build && yalc push",
|
|
19
19
|
"test": "jest",
|
|
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.0.
|
|
23
|
+
"@kmkf-fe-packages/kmkf-utils": "2.0.20",
|
|
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": "6fcba2a199a5208a0151f4b84cf9566693574224"
|
|
69
69
|
}
|