@kmkf-fe-packages/basic-components 2.10.13 → 2.10.15
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 +657 -135
- package/dist/src/bs/component/GoodItem/index.d.ts +1 -0
- package/dist/src/constants/constants.d.ts +1 -1
- package/dist/src/constants/dxd.d.ts +3 -0
- package/dist/src/constants/index.d.ts +1 -0
- package/dist/src/constants/systemOrderColumnsMap.d.ts +28 -0
- package/dist/src/dxd/common/index.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const getYesOrNo: (val: boolean | string | number) =>
|
|
1
|
+
export declare const getYesOrNo: (val: boolean | string | number, content?: string[]) => string;
|
|
@@ -6,4 +6,5 @@ export { default as getKmColumns } from './km';
|
|
|
6
6
|
export { default as getJyColumns } from './jy';
|
|
7
7
|
export { default as getSkxColumns } from './skx';
|
|
8
8
|
export { default as getJkyColumns } from './jky';
|
|
9
|
+
export { default as getDxdColumns } from './dxd';
|
|
9
10
|
export { default as orderSubFormConstants } from './orderSubForm';
|
|
@@ -110,6 +110,34 @@ declare const SYSTEM_ORDER_COLUMNS_MAP: {
|
|
|
110
110
|
ellipsis: boolean;
|
|
111
111
|
disabled: boolean;
|
|
112
112
|
})[];
|
|
113
|
+
DXD_SYSTEM_ORDER: ({
|
|
114
|
+
dataIndex: string;
|
|
115
|
+
title: string;
|
|
116
|
+
width: number;
|
|
117
|
+
render?: undefined;
|
|
118
|
+
renderExport?: undefined;
|
|
119
|
+
conditionOptionsSetting?: undefined;
|
|
120
|
+
} | {
|
|
121
|
+
dataIndex: string;
|
|
122
|
+
title: string;
|
|
123
|
+
width: number;
|
|
124
|
+
render: (val: boolean) => "否" | "是";
|
|
125
|
+
renderExport: (val: boolean) => "否" | "是";
|
|
126
|
+
conditionOptionsSetting: {
|
|
127
|
+
dataType: string;
|
|
128
|
+
getOptions: () => {
|
|
129
|
+
value: boolean;
|
|
130
|
+
label: string;
|
|
131
|
+
}[];
|
|
132
|
+
};
|
|
133
|
+
} | {
|
|
134
|
+
dataIndex: string;
|
|
135
|
+
title: string;
|
|
136
|
+
width: number;
|
|
137
|
+
render: (val: boolean) => "否" | "是";
|
|
138
|
+
renderExport: (val: boolean) => "否" | "是";
|
|
139
|
+
conditionOptionsSetting?: undefined;
|
|
140
|
+
})[];
|
|
113
141
|
};
|
|
114
142
|
export declare const FIELD_COLUMNS_MAP: {
|
|
115
143
|
PLATFORM_AFTER_SALES_ORDER: any[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/basic-components",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.15",
|
|
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.10.
|
|
23
|
+
"@kmkf-fe-packages/kmkf-utils": "2.10.15",
|
|
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": "5494e6b503ad00c913466a68eb58b77081f1fff6"
|
|
70
70
|
}
|