@kmkf-fe-packages/basic-components 2.2.5-beta.25 → 2.2.5-beta.28
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 +1328 -51
- package/dist/index.js +1330 -51
- package/dist/src/apaas/SubForm/transformWorkOrderData.d.ts +15 -0
- package/package.json +3 -3
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const updateWorkTypeKeys: any;
|
|
2
|
+
export declare const systemOrderMap: any;
|
|
3
|
+
export declare const processSingleFieldTypeMapping: {
|
|
4
|
+
SKX_OUTBOUND_NOTICE_NO: string;
|
|
5
|
+
SKX_SHOP_NAME: string;
|
|
6
|
+
SKX_WAREHOUSE: string;
|
|
7
|
+
SKX_ORDER_TYPE: string;
|
|
8
|
+
SKX_ORDER_STATUS: string;
|
|
9
|
+
SKX_CREATE_TIME: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const jsonParseSecurity: (value: string, securityValue: any) => any;
|
|
12
|
+
export declare const transTextToNumber: (value: string | number) => string | number;
|
|
13
|
+
export declare const formatPictures: (pictures: any) => any;
|
|
14
|
+
declare const transformWorkOrderData: (templateColumns: any[], type?: string) => (item: any) => any;
|
|
15
|
+
export default transformWorkOrderData;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/basic-components",
|
|
3
|
-
"version": "2.2.5-beta.
|
|
3
|
+
"version": "2.2.5-beta.28",
|
|
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.5-beta.
|
|
23
|
+
"@kmkf-fe-packages/kmkf-utils": "2.2.5-beta.28",
|
|
24
24
|
"ahooks": "^3.7.4",
|
|
25
25
|
"ali-react-table": "2.6.1",
|
|
26
26
|
"bignumber.js": "^9.1.2",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"publishConfig": {
|
|
67
67
|
"access": "public"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "18e1bf90a8c2832464eb06a4a44f2ec65af97050"
|
|
70
70
|
}
|