@kmkf-fe-packages/basic-components 2.0.67 → 2.0.69
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 +254 -103
- package/dist/index.js +252 -101
- package/dist/src/common/Goods/RichItem.d.ts +3 -0
- package/dist/src/common/Goods/goodModel.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { FormInstance } from 'antd';
|
|
2
3
|
import './richItem.less';
|
|
3
4
|
type ShowHeaderObjType = {
|
|
4
5
|
title: string;
|
|
@@ -26,6 +27,8 @@ export interface RichGoodProps {
|
|
|
26
27
|
disabled?: boolean;
|
|
27
28
|
changeSku?: boolean;
|
|
28
29
|
width?: string | number;
|
|
30
|
+
form?: FormInstance;
|
|
31
|
+
isPriorityDisplayOfOrderNo?: boolean;
|
|
29
32
|
}
|
|
30
33
|
declare const GoodItem: (props: Partial<RichGoodProps>) => React.JSX.Element;
|
|
31
34
|
export default GoodItem;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { FormInstance } from 'antd';
|
|
2
3
|
import './index.less';
|
|
3
4
|
interface GoodModelProps {
|
|
4
5
|
visible: boolean;
|
|
@@ -10,6 +11,8 @@ interface GoodModelProps {
|
|
|
10
11
|
changeSku?: boolean;
|
|
11
12
|
width?: string | number;
|
|
12
13
|
numIidType?: 'string' | 'number';
|
|
14
|
+
form?: FormInstance;
|
|
15
|
+
isPriorityDisplayOfOrderNo?: boolean;
|
|
13
16
|
onSubmit: (...args: any[]) => any;
|
|
14
17
|
onCancel: (...args: any[]) => any;
|
|
15
18
|
}
|
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.69",
|
|
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.
|
|
23
|
+
"@kmkf-fe-packages/kmkf-utils": "2.0.69",
|
|
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": "849c6b27a93834b71ca0c08e426b60e62a9085ef"
|
|
69
69
|
}
|