@kmkf-fe-packages/basic-components 2.10.9-beta.2 → 2.10.10

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.
@@ -6,5 +6,4 @@ 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';
10
9
  export { default as orderSubFormConstants } from './orderSubForm';
@@ -110,34 +110,6 @@ 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
- })[];
141
113
  };
142
114
  export declare const FIELD_COLUMNS_MAP: {
143
115
  PLATFORM_AFTER_SALES_ORDER: any[];
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import { FormInstance } from 'antd';
2
3
  import { ExpressData } from '@kmkf-fe-packages/kmkf-utils';
3
4
  interface JstGoodsProps {
4
5
  value: any[];
@@ -12,6 +13,7 @@ interface JstGoodsProps {
12
13
  onlyShowFieldSelect: boolean;
13
14
  expressDateInstance: InstanceType<typeof ExpressData>;
14
15
  logisticsCompanyFormType?: string;
16
+ form?: FormInstance;
15
17
  }
16
18
  declare const jstGoods: (props: Partial<JstGoodsProps>) => React.JSX.Element;
17
19
  export default jstGoods;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/basic-components",
3
- "version": "2.10.9-beta.2",
3
+ "version": "2.10.10",
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.9-beta.2",
23
+ "@kmkf-fe-packages/kmkf-utils": "2.10.10",
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": "dac375113d0fa85fd02bf62d03604d4ffb1b486e"
69
+ "gitHead": "a914d8cc8eaff540f93b34e02fc854178bb47aaf"
70
70
  }
@@ -1,3 +0,0 @@
1
- import { GetColumnsBaseInfoMapFnType } from './columnsBaseInfoMap';
2
- declare const getColumns: GetColumnsBaseInfoMapFnType;
3
- export default getColumns;
@@ -1,3 +0,0 @@
1
- export declare const dxdUtils: {
2
- getOrderListSingleton: (orderNo: string) => Promise<any>;
3
- };