@kmkf-fe-packages/basic-components 2.0.0-rc.2 → 2.0.0-rc.4
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.
|
@@ -12,6 +12,7 @@ export interface ApaasUploadProps extends Omit<UploadProps, 'onChange' | 'value'
|
|
|
12
12
|
uniqueKey?: string;
|
|
13
13
|
hostUrl?: string;
|
|
14
14
|
actionUrl?: string;
|
|
15
|
+
platform?: string;
|
|
15
16
|
}
|
|
16
17
|
declare const _default: React.ForwardRefExoticComponent<ApaasUploadProps & React.RefAttributes<any>>;
|
|
17
18
|
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
type P = {
|
|
3
|
+
disabled: boolean | undefined;
|
|
4
|
+
updateHandle: (v: any, index: number, key: string) => void;
|
|
5
|
+
operate?: boolean;
|
|
6
|
+
};
|
|
7
|
+
export declare const getWdtReissueGoodColumns: ({ disabled, updateHandle, operate }: P) => ({
|
|
8
|
+
dataIndex: string;
|
|
9
|
+
title: string;
|
|
10
|
+
width: number;
|
|
11
|
+
render?: undefined;
|
|
12
|
+
align: string;
|
|
13
|
+
ellipsis: boolean;
|
|
14
|
+
} | {
|
|
15
|
+
render: ((val: number) => React.JSX.Element) | ((val: any, record: any, index: number) => React.JSX.Element);
|
|
16
|
+
dataIndex: string;
|
|
17
|
+
title: string;
|
|
18
|
+
width: number;
|
|
19
|
+
align: string;
|
|
20
|
+
ellipsis: boolean;
|
|
21
|
+
})[];
|
|
22
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/basic-components",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.4",
|
|
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.0.0-rc.
|
|
23
|
+
"@kmkf-fe-packages/kmkf-utils": "2.0.0-rc.4",
|
|
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": "d628f4bf4052983d776c37525bb6498a20110a12"
|
|
69
69
|
}
|