@kmkf-fe-packages/basic-components 2.2.13-beta.1 → 2.2.13-beta.11
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 +682 -653
- package/dist/index.js +682 -653
- package/dist/src/bs/component/model/Columns/Erp/jy.d.ts +7 -1
- package/dist/src/bs/component/model/JyGoodsModal/GoodsList.d.ts +14 -14
- package/dist/src/bs/component/model/WorkOrderList/SearchFormForWorkOrder/FilterSelectOption/Rate/index.d.ts +2 -1
- package/dist/src/bs/component/model/WorkOrderList/SearchFormForWorkOrder/SearchHeader/index.d.ts +2 -1
- package/package.json +3 -3
|
@@ -9,7 +9,7 @@ declare const _default: ({
|
|
|
9
9
|
dataIndex: string;
|
|
10
10
|
title: string;
|
|
11
11
|
width: number;
|
|
12
|
-
render: (picUrl: string) => React.JSX.Element;
|
|
12
|
+
render: (picUrl: string) => React.JSX.Element | null;
|
|
13
13
|
ellipsis?: undefined;
|
|
14
14
|
} | {
|
|
15
15
|
dataIndex: string;
|
|
@@ -17,5 +17,11 @@ declare const _default: ({
|
|
|
17
17
|
ellipsis: boolean;
|
|
18
18
|
width: number;
|
|
19
19
|
render: (val: boolean) => React.JSX.Element;
|
|
20
|
+
} | {
|
|
21
|
+
dataIndex: string;
|
|
22
|
+
title: string;
|
|
23
|
+
ellipsis: boolean;
|
|
24
|
+
width: number;
|
|
25
|
+
render: (val: string) => React.JSX.Element;
|
|
20
26
|
})[];
|
|
21
27
|
export default _default;
|
|
@@ -4,24 +4,24 @@ export declare namespace JyGoods {
|
|
|
4
4
|
companyKey: string;
|
|
5
5
|
id: number;
|
|
6
6
|
platform: 'JY_ERP';
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
goodNo: string;
|
|
8
|
+
goodName: string;
|
|
9
9
|
imageUrl: string;
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
goodShortName: string;
|
|
11
|
+
categoryName: string;
|
|
12
12
|
productType: string;
|
|
13
13
|
brandName: string;
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
14
|
+
specName: string;
|
|
15
|
+
specNo: string;
|
|
16
|
+
specBarcode: string;
|
|
17
|
+
specImgUrl: string;
|
|
18
|
+
colorName: string;
|
|
19
|
+
sizeName: string;
|
|
20
|
+
marketPrice: string;
|
|
21
|
+
retailPrice: string;
|
|
22
22
|
costPrice: string;
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
isGift: boolean;
|
|
24
|
+
skuType: string;
|
|
25
25
|
}
|
|
26
26
|
interface SelectDrawerRefObject {
|
|
27
27
|
getSelectGoodList: () => JyGoods.GoodsInfo[];
|
|
@@ -4,6 +4,7 @@ type RateProps = {
|
|
|
4
4
|
onChange: (v: (number | null)[]) => void;
|
|
5
5
|
placeholder: string[];
|
|
6
6
|
prefix: string;
|
|
7
|
+
onSubmit: () => void;
|
|
7
8
|
};
|
|
8
|
-
declare const Rate: ({ value, onChange, placeholder, prefix }: RateProps) => React.JSX.Element;
|
|
9
|
+
declare const Rate: ({ value, onChange, placeholder, prefix, onSubmit }: RateProps) => React.JSX.Element;
|
|
9
10
|
export default Rate;
|
package/dist/src/bs/component/model/WorkOrderList/SearchFormForWorkOrder/SearchHeader/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ type SearchHeaderPropsType = {
|
|
|
12
12
|
value: string;
|
|
13
13
|
}[];
|
|
14
14
|
ShopList: React.JSX.Element;
|
|
15
|
+
onSubmit: () => void;
|
|
15
16
|
};
|
|
16
|
-
declare const SearchHeader: ({ allFields, children, status, layout, isShowTime, timeOptions, ShopList, }: PropsWithChildren<SearchHeaderPropsType>) => React.JSX.Element;
|
|
17
|
+
declare const SearchHeader: ({ allFields, children, status, layout, isShowTime, timeOptions, ShopList, onSubmit, }: PropsWithChildren<SearchHeaderPropsType>) => React.JSX.Element;
|
|
17
18
|
export default SearchHeader;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/basic-components",
|
|
3
|
-
"version": "2.2.13-beta.
|
|
3
|
+
"version": "2.2.13-beta.11",
|
|
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.13-beta.
|
|
23
|
+
"@kmkf-fe-packages/kmkf-utils": "2.2.13-beta.11",
|
|
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": "08f751ed4f907685178ea27d4fba6111a4b42f48"
|
|
70
70
|
}
|