@kmkf-fe-packages/basic-components 2.0.79-beta.31 → 2.0.79-beta.32
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 +7 -6
- package/dist/index.js +6 -5
- package/package.json +3 -3
package/dist/index.esm.js
CHANGED
|
@@ -3,7 +3,7 @@ import { Cascader, DatePicker, InputNumber, Input, Select, Upload, Image, messag
|
|
|
3
3
|
import { EyeOutlined, DeleteOutlined, CloseOutlined, CopyOutlined, CloseCircleOutlined, CaretUpOutlined, UpOutlined, DownOutlined, MinusCircleFilled, VideoCameraTwoTone } from '@ant-design/icons';
|
|
4
4
|
import request, { extend as extend$1 } from 'umi-request';
|
|
5
5
|
import { CopyToClipboard } from 'react-copy-to-clipboard';
|
|
6
|
-
import { AddressData, BsAddressData, WdtAddressData, GyAddressData, request as request$1, ExpressData, uuid, servers, columnsGoodsList, LogisticsAddressData, SendDataCenter, hasAddNullComponent,
|
|
6
|
+
import { AddressData, BsAddressData, WdtAddressData, GyAddressData, request as request$1, ExpressData, uuid, servers, columnsGoodsList, LogisticsAddressData, SendDataCenter, hasAddNullComponent, SUBMIT_TIME_ID, UPGRADE_TIME_ID, FINAL_TIME_ID, CUSTOM_TIME_ID, useStatus, finalFormData, transformList, dataSourceTrans, DATA_SPLIT_COMPONENT_FIELDS_MAP, BS_E3_BOOLEAN_STATUS_MAP, isNull, filterWdtOrders, WDT_ORDER_TYPE_MAP, tradeStatusMap, filterBsE3Orders, filterGyOrders, GY_DELIVERY_STATE_MAPPING, filterJstOrders, filterKmOrders, getIsPlatformCodesIncludeOrderNos, BS_SYSTEM_ORDER_CONFIG, KM_SYSTEM_ORDER_CONFIG, WLN_SYSTEM_ORDER_CONFIG, WDT_SYSTEM_ORDER_CONFIG, BS_E3_SYSTEM_ORDER_CONFIG, GY_SYSTEM_ORDER_CONFIG, JST_SYSTEM_ORDER_CONFIG, updateWlnGoodsHandle, updateWdtGoodsHandle, updateBsE3GoodsHandle, updateGyGoodsHandle, updateJstGoodsHandle, updateKmGoodsHandle, jstMergeIdenticalGoods, msgTypeCh, pushGyLog } from '@kmkf-fe-packages/kmkf-utils';
|
|
7
7
|
import { debounce, isNaN as isNaN$1, isNumber as isNumber$1, uniqBy, cloneDeep, difference, differenceWith, isBoolean, isEqual, takeRight, reject as reject$1, isEmpty, intersection } from 'lodash';
|
|
8
8
|
import { useUpdateEffect, useDebounceEffect, useAntdTable } from 'ahooks';
|
|
9
9
|
import zhCN from 'antd/lib/locale/zh_CN';
|
|
@@ -14707,15 +14707,16 @@ var RangePicker = DatePicker.RangePicker;
|
|
|
14707
14707
|
var _SelectInput = function SelectInput(props) {
|
|
14708
14708
|
var _props$value = props.value,
|
|
14709
14709
|
value = _props$value === void 0 ? {
|
|
14710
|
-
type: '
|
|
14710
|
+
type: 'in',
|
|
14711
14711
|
keywords: ''
|
|
14712
14712
|
} : _props$value,
|
|
14713
|
-
onChange = props.onChange
|
|
14713
|
+
onChange = props.onChange,
|
|
14714
|
+
filterOptions = props.filterOptions;
|
|
14714
14715
|
var handleSelectChange = function handleSelectChange(val) {
|
|
14715
14716
|
var newValue = _objectSpread2(_objectSpread2({}, value), {}, {
|
|
14716
14717
|
type: val
|
|
14717
14718
|
});
|
|
14718
|
-
if (
|
|
14719
|
+
if (!['in', 'anylike'].includes(val)) {
|
|
14719
14720
|
newValue.keywords = '';
|
|
14720
14721
|
}
|
|
14721
14722
|
onChange(newValue);
|
|
@@ -14731,10 +14732,10 @@ var _SelectInput = function SelectInput(props) {
|
|
|
14731
14732
|
minWidth: '120px',
|
|
14732
14733
|
width: '40%'
|
|
14733
14734
|
},
|
|
14734
|
-
options:
|
|
14735
|
+
options: filterOptions,
|
|
14735
14736
|
value: value.type,
|
|
14736
14737
|
onChange: handleSelectChange
|
|
14737
|
-
}), value.type
|
|
14738
|
+
}), ['in', 'anylike'].includes(value.type) ? /*#__PURE__*/React.createElement(TrimInput, {
|
|
14738
14739
|
style: {
|
|
14739
14740
|
width: '60%'
|
|
14740
14741
|
},
|
package/dist/index.js
CHANGED
|
@@ -14720,15 +14720,16 @@ var RangePicker = antd.DatePicker.RangePicker;
|
|
|
14720
14720
|
var _SelectInput = function SelectInput(props) {
|
|
14721
14721
|
var _props$value = props.value,
|
|
14722
14722
|
value = _props$value === void 0 ? {
|
|
14723
|
-
type: '
|
|
14723
|
+
type: 'in',
|
|
14724
14724
|
keywords: ''
|
|
14725
14725
|
} : _props$value,
|
|
14726
|
-
onChange = props.onChange
|
|
14726
|
+
onChange = props.onChange,
|
|
14727
|
+
filterOptions = props.filterOptions;
|
|
14727
14728
|
var handleSelectChange = function handleSelectChange(val) {
|
|
14728
14729
|
var newValue = _objectSpread2(_objectSpread2({}, value), {}, {
|
|
14729
14730
|
type: val
|
|
14730
14731
|
});
|
|
14731
|
-
if (
|
|
14732
|
+
if (!['in', 'anylike'].includes(val)) {
|
|
14732
14733
|
newValue.keywords = '';
|
|
14733
14734
|
}
|
|
14734
14735
|
onChange(newValue);
|
|
@@ -14744,10 +14745,10 @@ var _SelectInput = function SelectInput(props) {
|
|
|
14744
14745
|
minWidth: '120px',
|
|
14745
14746
|
width: '40%'
|
|
14746
14747
|
},
|
|
14747
|
-
options:
|
|
14748
|
+
options: filterOptions,
|
|
14748
14749
|
value: value.type,
|
|
14749
14750
|
onChange: handleSelectChange
|
|
14750
|
-
}), value.type
|
|
14751
|
+
}), ['in', 'anylike'].includes(value.type) ? /*#__PURE__*/React__default['default'].createElement(TrimInput, {
|
|
14751
14752
|
style: {
|
|
14752
14753
|
width: '60%'
|
|
14753
14754
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/basic-components",
|
|
3
|
-
"version": "2.0.79-beta.
|
|
3
|
+
"version": "2.0.79-beta.32",
|
|
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.79-beta.
|
|
23
|
+
"@kmkf-fe-packages/kmkf-utils": "2.0.79-beta.32",
|
|
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": "51eaa2a2654100916f47f1dc2f32c3844cf9fb7a"
|
|
70
70
|
}
|