@kmkf-fe-packages/services-components 1.22.6 → 1.23.0
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/esm/components/BS/BsGoods/index.js +1 -1
- package/dist/esm/components/BS/BsSystemOrder/index.d.ts +5 -5
- package/dist/esm/components/BS/BsSystemOrder/index.js +37 -15
- package/dist/esm/components/BS/common/BsHeaderChild.d.ts +6 -4
- package/dist/esm/components/BS/common/BsHeaderChild.js +20 -9
- package/dist/esm/components/BS/common/BsHeaderGood.d.ts +1 -0
- package/dist/esm/components/BS/common/BsHeaderGood.js +166 -103
- package/dist/esm/components/BsE3/BsGoods/index.js +1 -1
- package/dist/esm/components/BsE3/BsReissueE3/index.js +1 -1
- package/dist/esm/components/Common/index.d.ts +6 -5
- package/dist/esm/components/Common/index.js +443 -386
- package/dist/esm/components/CommonHeaderGood/index copy.d.ts +27 -0
- package/dist/esm/components/CommonHeaderGood/index copy.js +659 -0
- package/dist/esm/components/CommonHeaderGood/index.d.ts +1 -0
- package/dist/esm/components/CommonHeaderGood/index.js +126 -93
- package/dist/esm/components/CommonMultiStatus/index.d.ts +4 -4
- package/dist/esm/components/CommonMultiStatus/index.js +78 -74
- package/dist/esm/factory.d.ts +1 -1
- package/dist/esm/type.d.ts +7 -2
- package/package.json +4 -4
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
+
import { ShowHeaderObjType } from "../../type";
|
|
2
3
|
declare type getFormItemProps = {
|
|
3
4
|
name: string;
|
|
4
5
|
title: string;
|
|
@@ -11,13 +12,13 @@ export declare const showImage: ({ item, type, index, showHeader, }: {
|
|
|
11
12
|
item: any;
|
|
12
13
|
type: string;
|
|
13
14
|
index: number;
|
|
14
|
-
showHeader: string[];
|
|
15
|
+
showHeader: (string | ShowHeaderObjType)[];
|
|
15
16
|
}) => React.JSX.Element;
|
|
16
17
|
export declare const ShowTotalImage: ({ total, allImage, type, showHeader, }: any) => React.JSX.Element;
|
|
17
18
|
export declare const GoodImage: ({ list, type, showHeader }: any) => React.JSX.Element | null;
|
|
18
|
-
export declare const JstGoodImage: ({ list, type, platformType }: any) => any;
|
|
19
|
-
export declare const BsExpressRender: ({ list, showField, platformType }: any) => any;
|
|
20
|
-
export declare const CommonOrderContent: ({ list, valueKey, failValue, options, isShowPopover }: any) => any;
|
|
19
|
+
export declare const JstGoodImage: ({ list, type, platformType, }: any) => any;
|
|
20
|
+
export declare const BsExpressRender: ({ list, showField, platformType, }: any) => any;
|
|
21
|
+
export declare const CommonOrderContent: ({ list, valueKey, failValue, options, isShowPopover, }: any) => any;
|
|
21
22
|
export declare const BsGoodImage: ({ item, index }: {
|
|
22
23
|
item: any;
|
|
23
24
|
index: number;
|
|
@@ -26,7 +27,7 @@ export declare const BsExchangeList: ({ list, showHeader }: any) => React.JSX.El
|
|
|
26
27
|
export declare const BsGoodPic: (list: string[]) => React.JSX.Element[];
|
|
27
28
|
export declare const BsGoodsTable: ({ list, showHeader, text, type, }: {
|
|
28
29
|
list: any[];
|
|
29
|
-
showHeader: string[];
|
|
30
|
+
showHeader: (string | ShowHeaderObjType)[];
|
|
30
31
|
text?: string | undefined;
|
|
31
32
|
type?: string | undefined;
|
|
32
33
|
}) => React.JSX.Element;
|