@kmkf-fe-packages/basic-components 1.6.0-beta.8 → 1.6.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 +295 -672
- package/dist/index.js +291 -669
- package/dist/src/apaas/ApaasInput/index.d.ts +0 -1
- package/dist/src/index.d.ts +0 -1
- package/package.json +3 -3
- package/dist/src/apaas/SubForm/index.d.ts +0 -29
|
@@ -3,7 +3,6 @@ import { InputProps } from 'antd';
|
|
|
3
3
|
export interface ApaasInputProps extends InputProps {
|
|
4
4
|
isNumber?: boolean;
|
|
5
5
|
replaceWarn?: boolean;
|
|
6
|
-
precision?: 'limit' | number | undefined;
|
|
7
6
|
}
|
|
8
7
|
declare function ApaasInput(props: ApaasInputProps): React.JSX.Element;
|
|
9
8
|
export default ApaasInput;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -16,7 +16,6 @@ export { default as ApaasAddress } from './apaas/ApaasAddress';
|
|
|
16
16
|
export { default as ApaasPosting } from './apaas/ApaasPosting';
|
|
17
17
|
export { default as ApaasLogistics } from './apaas/ApaasLogistics';
|
|
18
18
|
export { default as ApaasHoc } from './apaas/hoc/withFormItem';
|
|
19
|
-
export { default as SubForm } from './apaas/SubForm';
|
|
20
19
|
export { default as BuyerNick } from './business/BuyerNick';
|
|
21
20
|
export { default as TradeId } from './business/TradeId';
|
|
22
21
|
export { default as ShopName } from './business/ShopName';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/basic-components",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.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": "1.6.
|
|
23
|
+
"@kmkf-fe-packages/kmkf-utils": "1.6.1",
|
|
24
24
|
"ahooks": "^3.7.4",
|
|
25
25
|
"bignumber.js": "^9.1.2",
|
|
26
26
|
"kmkf-monitor": "^0.8.8",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"publishConfig": {
|
|
66
66
|
"access": "public"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "6012d491910b54eb0ad306be7ddfc340ab2f5fa5"
|
|
69
69
|
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
type subConfigType = {
|
|
3
|
-
name: string;
|
|
4
|
-
key: string;
|
|
5
|
-
workOrderComponentType: string;
|
|
6
|
-
isShow: boolean;
|
|
7
|
-
isEdit: boolean;
|
|
8
|
-
isRequired: boolean;
|
|
9
|
-
isNumber: boolean;
|
|
10
|
-
precision: string | number;
|
|
11
|
-
width: number;
|
|
12
|
-
[key: string]: any;
|
|
13
|
-
};
|
|
14
|
-
type SubFormProps = {
|
|
15
|
-
value: any;
|
|
16
|
-
onChange: (val: any) => void;
|
|
17
|
-
subConfig: {
|
|
18
|
-
flowStatus: Array<string>;
|
|
19
|
-
flowTemplateKey: Array<any>;
|
|
20
|
-
nodeId: string;
|
|
21
|
-
workOrderTemplateId: string;
|
|
22
|
-
correlationList: subConfigType[];
|
|
23
|
-
};
|
|
24
|
-
needFilterShopByPermission: boolean;
|
|
25
|
-
tableHeader: subConfigType[];
|
|
26
|
-
disabled: boolean;
|
|
27
|
-
};
|
|
28
|
-
declare const SubForm: (props: SubFormProps) => React.JSX.Element;
|
|
29
|
-
export default SubForm;
|